From 8f3ead5cfc7b0182d169f753e403cf7d64f7881d Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Tue, 22 May 2012 19:25:51 +0200 Subject: [PATCH] Fix: round ttc with 2 decimal --- htdocs/product/admin/product_tools.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/product/admin/product_tools.php b/htdocs/product/admin/product_tools.php index db47e8cfdf8..a87eded2992 100644 --- a/htdocs/product/admin/product_tools.php +++ b/htdocs/product/admin/product_tools.php @@ -70,7 +70,7 @@ if ($action == 'convert') { if ($price_base_type == 'TTC') { - $newprice=price2num($object->price_ttc,'MU'); + $newprice=price2num($object->price_ttc,'2'); } else {