[MERGE] merge with latest stable
[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'),
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
51 followup_line()
52
53 class account_move_line(osv.osv):
54     _inherit = 'account.move.line'
55     _columns = {
56         'followup_line_id': fields.many2one('account_followup.followup.line', 'Follow-up Level'),
57         'followup_date': fields.date('Latest Follow-up', select=True),
58                 }
59
60 account_move_line()
61
62 class res_company(osv.osv):
63     _inherit = "res.company"
64     _columns = {
65         'follow_up_msg': fields.text('Follow-up Message', translate=True),
66     }
67
68     _defaults = {
69         'overdue_msg': '''
70 Date: %(date)s
71
72 Dear %(partner_name)s,
73
74 Please find in attachment a reminder of all your unpaid invoices, for a total amount due of:
75
76 %(followup_amount).2f %(company_currency)s
77
78 Thanks,
79 --
80 %(user_signature)s
81 %(company_name)s
82         '''
83     }
84
85 res_company()
86
87 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: