__manifest__.py 760 B

12345678910111213141516171819202122232425262728
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Saudi Arabia - E-invoicing (Simplified)',
  5. 'icon': '/l10n_sa/static/description/icon.png',
  6. 'version': '0.1',
  7. 'depends': [
  8. 'l10n_sa_pos',
  9. 'l10n_sa_edi',
  10. ],
  11. 'author': 'Odoo',
  12. 'summary': """
  13. ZATCA E-Invoicing, support for PoS
  14. """,
  15. 'description': """
  16. E-invoice implementation for the Kingdom of Saudi Arabia (PoS)
  17. """,
  18. 'category': 'Accounting/Localizations/EDI',
  19. 'license': 'LGPL-3',
  20. 'assets': {
  21. 'point_of_sale.assets': [
  22. 'l10n_sa_edi_pos/static/src/js/pos_models.js',
  23. 'l10n_sa_edi_pos/static/src/js/PaymentScreen.js',
  24. ],
  25. }
  26. }