Launchpad automatic translations update.
[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': 'Followups Management',
24     'version': '1.0',
25     'category': 'Accounting & Finance',
26     'complexity': "normal",
27     'description': """
28 Modules to automate letters for unpaid invoices, with multi-level recalls.
29 ==========================================================================
30
31 You can define your multiple levels of recall through the menu:
32     Accounting/Configuration/Miscellaneous/Follow-Ups
33
34 Once it is defined, you can automatically print recalls every day through simply clicking on the menu:
35     Accounting/Periodical Processing/Billing/Send followups
36
37 It will generate a PDF with all the letters according to the the
38 different levels of recall defined. You can define different policies
39 for different companies. You can also send mail to the customer.
40
41 Note that if you want to check the followup level for a given partner/account entry, you can do from in the menu:
42     Accounting/Reporting/Generic Reporting/Partners/Follow-ups Sent
43
44 """,
45     'author': 'OpenERP SA',
46     'website': 'http://www.openerp.com',
47     'images': ['images/follow_ups.jpeg','images/send_followups.jpeg'],
48     'depends': ['account_accountant', 'mail'],
49     'init_xml': [],
50     'update_xml': [
51         'security/account_followup_security.xml',
52         'security/ir.model.access.csv',
53         'wizard/account_followup_print_view.xml',
54         'report/account_followup_report.xml',
55         'account_followup_demo.xml',   # Defined by default
56         'account_followup_view.xml',
57         'account_followup_data.xml',
58     ],
59     'demo_xml': [],
60     'test': ['test/account_followup.yml'],
61     'installable': True,
62     'active': False,
63     'certificate': '0072481076453',
64 }
65
66 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: