-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpurchase_order_view.xml
More file actions
52 lines (43 loc) · 1.67 KB
/
purchase_order_view.xml
File metadata and controls
52 lines (43 loc) · 1.67 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
<record model="ir.ui.view" id="lc5_purchase_order_mod_form_view">
<field name="name">lc5.purchase.order.mod.form</field>
<field name="model">lc5.purchase.order.mod</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Warranty">
<field name="name" select="1"/>
</form>
</field>
</record>
<record model="ir.ui.view" id="inherit_view_purchase_order_form">
<field name="name">inherit.view.purchase.order.form</field>
<field name="model">purchase.order</field>
<field name="type">form</field>
<field name="inherit_id" ref="purchase.purchase_order_form"/>
<field name="arch" type="xml">
<field name="warehouse_id" position="after">
<field name="purchase_quotation_reference"/>
</field>
<field name="notes" position="before">
<separator string="Terms and Conditions / Notes" colspan="4"/>
</field>
<field name="notes" position="after">
<group><group><field name="mode_of_delivery_id" string="Mode of Delivery" class="oe_inline"/></group></group><group></group>
</field>
<page string="Incoming Shipments & Invoices" position="after">
<page string="Signatories">
<group >
<group>
<field name="prepared_by_id" class="oe_inline"/>
<field name="approved_by_id" class="oe_inline"/>
</group>
</group>
<group></group>
</page>
</page>
</field>
</record>
</data>
</openerp>