__manifest__.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. # Thanks to Landoo and the Spanish community
  4. # Specially among others Aritz Olea, Luis Salvatierra, Josean Soroa
  5. {
  6. 'name': "Spain - TicketBAI",
  7. 'version': '1.0',
  8. 'category': 'Accounting/Localizations/EDI',
  9. 'application': False,
  10. 'description': """
  11. This module sends invoices and vendor bills to the "Diputaciones
  12. Forales" of Araba/Álava, Bizkaia and Gipuzkoa.
  13. Invoices and bills get converted to XML and regularly sent to the
  14. Basque government servers which provides them with a unique identifier.
  15. A hash chain ensures the continuous nature of the invoice/bill
  16. sequences. QR codes are added to emitted (sent/printed) invoices,
  17. bills and tickets to allow anyone to check they have been declared.
  18. You need to configure your certificate and the tax agency.
  19. """,
  20. 'depends': [
  21. 'l10n_es_edi_sii',
  22. ],
  23. 'data': [
  24. 'data/account_edi_data.xml',
  25. 'data/template_invoice.xml',
  26. 'data/template_LROE_bizkaia.xml',
  27. 'views/account_move_view.xml',
  28. 'views/report_invoice.xml',
  29. 'views/res_config_settings_views.xml',
  30. 'views/res_company_views.xml',
  31. 'wizards/account_move_reversal_views.xml',
  32. ],
  33. 'demo': [
  34. 'demo/demo_res_partner.xml',
  35. 'demo/demo_company.xml',
  36. ],
  37. 'license': 'LGPL-3',
  38. }