You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
807 B

  1. # -*- coding: utf-8 -*-
  2. # © 2011 Raphaël Valyi, Renato Lima, Guewen Baconnier, Sodexis
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. {'name': 'Exception Rule',
  5. 'version': '10.0.2.0.1',
  6. 'category': 'Generic Modules',
  7. 'summary': """This module provide an abstract model to manage customizable
  8. exceptions to be applied on different models (sale order, invoice, ...)""",
  9. 'author': "Akretion, Sodexis, Camptocamp, Odoo Community Association (OCA)",
  10. 'website': 'http://www.akretion.com',
  11. 'depends': ['base_setup'],
  12. 'license': 'AGPL-3',
  13. 'data': [
  14. 'security/base_exception_security.xml',
  15. 'security/ir.model.access.csv',
  16. 'wizard/base_exception_confirm_view.xml',
  17. 'views/base_exception_view.xml',
  18. ],
  19. 'installable': True,
  20. 'pre_init_hook': 'pre_init_hook',
  21. }