forked from acsone/account-invoicing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccount_demo.xml
More file actions
25 lines (20 loc) · 730 Bytes
/
account_demo.xml
File metadata and controls
25 lines (20 loc) · 730 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">
<record id="account.account_payment_term_line" model="account.payment.term.line">
<field name="days" eval="0"/>
<field name="months" eval="1"/>
</record>
<record id="sixty_days_end_of_month" model="account.payment.term">
<field name="name">60 Days End of Month</field>
<field name="note">60 Days End of Month</field>
</record>
<record id="sixty_days_end_of_month_line" model="account.payment.term.line">
<field name="payment_id" ref="sixty_days_end_of_month"/>
<field name="value">balance</field>
<field name="months" eval="2"/>
<field name="days" eval="0"/>
<field name="days2" eval="-1"/>
</record>
</data>
</openerp>