From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/l10n_lu/__manifest__.py | 53 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 addons/l10n_lu/__manifest__.py (limited to 'addons/l10n_lu/__manifest__.py') diff --git a/addons/l10n_lu/__manifest__.py b/addons/l10n_lu/__manifest__.py new file mode 100644 index 00000000..97ae1273 --- /dev/null +++ b/addons/l10n_lu/__manifest__.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +# Copyright (C) 2011 Thamini S.à.R.L () +# Copyright (C) 2011 ADN Consultants S.à.R.L () +# Copyright (C) 2014 ACSONE SA/NV () + +{ + 'name': 'Luxembourg - Accounting', + 'version': '2.0', + 'category': 'Accounting/Localizations/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 + 2015 chart and Taxes), + * the Tax Code Chart for Luxembourg + * the main taxes used in Luxembourg + * default fiscal position for local, intracom, extracom + +Notes: + * the 2015 chart of taxes is implemented to a large extent, + see the first sheet of tax.xls for details of coverage + * to update the chart of tax template, update tax.xls and run tax2csv.py +""", + 'author': 'OpenERP SA, ADN, ACSONE SA/NV', + 'depends': [ + 'account', + 'base_iban', + 'base_vat', + 'l10n_multilang', + ], + 'data': [ + # basic accounting data + 'data/l10n_lu_chart_data.xml', + 'data/account.account.template.csv', + 'data/account.group.template.csv', + 'data/account_tax_report_line.xml', + 'data/account.tax.group.csv', + 'data/account_tax_template_2015.xml', + 'data/account.fiscal.position.template-2011.csv', + 'data/account.fiscal.position.tax.template-2015.csv', + 'data/account_reconcile_model_template_data.xml', + # configuration wizard, views, reports... + 'data/account.chart.template.csv', + 'data/account_chart_template_data.xml', + ], + 'demo': [ + 'demo/demo_company.xml', + ], + 'post_init_hook': '_post_init_hook', + 'license': 'LGPL-3', +} -- cgit v1.2.3