This question has been flagged
1 Reply
3411 Views

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.

Avatar
Discard

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.

Author

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

Best Answer

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"

Avatar
Discard
Author

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

Author

maybe there is another approach to realise something like this?