summaryrefslogtreecommitdiff
path: root/addons/l10n_fr/__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_fr/__manifest__.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/l10n_fr/__manifest__.py')
-rw-r--r--addons/l10n_fr/__manifest__.py56
1 files changed, 56 insertions, 0 deletions
diff --git a/addons/l10n_fr/__manifest__.py b/addons/l10n_fr/__manifest__.py
new file mode 100644
index 00000000..46d4683a
--- /dev/null
+++ b/addons/l10n_fr/__manifest__.py
@@ -0,0 +1,56 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+# Copyright (c) 2008 JAILLET Simon - CrysaLEAD - www.crysalead.fr
+
+{
+ 'name': 'France - Accounting',
+ 'version': '2.0',
+ 'category': 'Accounting/Localizations/Account Charts',
+ 'description': """
+This is the module to manage the accounting chart for France in Odoo.
+========================================================================
+
+This module applies to companies based in France mainland. It doesn't apply to
+companies based in the DOM-TOMs (Guadeloupe, Martinique, Guyane, Réunion, Mayotte).
+
+This localisation module creates the VAT taxes of type 'tax included' for purchases
+(it is notably required when you use the module 'hr_expense'). Beware that these
+'tax included' VAT taxes are not managed by the fiscal positions provided by this
+module (because it is complex to manage both 'tax excluded' and 'tax included'
+scenarios in fiscal positions).
+
+This localisation module doesn't properly handle the scenario when a France-mainland
+company sells services to a company based in the DOMs. We could manage it in the
+fiscal positions, but it would require to differentiate between 'product' VAT taxes
+and 'service' VAT taxes. We consider that it is too 'heavy' to have this by default
+in l10n_fr; companies that sell services to DOM-based companies should update the
+configuration of their taxes and fiscal positions manually.
+
+**Credits:** Sistheo, Zeekom, CrysaLEAD, Akretion and Camptocamp.
+""",
+ 'depends': [
+ 'account',
+ 'base_iban',
+ 'base_vat',
+ ],
+ 'data': [
+ 'data/l10n_fr_chart_data.xml',
+ 'data/account.account.template.csv',
+ 'data/account.group.template.csv',
+ 'data/account_chart_template_data.xml',
+ 'views/l10n_fr_view.xml',
+ 'data/account_data.xml',
+ 'data/tax_report_data.xml',
+ 'data/account_tax_data.xml',
+ 'data/res_country_data.xml',
+ 'data/account_fiscal_position_template_data.xml',
+ 'data/account_reconcile_model_template.xml',
+ 'data/account_chart_template_configure_data.xml',
+ ],
+ 'demo': [
+ 'demo/demo_company.xml',
+ ],
+ 'post_init_hook': '_l10n_fr_post_init_hook',
+ 'license': 'LGPL-3',
+}