pos_lock_sent_product/__manifest__.py
2026-05-07 15:33:20 +07:00

23 lines
749 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' role can perform these actions.
""",
'author': "Suherdy Yacob",
'depends': ['point_of_sale', 'pos_hr', 'pos_employee_role'],
'data': [],
'assets': {
'point_of_sale._assets_pos': [
'pos_lock_sent_product/static/src/app/**/*',
],
},
'installable': True,
'application': False,
'license': 'LGPL-3',
}