24 lines
710 B
Python
24 lines
710 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
"name": "POS Order Line Discount",
|
|
"version": "1.0",
|
|
"category": "Point of Sale",
|
|
"summary": "Convert order-level discounts to line-level discounts in POS",
|
|
"description": """
|
|
This module converts order-level discounts (like global discount and loyalty program reward discount)
|
|
to order line discounts in the Point of Sale.
|
|
""",
|
|
"depends": ["point_of_sale", "pos_loyalty"],
|
|
"data": [
|
|
"views/pos_config_views.xml",
|
|
],
|
|
"assets": {
|
|
"point_of_sale._assets_pos": [
|
|
'pos_order_line_discount/static/src/**/*',
|
|
],
|
|
},
|
|
"installable": True,
|
|
"auto_install": False,
|
|
"license": "LGPL-3"
|
|
}
|