modifs
[odoo/odoo.git] / addons / account_followup / followup_demo.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data noupdate="1">
4         
5         <record id="demo_followup1" model="account_followup.followup">
6             <field name="name">Default follow-up</field>
7             <field name="company_id" ref="base.main_company"/>
8             <field name="description">First letter after 15 net days, 30 net days and 45 days end of month levels.</field>
9         </record>
10         
11         <record id="demo_followup_line1" model="account_followup.followup.line">
12             <field name="name">Level 0 : 15 net days</field>
13             <field name="sequence">0</field>
14             <field name="start">days</field>
15             <field name="delay">15</field>
16             <field name="followup_id" ref="demo_followup1"/>
17             <field name="description">Date : %(date)s
18
19 Dear %(partner_name)s,
20
21 Exception made if there was a mistake of ours, it seems that the following amount staid unpaid. Please, take appropriate measures in order to carry out this payment in the next 8 days.
22
23 Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting departement at (+32).10.68.94.39.
24
25 Best regards,</field>
26         </record>
27
28         <record id="demo_followup_line2" model="account_followup.followup.line">
29             <field name="name">Level 1 : 30 net days</field>
30             <field name="sequence">1</field>
31             <field name="start">days</field>
32             <field name="delay">30</field>
33             <field name="followup_id" ref="demo_followup1"/>
34             <field name="description">LEVEL 1:
35 Date : %(date)s
36
37 Dear %(partner_name)s,
38
39 Exception made if there was a mistake of ours, it seems that the following amount staid unpaid. Please, take appropriate measures in order to carry out this payment in the next 8 days.
40
41 Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting departement at (+32).10.68.94.39.
42
43 Best regards,</field>
44         </record>
45
46         <record id="demo_followup_line3" model="account_followup.followup.line">
47             <field name="name">Level 2 : 45 days end of month</field>
48             <field name="sequence">2</field>
49             <field name="start">end_of_month</field>
50             <field name="delay">45</field>
51             <field name="followup_id" ref="demo_followup1"/>
52             <field name="description">LEVEL 2:
53 Date : %(date)s
54
55 Dear %(partner_name)s,
56
57 Exception made if there was a mistake of ours, it seems that the following amount staid unpaid. Please, take appropriate measures in order to carry out this payment in the next 8 days.
58
59 Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting departement at (+32).10.68.94.39.
60
61 Best regards,</field>
62         </record>
63         
64     </data>
65 </openerp>