ea2f79c967d2838ea72d42a5e535a97d8edfb3ae
[odoo/odoo.git] / addons / account_followup / __openerp__.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 {
23     'name': 'Accounting follow-ups management',
24     'version': '1.0',
25     'category': 'Generic Modules/Accounting',
26     'description': """
27     Modules to automate letters for unpaid invoices, with multi-level recalls.
28
29     You can define your multiple levels of recall through the menu:
30         Financial Management/Configuration/Follow-Ups
31
32     Once it's defined, you can automatically print recalls every day
33     through simply clicking on the menu:
34         Financial Management/Periodical Processing/Send followups
35
36     It will generate a PDF with all the letters according the the
37     different levels of recall defined. You can define different policies
38     for different companies. You can send also mail to the customer.
39
40     Note that if you want to change the followup level for a given partner/account entry, you can do it in the menu:
41         Accounting/Reporting/Follow-Ups/All receivable entries
42
43 """,
44     'author': 'OpenERP SA',
45     'website': 'http://www.openerp.com',
46     'depends': ['account'],
47     'init_xml': [],
48     'update_xml': [
49         'security/ir.model.access.csv',
50         'wizard/account_followup_print_view.xml',
51         'report/account_followup_report.xml',
52         'account_followup_view.xml',
53         'account_followup_data.xml'
54     ],
55     'demo_xml': ['account_followup_demo.xml'],
56     'test': ['test/account_followup.yml'],
57     'installable': True,
58     'active': False,
59     'certificate': '0072481076453',
60 }
61
62 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: