__manifest__.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Testing the Import/Export invoices with UBL/CII",
  4. 'version': '1.0',
  5. 'category': 'Hidden/Tests',
  6. 'description': """
  7. This module tests the module 'account_edi_ubl_cii', it is separated since dependencies to some
  8. localizations were required. Its name begins with 'l10n' to not overload runbot.
  9. The test files are separated by sources, they were taken from:
  10. * the factur-x doc (form the FNFE)
  11. * the peppol-bis-invoice-3 doc (the github repository: https://github.com/OpenPEPPOL/peppol-bis-invoice-3/tree/master/rules/examples contains examples)
  12. * odoo, these files pass all validation tests (using ecosio or the FNFE validator)
  13. We test that the external examples are correctly imported (currency, total amount and total tax match).
  14. We also test that generating xml from odoo with given parameters gives exactly the same xml as the expected,
  15. valid ones.
  16. """,
  17. 'depends': [
  18. 'l10n_generic_coa',
  19. 'account_edi_ubl_cii',
  20. 'l10n_fr',
  21. 'l10n_be',
  22. 'l10n_de',
  23. 'l10n_nl',
  24. 'l10n_au',
  25. ],
  26. 'installable': True,
  27. 'application': False,
  28. 'auto_install': False,
  29. 'license': 'LGPL-3',
  30. }