fixes #5 order of fields

This commit is contained in:
Matthias Brück 2024-07-03 11:44:11 +10:00
parent e7fa7c61a2
commit 1bdf0f3c2f

View file

@ -5,7 +5,7 @@
<field name="model">sale.order</field> <field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/> <field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml"> <field name="arch" type="xml">
<xpath expr="//field[@name='order_line']/tree/field[@name='product_uom_qty']" position="before"> <xpath expr="//field[@name='order_line']/tree/field[@name='product_uom_qty']" position="after">
<field name="product_uom_min_qty" optional="hide"/> <field name="product_uom_min_qty" optional="hide"/>
<field name="product_uom_max_qty"/> <field name="product_uom_max_qty"/>
</xpath> </xpath>