pos_closing_receipt/__manifest__.py
2026-05-21 20:30:54 +07:00

25 lines
789 B
Python

# -*- coding: utf-8 -*-
{
'name': 'POS Closing Receipt Printer',
'version': '19.0.1.0.0',
'category': 'Point of Sale',
'summary': 'Print payment summary receipt when closing a POS session',
'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.)
""",
'author': 'Suherdy Yacob',
'depends': ['point_of_sale', 'pos_hr'],
'assets': {
'point_of_sale._assets_pos': [
'pos_closing_receipt/static/src/app/**/*',
],
},
'installable': True,
'application': False,
'license': 'LGPL-3',
}