From 75d3ea6208a8495610e1ba9ade93eee057222dc7 Mon Sep 17 00:00:00 2001 From: David Monjoie Date: Mon, 13 Oct 2014 16:42:53 +0200 Subject: [PATCH] [FIX] point_of_sale: fixed display of untaxed amount in sales lines report --- addons/point_of_sale/report/pos_lines.rml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/point_of_sale/report/pos_lines.rml b/addons/point_of_sale/report/pos_lines.rml index 1ed8e33eede..1b6774578c0 100644 --- a/addons/point_of_sale/report/pos_lines.rml +++ b/addons/point_of_sale/report/pos_lines.rml @@ -202,7 +202,7 @@ Net Total : - [[ formatLang(o.amount_total, currency_obj=o.pricelist_id.currency_id) ]] + [[ formatLang(o.amount_total - o.amount_tax, currency_obj=o.pricelist_id.currency_id) ]] @@ -228,7 +228,7 @@ Total: - [[ formatLang(o.amount_total + o.amount_tax, currency_obj=o.pricelist_id.currency_id) ]] + [[ formatLang(o.amount_total, currency_obj=o.pricelist_id.currency_id) ]]