21 lines
725 B
Python
21 lines
725 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': 'Suherdy Yacob',
|
|
'depends': ['hr', 'pos_hr', 'hr_attendance', 'product', 'stock', 'stock_account'],
|
|
'data': [
|
|
'security/hr_security.xml',
|
|
'security/hr_attendance_security.xml',
|
|
'views/hr_employee_views.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
'license': 'LGPL-3',
|
|
}
|