__manifest__.py 767 B

12345678910111213141516171819202122232425262728
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Time Off in Payslips',
  5. 'version': '1.0',
  6. 'category': 'Human Resources/Payroll',
  7. 'sequence': 95,
  8. 'summary': 'Manage Time Off in Payslips',
  9. 'description': """
  10. Manage Time Off in Payslips
  11. ============================
  12. This application allows you to integrate time off in payslips.
  13. """,
  14. 'depends': ['hr_holidays', 'hr_work_entry_contract'],
  15. 'data': [
  16. 'data/hr_payroll_holidays_data.xml',
  17. 'views/hr_leave_views.xml',
  18. ],
  19. 'demo': ['data/hr_payroll_holidays_demo.xml'],
  20. 'installable': True,
  21. 'auto_install': True,
  22. 'post_init_hook': '_validate_existing_work_entry',
  23. 'license': 'LGPL-3',
  24. }