summaryrefslogtreecommitdiff
path: root/addons/l10n_fr_pos_cert/__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_pos_cert/__manifest__.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/l10n_fr_pos_cert/__manifest__.py')
-rw-r--r--addons/l10n_fr_pos_cert/__manifest__.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/addons/l10n_fr_pos_cert/__manifest__.py b/addons/l10n_fr_pos_cert/__manifest__.py
new file mode 100644
index 00000000..fcd9c38d
--- /dev/null
+++ b/addons/l10n_fr_pos_cert/__manifest__.py
@@ -0,0 +1,42 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+{
+ 'name': 'France - VAT Anti-Fraud Certification for Point of Sale (CGI 286 I-3 bis)',
+ 'version': '1.0',
+ 'category': 'Accounting/Localizations/Point of Sale',
+ 'description': """
+This add-on brings the technical requirements of the French regulation CGI art. 286, I. 3° bis that stipulates certain criteria concerning the inalterability, security, storage and archiving of data related to sales to private individuals (B2C).
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+
+Install it if you use the Point of Sale app to sell to individuals.
+
+The module adds following features:
+
+ Inalterability: deactivation of all the ways to cancel or modify key data of POS orders, invoices and journal entries
+
+ Security: chaining algorithm to verify the inalterability
+
+ Storage: automatic sales closings with computation of both period and cumulative totals (daily, monthly, annually)
+
+ Access to download the mandatory Certificate of Conformity delivered by Odoo SA (only for Odoo Enterprise users)
+""",
+ 'depends': ['l10n_fr', 'point_of_sale'],
+ 'installable': True,
+ 'auto_install': True,
+ 'application': False,
+ 'data': [
+ 'views/account_views.xml',
+ 'views/l10n_fr_pos_cert_templates.xml',
+ 'views/pos_views.xml',
+ 'views/account_sale_closure.xml',
+ 'views/pos_inalterability_menuitem.xml',
+ 'report/pos_hash_integrity.xml',
+ 'data/account_sale_closure_cron.xml',
+ 'security/ir.model.access.csv',
+ 'security/account_closing_intercompany.xml',
+ ],
+ 'qweb': ['static/src/xml/OrderReceipt.xml'],
+ 'post_init_hook': '_setup_inalterability',
+ 'license': 'LGPL-3',
+}