12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- # -*- coding: utf-8 -*-
- # Part of Odoo. See LICENSE file for full copyright and licensing details.
- {
- 'name': 'Employee Contracts',
- 'version': '1.0',
- 'category': 'Human Resources/Contracts',
- 'sequence': 335,
- 'description': """
- Add all information on the employee form to manage contracts.
- =============================================================
- * Contract
- * Place of Birth,
- * Medical Examination Date
- * Company Vehicle
- You can assign several contracts per employee.
- """,
- 'website': 'https://www.odoo.com/app/employees',
- 'depends': ['hr'],
- 'data': [
- 'security/security.xml',
- 'security/ir.model.access.csv',
- 'data/hr_contract_data.xml',
- 'report/hr_contract_history_report_views.xml',
- 'views/hr_contract_views.xml',
- 'views/hr_employee_views.xml',
- 'views/hr_employee_public_views.xml',
- 'views/resource_calendar_views.xml',
- 'wizard/hr_departure_wizard_views.xml',
- ],
- 'demo': ['data/hr_contract_demo.xml'],
- 'installable': True,
- 'application': True,
- 'assets': {
- 'web.assets_backend': [
- 'hr_contract/static/src/**/*',
- ],
- },
- 'license': 'LGPL-3',
- }
|