pos_employee_role/__manifest__.py

25 lines
693 B
Python

# -*- coding: utf-8 -*-
{
'name': 'POS Employee Role',
'version': '1.0',
'category': 'Sales/Point of Sale',
'summary': 'Add roles to employees for POS permissions',
'description': """
This module adds a role to employees for Point of Sale.
Roles: Server, Cashier, Outlet Manager, Area Manager.
These roles are used to restrict POS UI features dynamically.
""",
'depends': ['point_of_sale', 'pos_hr'],
'data': [
'views/hr_employee_views.xml',
],
'assets': {
'point_of_sale._assets_pos': [
'pos_employee_role/static/src/app/**/*',
],
},
'installable': True,
'application': False,
'license': 'LGPL-3',
}