How can i change the description of the field? I use odoo 18 and with this example it does not work. The label remains the same.
<record id="view_purchase_order_form" model="ir.ui.view">
<field name="name">purchase.order.form</field>
<field name="model">purchase.order</field>
<field name="inherit_id" ref="purchase.purchase_order_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='order_line']/form//field[@name='product_uom']" position="attributes">
<attribute name="string">Mengeneinheit</attribute>
</xpath>
</field>
</record>
Hello everyone,
thank you the example works.