You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
686 B
17 lines
686 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<record id="view_picking_form" model="ir.ui.view">
|
|
<!-- Inherit the stock_picking form view to add field -->
|
|
<field name='name'>
|
|
stock.picking.view.form.inherit.order.line.note
|
|
</field>
|
|
<field name='model'>stock.picking</field>
|
|
<field name="inherit_id" ref="stock.view_picking_form"/>
|
|
<field name="arch" type="xml">
|
|
<!-- Define the position to insert the new elements in the view -->
|
|
<xpath expr="//field[@name='description_picking']" position="before">
|
|
<field name="note"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|