[I18N] Removed duplicated terms for inherited [_sql]_constraints -> 400 terms removed
[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': 'Payment 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     Configuration / Follow-Up Levels
33     
34 Once it is defined, you can automatically print recalls every day through simply clicking on the menu:
35 ------------------------------------------------------------------------------------------------------
36     Payment Follow-Up / Send Email and letters
37
38 It will generate a PDF / send emails / set manual actions according to the the different levels 
39 of recall defined. You can define different policies for different companies. 
40
41 Note that if you want to check the follow-up level for a given partner/account entry, you can do from in the menu:
42 ------------------------------------------------------------------------------------------------------------------
43     Reporting / Accounting / **Follow-ups Analysis
44
45 """,
46     'author': 'OpenERP SA',
47     'website': 'http://www.openerp.com',
48     'images': ['images/follow_ups.jpeg','images/send_followups.jpeg'],
49     'depends': ['account_accountant', 'mail'],
50     'data': [
51         'security/account_followup_security.xml',
52         'security/ir.model.access.csv',
53         'report/account_followup_report.xml',
54         'account_followup_data.xml',
55         'account_followup_view.xml',
56         'account_followup_customers.xml',
57         'wizard/account_followup_print_view.xml',
58     ],
59     'demo': ['account_followup_demo.xml'],
60     'test': [
61         'test/account_followup.yml',
62         #TODO 'test/account_followup_report.yml', --> Need to wait for second step in order to check report (expects after first)
63     ],
64     'installable': True,
65     'auto_install': False,
66 }
67
68 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: