32 lines
1.0 KiB
Python
32 lines
1.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'POS Closing Receipt Printer',
|
|
'version': '19.0.1.3.0',
|
|
'category': 'Point of Sale',
|
|
'summary': 'Print payment summary receipt when closing a POS session, with reprint from backend',
|
|
'description': """
|
|
Automatically prints a payment summary receipt when the POS session
|
|
is successfully closed. The receipt shows:
|
|
- POS Session name/number
|
|
- Cashier who performed the closing
|
|
- Total amount per payment method (Cash, BCA, BTN, etc.)
|
|
|
|
Also adds a "Reprint Closing Summary" button on the closed session
|
|
form view in the Odoo backend for easy reprinting.
|
|
""",
|
|
'author': 'Suherdy Yacob',
|
|
'depends': ['point_of_sale', 'pos_hr'],
|
|
'data': [
|
|
'report/pos_closing_summary_report.xml',
|
|
'views/pos_session_views.xml',
|
|
],
|
|
'assets': {
|
|
'point_of_sale._assets_pos': [
|
|
'pos_closing_receipt/static/src/app/**/*',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'application': False,
|
|
'license': 'LGPL-3',
|
|
}
|