pos_custom_receipt/__manifest__.py

30 lines
1.2 KiB
Python

{
'name': 'POS Custom Receipt',
'version': '1.0',
'category': 'Sales/Point of Sale',
'summary': 'Customizes the POS receipt to hide and change certain information.',
'author': 'Abdul Aziz Amrullah',
'description': """
POS Custom Receipt
==================
This module customizes the printed receipt in the Point of Sale module to match specific business requirements.
Key Features:
- **Tracking Number**: Hides the tracking number in the receipt header.
- **Ticket Prefix**: Changes the "Ticket" prefix to "NO" in the header reference.
- **Address & Email**: Hides the company/branch address and email in the receipt footer.
- **Pro Forma Receipt**: Changes the default "Pro forma receipt" text to "!!! INI ADALAH TAGIHAN SEMENTARA, BUKAN BUKTI PEMBAYARAN !!!" for early/unpaid bills, and explicitly hides this text when printing a Basic Receipt.
- **Odoo Branding**: Removes the "Powered by Odoo" text in the receipt footer.
""",
'depends': ['point_of_sale', 'pos_restaurant'],
'data': [],
'assets': {
'point_of_sale._assets_pos': [
'pos_custom_receipt/static/src/xml/receipt_overrides.xml',
],
},
'installable': True,
'application': False,
'license': 'LGPL-3',
}