23 lines
795 B
Python
23 lines
795 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'POS Lock Sent Product',
|
|
'version': '1.0',
|
|
'category': 'Sales/Point of Sale',
|
|
'summary': 'Lock product deletion/reduction after order is sent to kitchen',
|
|
'description': """
|
|
This module prevents cashiers from deleting or reducing the quantity of products that have already been sent to the kitchen.
|
|
Only users with the 'Area Manager' or 'Store Manager' role can perform these actions.
|
|
""",
|
|
'author': "Suherdy Yacob",
|
|
'depends': ['point_of_sale', 'pos_hr', 'pos_employee_role', 'pos_restaurant', 'stock'],
|
|
'data': [],
|
|
'assets': {
|
|
'point_of_sale._assets_pos': [
|
|
'pos_lock_sent_product/static/src/app/**/*',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': False,
|
|
'license': 'LGPL-3',
|
|
}
|