Skip to content
Snippets Groups Projects
Commit c9f2d497 authored by roen-odoo's avatar roen-odoo
Browse files

[FIX] pos_discount: stop applying discount to tips


Current behavior:
When adding a tips to an order, then applying a global discount. The
discount is applied to the tips when it should not.

Steps to reproduce:
- Open POS
- Add a product to the order
- Add a tips to the order
- Apply a global discount
- The discount is calculated on the tips and the products

opw-3271886

closes odoo/odoo#120462

Signed-off-by: default avatarJoseph Caburnay (jcb) <jcb@odoo.com>
parent efd79921
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ odoo.define('pos_discount.DiscountButton', function(require) {
// That is, the use case of products with more than one tax is supported.
let tax_ids_array = tax_ids.split(',').filter(id => id !== '').map(id => Number(id));
let baseToDiscount = order.calculate_base_amount(tax_ids_array, lines.filter(ll => !ll.reward_id));
let baseToDiscount = order.calculate_base_amount(tax_ids_array, lines.filter(ll => !ll.reward_id && (!this.env.pos.config.tip_product_id || ll.product.id !== this.env.pos.config.tip_product_id[0])));
// We add the price as manually set to avoid recomputation when changing customer.
let discount = - pc / 100.0 * baseToDiscount;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment