__manifest__.py 700 B

12345678910111213141516171819202122232425262728
  1. #-*- coding:utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Work Entries',
  5. 'category': 'Human Resources/Employees',
  6. 'sequence': 39,
  7. 'summary': 'Manage work entries',
  8. 'installable': True,
  9. 'depends': [
  10. 'hr',
  11. ],
  12. 'data': [
  13. 'security/hr_work_entry_security.xml',
  14. 'security/ir.model.access.csv',
  15. 'data/hr_work_entry_data.xml',
  16. 'views/hr_work_entry_views.xml',
  17. 'views/hr_employee_views.xml',
  18. 'views/resource_calendar_views.xml',
  19. ],
  20. 'assets': {
  21. 'web.assets_backend': [
  22. 'hr_work_entry/static/**/*',
  23. ],
  24. },
  25. 'license': 'LGPL-3',
  26. }