Hi.
I have a stock module with a view(A) and an inherited view(B).
I now want to inherit the inherited view with xml record (C) and remove 2 fields which were added by (B).
But i dont know how.
I tried to do an xpath on the fields added, but i get a "cannot be located" error.
Can someone help me?
i have in B:
<field name="categ_id" position="after">
<field name="default_code" attrs="{'invisible': [('product_variant_count', '>', 1)]}"/>
<field name="barcode" attrs="{'invisible': [('product_variant_count', '>', 1)]}"/>
</field>
and in C:
<xpath expr="//field[@name='default_code']" position="attributes">
<attribute name="attrs">{'invisible': True}</attribute>
</xpath>
<xpath expr="//field[@name='barcode']" position="attributes">
<attribute name="attrs">{'invisible': True}</attribute>
</xpath>