Skip to Content
Menu
This question has been flagged

Hello all,

I don't understand something about view inheritance. I need (again and again) your help.

When we click on Sales->Products->Products (form view) :

This view product.product_template_form_view is called and declared with model product.template. I understand this.

<record id="product.product_template_form_view" model="ir.ui.view">

<field name="name">product.template.common.form</field>

<field name="model">product.template</field>

<field name="mode">primary</field>

<field name="arch" type="xml">

<form string="Product">    

                [...]

</form>

            </field>
</record>


When we click on Sales->Sales->Products variants (form view) :

This view product.product_normal_form_view is called and declared with model product.product. It inherits the above view

product.product_template_form_view. I don't understand this! These two views don't have the same model...


<record id="product.product_normal_form_view" model="ir.ui.view">

<field name="name">product.product.form</field>

<field name="model">product.product</field>

<field name="mode">primary</field>

<field eval="7" name="priority"/>

<field name="inherit_id" ref="product.product_template_form_view"/>

<field name="arch" type="xml">

<form position="attributes">

<attribute name="string">Product Variant ZZZ</attribute>

</form>

                [...]

</field>

</record>



I would really need example, documentation about this concept.

How can a view inherit an other view from an other model?

I thought that a view that inherits an other view must have the SAME MODEL... No???


Update #1 (january 4th)

Old post : https://bugs.launchpad.net/openobject-server/+bug/702337


Avatar
Discard
Best Answer

I searched the id product_template_form_view in OpenERP 7 and found it being used only with product.template, so there is no problem there.


In Odoo 8 all places referred to product.template, except in the 'product' module. I can guess that there is no problem in this change if we took in consideration that the 'product.product' inherits from 'product.template'


Avatar
Discard

Pascal, after I posted my reply I noticed the old post link you added. This link suggests the feature you are discussing in this post. I think they changed this in Odoo 8 to be allowed.

Author

It would be nice to have some examples of those changes in Odoo 8 on the web... I would want to read it somewhere... Not you? I don't find any example of this concept. No proof.

Author

oh! I forgot... Thanks for your answer mister.

<field name="mode">primary</field> use?

Related Posts Replies Views Activity
1
May 23
1149
3
Mar 21
6307
2
May 15
5141
3
Mar 15
8456
2
Mar 23
1318