Hi there,
I'm just trying to relocate fields "type" & "list_price" in product to the right column at the very end under the EAN13 or Reference code.
"<record id="product_template_form_view" model="ir.ui.view">
<field name="name">product.template.form</field>
<field name="model">product.template</field>
<field name="arch" type="xml">
<field name="ean13" position="after">
<field name="type" string="Product Type"/>
<field name="list_price" string="Sale Price"/>
</field>
</field>
</record>"
But this won't work, can you help me with ?