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