I'm trying to make the fields "Margin" and "Margin Percent" invisible on the sale.order.line model, but I'm having trouble finding the correct view to inherit. Here is the code I'm currently using:
record id="view_order_line_form_inherit" model="ir.ui.view"
field name="name" sale.order.line.form.inherit field
field name="model" sale.order.line field
field name="inherit_id" ref="sale_margin.sale_margin_sale_order_line_form"
field name="arch" type="xml"
xpath expr="//field[@name='margin']" position="attributes"
attribute name="invisible" 1 /attribute
/xpath
xpath expr="//field[@name='margin_percent']" position="attributes"
attribute name="invisible" 1 /attribute
xpath
field
record
Help me please.