pos_kds_fix/__manifest__.py

32 lines
1.3 KiB
Python

# -*- coding: utf-8 -*-
{
'name': 'POS KDS Stage Reset Fix',
'summary': 'Fix KDS bug: completed items stage reset when new items are ordered for the same table',
'description': """
Fix for Preparation Display (Kitchen Display System) bug:
When a table already has items in Completed/Done stage on the KDS, and the customer
adds a new item, the previously completed items were incorrectly reset back to
"To Prepare" stage. This module prevents that regression by preserving the stage
and todo status of previously processed prep order lines.
""",
'author': 'Suherdy Yacob',
'license': 'GPL-3',
'website': '',
'category': 'Sales/Point of Sale',
'version': '19.0.1.0.0',
'depends': ['pos_enterprise'],
'data': [],
'assets': {
'pos_preparation_display.assets': [
'pos_kds_fix/static/src/app/components/orderline/orderline_patch.js',
'pos_kds_fix/static/src/app/components/order/order_patch.js',
'pos_kds_fix/static/src/app/components/order/order_patch.xml',
'pos_kds_fix/static/src/app/components/preparation_display/preparation_display_patch.js',
'pos_kds_fix/static/src/app/components/preparation_display/preparation_display_patch.xml',
],
},
'installable': True,
'auto_install': False,
}