26 lines
856 B
Python
26 lines
856 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'POS Reverse Downpayment',
|
|
'version': '1.0',
|
|
'category': 'Sales/Point of Sale',
|
|
'summary': 'Create Quotation from POS Cart and Zero-out Standard Items',
|
|
'description': """
|
|
This module allows cashiers to:
|
|
- Add standard items and a downpayment product to the POS cart
|
|
- When paying, convert the cart to a backend Quotation
|
|
- Keep standard items visible on POS receipt with price zeroed out
|
|
- Prevent stock moves for zero-priced standard items
|
|
""",
|
|
'depends': ['pos_sale', 'pos_restaurant'],
|
|
'data': [],
|
|
'assets': {
|
|
'point_of_sale._assets_pos': [
|
|
'pos_reverse_downpayment/static/src/overrides/models.js',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'application': False,
|
|
'license': 'LGPL-3',
|
|
}
|