[MERGE] lp:~openerp-dev/openobject-addons/trunk-review_module_desc-psi
[odoo/odoo.git] / addons / account_followup / account_followup.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 from osv import fields, osv
23
24 class followup(osv.osv):
25     _name = 'account_followup.followup'
26     _description = 'Account Follow-up'
27     _columns = {
28         'name': fields.char('Name', size=64, required=True),
29         'description': fields.text('Description'),
30         'followup_line': fields.one2many('account_followup.followup.line', 'followup_id', 'Follow-up'),
31         'company_id': fields.many2one('res.company', 'Company', required=True),
32     }
33     _defaults = {
34         'company_id': lambda s, cr, uid, c: s.pool.get('res.company')._company_default_get(cr, uid, 'account_followup.followup', context=c),
35     }
36     
37 followup()
38
39 class followup_line(osv.osv):
40     _name = 'account_followup.followup.line'
41     _description = 'Follow-up Criteria'
42     _columns = {
43         'name': fields.char('Name', size=64, required=True),
44         'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of follow-up lines."),
45         'delay': fields.integer('Days of delay'),
46         'start': fields.selection([('days','Net Days'),('end_of_month','End of Month')], 'Type of Term', size=64, required=True),
47         'followup_id': fields.many2one('account_followup.followup', 'Follow Ups', required=True, ondelete="cascade"),
48         'description': fields.text('Printed Message', translate=True),
49     }
50     _defaults = {
51         'start': 'days',
52
53     }
54     def _check_description(self, cr, uid, ids, context=None):
55         for line in self.browse(cr, uid, ids, context=context):
56             if line.description:
57                 try:
58                     line.description % {'partner_name': '', 'date':'', 'user_signature': '', 'company_name': ''}
59                 except:
60                     return False
61         return True
62
63     _constraints = [
64         (_check_description, 'Your description is invalid, use the right legend or %% if you want to use the percent character.', ['description']),
65     ]
66
67 followup_line()
68
69 class account_move_line(osv.osv):
70     _inherit = 'account.move.line'
71     _columns = {
72         'followup_line_id': fields.many2one('account_followup.followup.line', 'Follow-up Level'),
73         'followup_date': fields.date('Latest Follow-up', select=True),
74     }
75
76 account_move_line()
77
78 class res_company(osv.osv):
79     _inherit = "res.company"
80     _columns = {
81         'follow_up_msg': fields.text('Follow-up Message', translate=True),
82     }
83
84     _defaults = {
85         'follow_up_msg': '''
86 Date: %(date)s
87
88 Dear %(partner_name)s,
89
90 Please find in attachment a reminder of all your unpaid invoices, for a total amount due of:
91
92 %(followup_amount).2f %(company_currency)s
93
94 Thanks,
95 --
96 %(user_signature)s
97 %(company_name)s
98         '''
99     }
100
101 res_company()
102
103 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: