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),