-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbilling_statement_view.xml
More file actions
33 lines (27 loc) · 1 KB
/
billing_statement_view.xml
File metadata and controls
33 lines (27 loc) · 1 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
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
<record model="ir.ui.view" id="inherit_view_account_billing_form">
<field name="name">inherit.view.account.billing.form</field>
<field name="model">account.billing</field>
<field name="type">form</field>
<field name="inherit_id" ref="account_billing.view_billing_receipt_form"/>
<field name="arch" type="xml">
<field name="narration" position="before">
<separator string="Terms and Conditions / Notes" colspan="4"/>
</field>
<page string="Payment Information" 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>