コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
1730 ビュー

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.

アバター
破棄
関連投稿 返信 ビュー 活動
1
12月 22
10380
4
2月 25
2312
1
8月 24
1962
2
11月 24
3137
3
10月 23
14674