-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpayment_terms_finnish.xml
59 lines (53 loc) · 2.11 KB
/
payment_terms_finnish.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="utf-8" ?>
<odoo noupdate="1">
<!-- Add most often used payment terms in Finland -->
<!-- Immediate payment is in core, and not added -->
<!-- 7 Days -->
<record id="account_payment_term_7_days" model="account.payment.term">
<field name="name">7 Days</field>
<field name="note">7 Days</field>
<field
name="line_ids"
eval="[Command.clear(), Command.create({'value': 'percent', 'value_amount': 100.0, 'nb_days': 7})]"
/>
</record>
<!-- 10 Days -->
<record id="account_payment_term_10_days" model="account.payment.term">
<field name="name">10 Days</field>
<field name="note">10 Days</field>
<field
name="line_ids"
eval="[Command.clear(), Command.create({'value': 'percent', 'value_amount': 100.0, 'nb_days': 10})]"
/>
</record>
<!-- 14 Days -->
<record id="account_payment_term_14_days" model="account.payment.term">
<field name="name">14 Days</field>
<field name="note">14 Days</field>
<field
name="line_ids"
eval="[Command.clear(), Command.create({'value': 'percent', 'value_amount': 100.0, 'nb_days': 14})]"
/>
</record>
<!-- 21 Days is in the core, and not added -->
<!-- 30 Days is in the core, and not added -->
<!-- 45 Days is in the core, and not added -->
<!-- 60 Days -->
<record id="account_payment_term_60_days" model="account.payment.term">
<field name="name">60 Days</field>
<field name="note">60 Days</field>
<field
name="line_ids"
eval="[Command.clear(), Command.create({'value': 'percent', 'value_amount': 100.0, 'nb_days': 60})]"
/>
</record>
<!-- 90 Days -->
<record id="account_payment_term_90_days" model="account.payment.term">
<field name="name">90 Days</field>
<field name="note">90 Days</field>
<field
name="line_ids"
eval="[Command.clear(), Command.create({'value': 'percent', 'value_amount': 100.0, 'nb_days': 90})]"
/>
</record>
</odoo>