forked from akretion/account-invoicing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount_view.xml
43 lines (40 loc) · 1.77 KB
/
account_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
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_payment_term_line_form" model="ir.ui.view">
<field name="name">account.payment.term.line.form.extension</field>
<field name="model">account.payment.term.line</field>
<field name="inherit_id" ref="account.view_payment_term_line_form"/>
<field name="arch" type="xml">
<div attrs="{'invisible':[('value','=','balance')]}" position="after">
<field name="amount_round"
attrs="{'invisible':[('value','=','balance')]}"/>
</div>
<field name="days" position="after">
<field name="weeks"/>
<field name="months"/>
</field>
<field name="days" position="before">
<field name="start_with_end_month"/>
</field>
</field>
</record>
<record id="view_payment_term_line_tree" model="ir.ui.view">
<field name="name">account.payment.term.line.tree.extension</field>
<field name="model">account.payment.term.line</field>
<field name="inherit_id" ref="account.view_payment_term_line_tree" />
<field name="arch" type="xml">
<field name="value_amount" position="after">
<field name="amount_round"/>
</field>
<field name="days" position="after">
<field name="weeks"/>
<field name="months"/>
</field>
<field name="days" position="before">
<field name="start_with_end_month"/>
</field>
</field>
</record>
</data>
</openerp>