__manifest__.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Import/Export electronic invoices with UBL/CII",
  4. 'version': '1.0',
  5. 'category': 'Accounting/Accounting',
  6. 'description': """
  7. Electronic invoicing module
  8. ===========================
  9. Allows to export and import formats: E-FFF, UBL Bis 3, EHF3, NLCIUS, Factur-X (CII), XRechnung (UBL).
  10. When generating the PDF on the invoice, the PDF will be embedded inside the xml for all UBL formats. This allows the
  11. receiver to retrieve the PDF with only the xml file. Note that **EHF3 is fully implemented by UBL Bis 3** (`reference
  12. <https://anskaffelser.dev/postaward/g3/spec/current/billing-3.0/norway/#_implementation>`_).
  13. The formats can be chosen from the journal (Journal > Advanced Settings) linked to the invoice.
  14. Note that E-FFF, NLCIUS and XRechnung (UBL) are only available for Belgian, Dutch and German companies,
  15. respectively. UBL Bis 3 is only available for companies which country is present in the `EAS list
  16. <https://docs.peppol.eu/poacc/billing/3.0/codelist/eas/>`_.
  17. Note also that in order for Chorus Pro to automatically detect the "PDF/A-3 (Factur-X)" format, you need to activate
  18. the "Factur-X PDF/A-3" option on the journal. This option will also validate the xml against the Factur-X and Chorus
  19. Pro rules and show the errors.
  20. """,
  21. 'depends': ['account_edi'],
  22. 'data': [
  23. 'data/account_edi_data.xml',
  24. 'data/cii_22_templates.xml',
  25. 'data/ubl_20_templates.xml',
  26. 'data/ubl_21_templates.xml',
  27. ],
  28. 'installable': True,
  29. 'application': False,
  30. 'auto_install': True,
  31. 'license': 'LGPL-3',
  32. }