18 lines
696 B
XML
18 lines
696 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<record id="view_picking_form" model="ir.ui.view">
|
|
<field name="model">stock.picking</field>
|
|
<field name="inherit_id" ref="stock.view_picking_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='product_uom']" position="after">
|
|
<field name="location_dest_list" />
|
|
</xpath>
|
|
<xpath expr="//field[@name='product_uom_qty']" position="attributes">
|
|
<attribute
|
|
name="attrs"
|
|
>{'column_invisible': [('parent.state', '=', 'done')]}</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|