pos_shift_close/__manifest__.py
2026-03-20 15:18:52 +07:00

19 lines
726 B
Python

{
'name': 'POS Shift Close',
'version': '1.0',
'category': 'Sales/Point of Sale',
'summary': 'Bypass POS session close draft order validation for morning shift and transfer orders.',
'description': """
This module allows cashiers on the morning shift to close the POS session even if there are unpaid/draft orders.
Those pending orders will automatically be moved to the next session when it is opened.
The afternoon/evening shift will maintain the standard Odoo behavior (blocking closure if pending orders exist).
""",
'depends': ['point_of_sale'],
'data': [
'views/res_config_settings_views.xml',
],
'installable': True,
'application': False,
'license': 'LGPL-3',
}