2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'Employee Contracts',
|
2018-01-16 12:05:52 +01:00
|
|
|
'author' : 'Odoo S.A',
|
2018-01-16 06:58:15 +01:00
|
|
|
'version': '1.0',
|
|
|
|
'category': 'Human Resources',
|
|
|
|
'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.
|
|
|
|
""",
|
2018-01-16 11:34:37 +01:00
|
|
|
'website': 'https://flectrahq.com/page/employees',
|
2018-01-16 06:58:15 +01:00
|
|
|
'depends': ['hr'],
|
|
|
|
'data': [
|
|
|
|
'security/ir.model.access.csv',
|
|
|
|
'data/hr_contract_data.xml',
|
|
|
|
'views/hr_contract_views.xml',
|
|
|
|
],
|
|
|
|
'demo': [],
|
|
|
|
'installable': True,
|
|
|
|
'auto_install': False,
|
|
|
|
}
|