summaryrefslogtreecommitdiff
path: root/addons/l10n_lu/__manifest__.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/l10n_lu/__manifest__.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/l10n_lu/__manifest__.py')
-rw-r--r--addons/l10n_lu/__manifest__.py53
1 files changed, 53 insertions, 0 deletions
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 (<http://www.thamini.com>)
+# Copyright (C) 2011 ADN Consultants S.à.R.L (<http://www.adn-luxembourg.com>)
+# Copyright (C) 2014 ACSONE SA/NV (<http://acsone.eu>)
+
+{
+ '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',
+}