[IMP] Launchpad export translation files
[odoo/odoo.git] / addons / account_followup / __terp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23
24 {
25     'name': 'Accounting follow-ups management',
26     'version': '1.0',
27     'category': 'Generic Modules/Accounting',
28     'description': """
29     Modules to automate letters for unpaid invoices, with multi-level recalls.
30
31     You can define your multiple levels of recall through the menu:
32         Financial Management/Configuration/Payment Terms/Follow-Ups
33
34     Once it's defined, you can automatically prints recall every days
35     through simply clicking on the menu:
36         Financial_Management/Periodical_Processing/Print_Follow-Ups
37
38     It will generate a PDF with all the letters according the the
39     different levels of recall defined. You can define different policies
40     for different companies.
41
42
43     Note that if you want to change the followup level for a given partner/account entry, you can do it in the menu:
44         Financial_Management/Reporting/Follow-Ups/All Receivable Entries
45
46 """,
47     'author': 'Tiny',
48     'website': 'http://www.openerp.com',
49     'depends': ['account'],
50     'init_xml': [],
51     'update_xml': [
52         'security/ir.model.access.csv',
53         'wizard/wizard_view.xml',
54         'followup_report_view.xml',
55         'followup_view.xml',
56         'followup_data.xml'
57     ],
58     'demo_xml': ['followup_demo.xml'],
59     'installable': True,
60     'active': False,
61     'certificate': '0072481076453',
62 }
63 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: