~sharoonthomas/openerpretail/core

« back to all changes in this revision

Viewing changes to bin/addons/account_followup/followup_demo.xml

  • Committer: Sharoon Thomas
  • Date: 2009-07-20 06:25:34 UTC
  • Revision ID: sharoonthomas@teagarden.in-20090720062534-j8jq2nmdy63w9o9c
Initial Release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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">
 
18
Dear %(partner_name)s,
 
19
 
 
20
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.
 
21
 
 
22
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 department at (+32).10.68.94.39.
 
23
 
 
24
Best Regards,
 
25
                        </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">
 
35
Dear %(partner_name)s,
 
36
 
 
37
We are disappointed to see that despite sending a reminder, that your account is now seriously overdue.
 
38
 
 
39
It is essential that immediate payment is made, otherwise we will have to consider placing a stop on your account which means that we will no longer be able to supply your company with (goods/services).
 
40
Please, take appropriate measures in order to carry out this payment in the next 8 days
 
41
 
 
42
If there is a problem with paying invoice that we are not aware of, do not hesitate to contact our accounting department at (+32).10.68.94.39. so that we can resolve the matter quickly.
 
43
 
 
44
Details of due payments is printed below.
 
45
 
 
46
Best Regards,
 
47
                        </field>
 
48
        </record>
 
49
 
 
50
        <record id="demo_followup_line3" model="account_followup.followup.line">
 
51
            <field name="name">Level 2 : 45 days end of month</field>
 
52
            <field name="sequence">2</field>
 
53
            <field name="start">end_of_month</field>
 
54
            <field name="delay">45</field>
 
55
            <field name="followup_id" ref="demo_followup1"/>
 
56
            <field name="description">
 
57
Dear %(partner_name)s,
 
58
 
 
59
Despite several reminders, your account is still not settled.
 
60
 
 
61
Unless full payment is made in next 8 days , then legal action for the recovery of the debt, will be taken without further notice.
 
62
 
 
63
I trust that this action will prove unnecessary and details of due payments is printed below.
 
64
 
 
65
In case of any queries concerning this matter, do not hesitate to contact our accounting department at (+32).10.68.94.39.
 
66
 
 
67
Best Regards,
 
68
                        </field>
 
69
        </record>
 
70
 
 
71
    </data>
 
72
</openerp>