From 96f68be41dca6a1d476eb62c1f4ba54d94bb484a Mon Sep 17 00:00:00 2001 From: oscar Date: Thu, 20 May 2021 15:08:27 -0500 Subject: [PATCH] Add unit price w tax to res --- sale.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sale.py b/sale.py index ba99d44..27b456f 100644 --- a/sale.py +++ b/sale.py @@ -134,10 +134,10 @@ class Sale(metaclass=PoolMeta): percent_commission = price_line.price_list.percent_commission #ADD TAXES - taxes_ids = [t.id for t in product.customer_taxes_used] + # taxes_ids = [t.id for t in product.customer_taxes_used] # res = cls.get_price_with_tax([line], ['amount_w_tax', 'unit_price_w_tax']) res = { - # 'unit_price_w_tax': math.ceil(res['unit_price_w_tax'][None]), + 'unit_price_w_tax': math.ceil(product.sale_price_taxed), # 'amount_w_tax': math.ceil(res['amount_w_tax'][None]), # 'taxes': [[('add'), taxes_ids]], 'unit_price': math.ceil(unit_price),