__manifest__.py 823 B

12345678910111213141516171819202122232425262728
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Timesheet when on Time Off',
  5. 'version': '1.0',
  6. 'category': 'Human Resources',
  7. 'summary': 'Schedule timesheet when on time off',
  8. 'description': """
  9. Bridge module to integrate leaves in timesheet
  10. ================================================
  11. This module allows to automatically log timesheets when employees are
  12. on leaves. Project and task can be configured company-wide.
  13. """,
  14. 'depends': ['hr_timesheet', 'hr_holidays'],
  15. 'data': [
  16. 'views/res_config_settings_views.xml',
  17. 'views/hr_holidays_views.xml',
  18. 'security/ir.model.access.csv',
  19. ],
  20. 'installable': True,
  21. 'auto_install': True,
  22. 'post_init_hook': 'post_init',
  23. 'license': 'LGPL-3',
  24. }