I am trying to move a field under res.partner. The field is Barcode and it is under notebook Sales & Purchases. I added a field to the form view but as I have found out Odoo only allows on field per view. Below code works but does not display any data.
<xpath expr="//field[@name='category_id']" position="after">
<field name="barcode" />
<field name="pin"
The barcode field seems to be point_of_sale.view_partner_property_form
I tried below but it did not remove the barcode field
<!--Form -->
<odoo>
<record id="view_partner_pos_form_extend" model="ir.ui.view">
<field name="name">res.partner.pos.form.view.extend</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="point_of_sale.view_partner_property_form" />
<field name="arch" type="xml">
<xpath expr="//field[@name='barcode']" position="replace">
</xpath>
</field>
</record>
</odoo>
The
xpath
with a positionafter
,before
,inside
orreplace
can thus now have another xpath as direct child with positionmove
.The
position='move'
has been introduced to move an element in an inherited view.It's used as
or also