pos_reprint_receipt/__manifest__.py
2026-06-12 11:11:20 +07:00

24 lines
739 B
Python

# -*- coding: utf-8 -*-
{
'name': 'POS Reprint Receipt from Backend',
'version': '1.0.0',
'category': 'Point of Sale',
'summary': 'Add button to reprint POS order receipt/bill from the backend form view.',
'description': """
This module adds a "Reprint Receipt" button on the backend POS Order form view.
When clicked, it opens a QWeb HTML report styled as an 80mm thermal receipt, mimicking the layout of the checkout receipt.
""",
'author': 'Suherdy Yacob',
'depends': [
'point_of_sale',
],
'data': [
'report/pos_order_report.xml',
'views/pos_order_views.xml',
],
'installable': True,
'application': False,
'auto_install': False,
'license': 'LGPL-3',
}