在父视图中找不到元素(ODOO 12)
Element not found in parent view (ODOO 12)
我正在开发 odoo 12 (python 3.6),我试图从 product.template 继承并隐藏条码字段,但我遇到了这个错误:
element'<xpath expr="//field[@name='barcode']">' not found in parent view
这是我的gesimmo_views.xml
<odoo>
<record model="ir.ui.view" id="view_form_gesimmo">
<field name="name">Product</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_form_view"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='standard_price']" position="after">
<group>
<field name="surface"/>
<!--<field name="refimmo"/>!-->
</group>
</xpath>
<xpath expr="//field[@name='barcode']" position="attributes">
<attribute name="invisible">1</attribute>
</xpath>
</field>
</record>
</odoo>
请帮忙!
您应用了错误的引用。仅更改对此 product.product_template_only_form_view
的引用
谢谢
我正在开发 odoo 12 (python 3.6),我试图从 product.template 继承并隐藏条码字段,但我遇到了这个错误:
element'<xpath expr="//field[@name='barcode']">' not found in parent view
这是我的gesimmo_views.xml
<odoo>
<record model="ir.ui.view" id="view_form_gesimmo">
<field name="name">Product</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_form_view"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='standard_price']" position="after">
<group>
<field name="surface"/>
<!--<field name="refimmo"/>!-->
</group>
</xpath>
<xpath expr="//field[@name='barcode']" position="attributes">
<attribute name="invisible">1</attribute>
</xpath>
</field>
</record>
</odoo>
请帮忙!
您应用了错误的引用。仅更改对此 product.product_template_only_form_view
的引用谢谢