# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # Copyright (C) 2011 Thamini S.à.R.L () # Copyright (C) 2011 ADN Consultants S.à.R.L () # Copyright (C) 2012-today OpenERP SA () # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # ############################################################################## { 'name': 'Luxembourg - Accounting', 'version': '1.0', 'category': 'Localization/Account Charts', 'description': """ This is the base module to manage the accounting chart for Luxembourg. ====================================================================== * the Luxembourg Official Chart of Accounts (law of June 2009 + 2011 chart and Taxes), * the Tax Code Chart for Luxembourg * the main taxes used in Luxembourg * default fiscal position for local, intracom, extracom """, 'author': 'OpenERP SA & ADN', 'website': 'http://www.openerp.com http://www.adn-luxembourg.com', 'depends': ['account', 'base_vat', 'base_iban'], 'data': [ # basic accounting data 'account_financial_report.xml', 'account_financial_report_abr.xml', 'account.account.type-2011.csv', 'account.account.template-2011.csv', 'account.tax.code.template-2011.csv', 'account_chart_template.xml', 'account.tax.template-2011.csv', # Change BRE: adds fiscal position 'account.fiscal.position.template-2011.csv', 'account.fiscal.position.tax.template-2011.csv', # configuration wizard, views, reports... 'l10n_lu_wizard.xml', ], 'test': [], 'demo': [], 'installable': True, 'auto_install': False, } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: