[MOV] [ADD] Moved gauge and sparkline widgets into their own modules.
[odoo/odoo.git] / addons / l10n_lu / __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 #    Copyright (C) 2011 Thamini S.à.R.L (<http://www.thamini.com>)
7 #    Copyright (C) 2011 ADN Consultants S.à.R.L (<http://www.adn-luxembourg.com>)
8 #    Copyright (C) 2012-today OpenERP SA (<http://openerp.com>)
9 #
10 #    This program is free software: you can redistribute it and/or modify
11 #    it under the terms of the GNU Affero General Public License as
12 #    published by the Free Software Foundation, either version 3 of the
13 #    License, or (at your option) any later version.
14 #
15 #    This program is distributed in the hope that it will be useful,
16 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
17 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 #    GNU Affero General Public License for more details.
19 #
20 #    You should have received a copy of the GNU Affero General Public License
21 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 #
23 ##############################################################################
24
25
26 {
27     'name': 'Luxembourg - Accounting',
28     'version': '1.0',
29     'category': 'Localization/Account Charts',
30     'description': """
31 This is the base module to manage the accounting chart for Luxembourg.
32 ======================================================================
33
34     * the Luxembourg Official Chart of Accounts (law of June 2009 + 2011 chart and Taxes),
35     * the Tax Code Chart for Luxembourg
36     * the main taxes used in Luxembourg
37     * default fiscal position for local, intracom, extracom """,
38     'author': 'OpenERP SA & ADN',
39     'website': 'http://www.openerp.com http://www.adn-luxembourg.com',
40     'depends': ['account', 'base_vat', 'base_iban'],
41     'data': [
42         # basic accounting data
43         'account_financial_report.xml',
44         'account.account.type-2011.csv',
45         'account.account.template-2011.csv',
46         'account.tax.code.template-2011.csv',
47         'account_chart_template.xml',
48         'account.tax.template-2011.csv',
49         # Change BRE: adds fiscal position
50         'account.fiscal.position.template-2011.csv',
51         'account.fiscal.position.tax.template-2011.csv',
52         # configuration wizard, views, reports...
53         'l10n_lu_wizard.xml',
54         'wizard/print_vat_view.xml'
55     ],
56     'test': ['test/l10n_lu_report.yml'],
57     'demo': [],
58     'installable': True,
59     'auto_install': False,
60     'images': ['images/config_chart_l10n_lu.jpeg','images/l10n_lu_chart.jpeg'],
61 }
62 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: