__openerp__.py 541 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': 'Eiru hr Utility',
  4. 'version': '1.0',
  5. # 'description': """
  6. #
  7. # Mejorar usabilidad en la nómina del empleado (Adelantos/Faltas)
  8. #
  9. # """,
  10. 'author': 'Adrielso Kunert',
  11. 'category': 'hr',
  12. 'depends': ['hr', 'base', 'hr_payroll', 'eiru_num2word'],
  13. 'data': [
  14. 'views/templates.xml',
  15. 'views/eiru_payslip_utility.xml',
  16. ],
  17. 'qweb': [
  18. 'static/src/xml/*.xml',
  19. 'static/src/xml/modal/*.xml',
  20. ],
  21. 'installable': True,
  22. 'auto_install': False,
  23. }