__manifest__.py 868 B

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