Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
1718 Переглядів

I want to hide some field from product.template tree view using inheritance but my code is not working. Nothing happened on the UI.

<record id="view_product_template_tree_view_inherit" model="ir.ui.view">
<field name="name">product.template.tree.inherit</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_tree_view"/>
<field name="arch" type="xml">
<field name="sequence" position="attributes">
<atttribute name="invisible">1</atttribute>
</field>
<field name="standard_price" position="attributes">
<atttribute name="invisible">1</atttribute>
</field>
<field name="categ_id" position="attributes">
<atttribute name="invisible">1</atttribute>
</field>
<field name="type" position="attributes">
<atttribute name="invisible">1</atttribute>
</field>
<field name="uom_id" position="attributes">
<atttribute name="invisible">1</atttribute>
</field>
<field name="list_price" position="after">
<field name="x_location_id"/>
<field name="x_posx"/>
<field name="x_posy"/>
<field name="x_posz"/>
</field>
</field>
</record>
Аватар
Відмінити
Найкраща відповідь

Please check for typos first ("aTTTributes"). You should see that in the logs.

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
1
груд. 22
10372
4
лют. 25
2302
1
серп. 24
1959
2
лист. 24
3132
3
жовт. 23
14669