تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
4536 أدوات العرض

Hello,

like you can see I have a record with id osc_product_category_form. Now I want include this record(form) in the record with the id asdfasdf.

Is it possible to make something like this:

<record id="osc_product_category_form" model="ir.ui.view">
    <field name="name">osc.product.category.form</field>
    <field name="model">osc.product.category</field>
    <field name="arch" type="xml">

        <form string="OsCommerce Product Categories" version="7.0">
            <notebook>
                <page string="osCommerce">
                    <group>
                        <group>
                            <field name="osc_category_id"/>
                            <field name="osc_categories_image" widget="image"/>
                            <field name="osc_categories_name"/>
                            ...
                        </group>
                    </group>
                </page>
            </notebook>
        </form>

    </field>
</record>

<record id="asdfasdf" model="ir.ui.view">
    <field name="name">asdf.product.category.form</field>
    <field name="model">product.category</field>
    <field name="inherit_id" ref="product.product_category_form_view"/> <-- inherit and add the record from above
    <field name="arch" type="xml">

        <xpath expr="//form/sheet" position="inside">
            <field name="osc_product_category_form"/> <-- the record above
        </xpath>

    </field>
</record>

Thank you very much.

الصورة الرمزية
إهمال

If you dealing with form inheritance and facing problem then. if have to correct xpath and position , position have different options like, inside, after, before, replace.

expr=notebook/page/group/group/field[name='fieldname'] to set correct path.

Your question title and problem description more clear, so please update your question with proper title with well description.

الكاتب

i have updated my question. the xpath expr is ok. if i include other fields from product.category they are shown. but i want include the fields from the record with id osc_product_category_form

أفضل إجابة

Its not possible to add a record inside another record. I think you are trying to show a kanban view same as the contacts tab in partner form view.

If your are using openerp server v7, then go to addons/base/res/res_partner_view.xml. check the record "view_partner_form"

الصورة الرمزية
إهمال
الكاتب

no, i don't want a kanban view. i need a form view with fields to be filled out. :-(

الكاتب

maybe there is another approach to realise something like this?

المنشورات ذات الصلة الردود أدوات العرض النشاط
1
نوفمبر 24
1728
6
أبريل 22
43018
1
سبتمبر 21
9534
1
يناير 24
17106
1
مايو 19
5115