Я работаю над odoo 12 (python 3.6) и пытаюсь унаследовать от product.template и скрыть поле штрих-кода, но у меня была эта ошибка:
element'<xpath expr="//field[@name='barcode']">' not found in parent view
this мои 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>
ПОЖАЛУЙСТА, ПОМОГИТЕ!