__manifest__.py 1.1 KB

123456789101112131415161718192021222324252627
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': 'Proxy features for account_edi',
  4. 'description': """
  5. This module adds generic features to register an Odoo DB on the proxy responsible for receiving data (via requests from web-services).
  6. - An edi_proxy_user has a unique identification on a specific format (for example, the vat for Peppol) which
  7. allows to identify him when receiving a document addressed to him. It is linked to a specific company on a specific
  8. Odoo database.
  9. - Encryption features allows to decrypt all the user's data when receiving it from the proxy.
  10. - Authentication offers an additionnal level of security to avoid impersonification, in case someone gains to the user's database.
  11. """,
  12. 'version': '1.0',
  13. 'category': 'Accounting/Accounting',
  14. 'depends': ['account_edi'],
  15. 'external_dependencies': {
  16. 'python': ['cryptography']
  17. },
  18. 'data': [
  19. 'security/ir.model.access.csv',
  20. 'security/account_edi_proxy_client_security.xml',
  21. 'views/account_edi_proxy_user_views.xml',
  22. ],
  23. 'installable': True,
  24. 'license': 'LGPL-3',
  25. 'post_init_hook': '_create_demo_config_param',
  26. }