__manifest__.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Saudi Arabia - E-invoicing',
  5. 'icon': '/l10n_sa/static/description/icon.png',
  6. 'version': '0.1',
  7. 'depends': [
  8. 'account_edi_ubl_cii',
  9. 'account_debit_note',
  10. 'l10n_sa',
  11. 'base_vat'
  12. ],
  13. 'author': 'Odoo',
  14. 'summary': """
  15. E-Invoicing, Universal Business Language
  16. """,
  17. 'description': """
  18. E-invoice implementation for the Kingdom of Saudi Arabia
  19. """,
  20. 'category': 'Accounting/Localizations/EDI',
  21. 'license': 'LGPL-3',
  22. 'data': [
  23. 'security/ir.model.access.csv',
  24. 'data/account_edi_format.xml',
  25. 'data/ubl_21_zatca.xml',
  26. 'data/res_country_data.xml',
  27. 'wizard/l10n_sa_edi_otp_wizard.xml',
  28. 'views/account_tax_views.xml',
  29. 'views/account_journal_views.xml',
  30. 'views/res_partner_views.xml',
  31. 'views/res_company_views.xml',
  32. 'views/res_config_settings_view.xml',
  33. 'views/report_invoice.xml',
  34. ],
  35. 'demo': [
  36. 'demo/demo_company.xml',
  37. ],
  38. 'assets': {
  39. 'web.assets_backend': [
  40. 'l10n_sa_edi/static/src/scss/form_view.scss',
  41. ]
  42. }
  43. }