forked from OCA/stock-logistics-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stock_picking_view.xml
36 lines (33 loc) · 1.35 KB
/
stock_picking_view.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8"?>
<!--
product customer code picking for OpenERP
Copyright (C) 2013 Agile Business Group sagl (<http://www.agilebg.com>).
Authors, Nicola Malcontenti, [email protected]
The licence is in the file __openerp__.py
-->
<openerp>
<data>
<record id="view_move_picking_tree" model="ir.ui.view">
<field name="name">stock.move.product.code.tree</field>
<field name="model">stock.move</field>
<field name="inherit_id" ref="stock.view_move_picking_tree"/>
<field eval="16" name="priority"/>
<field name="arch" type="xml">
<field name="product_id" position="after">
<field name="product_customer_code" />
</field>
</field>
</record>
<record id="view_move_picking_form" model="ir.ui.view">
<field name="name">stock.move.product.code.form</field>
<field name="model">stock.move</field>
<field name="inherit_id" ref="stock.view_move_picking_form"/>
<field eval="16" name="priority"/>
<field name="arch" type="xml">
<field name="product_id" position="after">
<field name="product_customer_code" />
</field>
</field>
</record>
</data>
</openerp>