flectra/addons/hr_contract/__manifest__.py

32 lines
851 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
'name': 'Employee Contracts',
'author' : 'Odoo S.A',
'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.
""",
'website': 'https://flectrahq.com/page/employees',
'depends': ['hr'],
'data': [
'security/contract_security.xml',
'security/ir.model.access.csv',
'data/hr_contract_data.xml',
'views/hr_contract_views.xml',
],
'demo': [],
'installable': True,
'auto_install': False,
}