__manifest__.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Italy - E-invoicing',
  5. 'icon': '/l10n_it/static/description/icon.png',
  6. 'version': '0.3',
  7. 'depends': [
  8. 'l10n_it',
  9. # Although account_edi is a dependency of account_edi_proxy_client,
  10. # it is here because it's in the auto-install
  11. 'account_edi',
  12. 'account_edi_proxy_client',
  13. ],
  14. 'auto_install': ['l10n_it', 'account_edi'],
  15. 'author': 'Odoo',
  16. 'description': """
  17. E-invoice implementation
  18. """,
  19. 'category': 'Accounting/Localizations/EDI',
  20. 'website': 'http://www.odoo.com/',
  21. 'data': [
  22. 'security/ir.model.access.csv',
  23. 'data/account_edi_data.xml',
  24. 'data/invoice_it_template.xml',
  25. 'data/invoice_it_simplified_template.xml',
  26. 'data/ir_cron.xml',
  27. 'views/res_config_settings_views.xml',
  28. 'views/l10n_it_view.xml',
  29. ],
  30. 'demo': [
  31. 'data/account_invoice_demo.xml',
  32. ],
  33. 'post_init_hook': '_l10n_it_edi_post_init',
  34. 'license': 'LGPL-3',
  35. }