35 lines
1.6 KiB
Python
35 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'France - VAT Anti-Fraud Certification for Point of Sale (CGI 286 I-3 bis)',
|
|
'author' : 'Odoo S.A',
|
|
'version': '1.0',
|
|
'category': 'Localization',
|
|
'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_sale_closing', 'point_of_sale'],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'application': False,
|
|
'data': [
|
|
'data/pos_inalterability.xml',
|
|
'views/account_views.xml',
|
|
],
|
|
'post_init_hook': '_setup_inalterability',
|
|
}
|