hr_multi_company_employee/__manifest__.py
2026-05-13 16:54:22 +07:00

21 lines
686 B
Python

{
'name': 'Multi-Branch Employee Access',
'version': '1.0',
'category': 'Human Resources',
'summary': 'Allows employees to be associated with multiple branch companies',
'description': """
This module overrides the standard Odoo restriction of one company per employee.
It allows an employee to be associated with multiple branch companies.
""",
'author': 'Antigravity',
'depends': ['hr', 'pos_hr', 'hr_attendance'],
'data': [
'security/hr_security.xml',
'security/hr_attendance_security.xml',
'views/hr_employee_views.xml',
],
'installable': True,
'application': False,
'license': 'LGPL-3',
}