__manifest__.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Employee Contracts',
  5. 'version': '1.0',
  6. 'category': 'Human Resources/Contracts',
  7. 'sequence': 335,
  8. 'description': """
  9. Add all information on the employee form to manage contracts.
  10. =============================================================
  11. * Contract
  12. * Place of Birth,
  13. * Medical Examination Date
  14. * Company Vehicle
  15. You can assign several contracts per employee.
  16. """,
  17. 'website': 'https://www.odoo.com/app/employees',
  18. 'depends': ['hr'],
  19. 'data': [
  20. 'security/security.xml',
  21. 'security/ir.model.access.csv',
  22. 'data/hr_contract_data.xml',
  23. 'report/hr_contract_history_report_views.xml',
  24. 'views/hr_contract_views.xml',
  25. 'views/hr_employee_views.xml',
  26. 'views/hr_employee_public_views.xml',
  27. 'views/resource_calendar_views.xml',
  28. 'wizard/hr_departure_wizard_views.xml',
  29. ],
  30. 'demo': ['data/hr_contract_demo.xml'],
  31. 'installable': True,
  32. 'application': True,
  33. 'assets': {
  34. 'web.assets_backend': [
  35. 'hr_contract/static/src/**/*',
  36. ],
  37. },
  38. 'license': 'LGPL-3',
  39. }