From 5ab731f16d192c66332d1879fb7c8fd9abfd5d7f Mon Sep 17 00:00:00 2001 From: lLefevre Date: Fri, 28 Sep 2012 09:09:57 +0000 Subject: [PATCH] [-] BO : fix #PSCFV-4424 --- controllers/admin/AdminImportController.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/controllers/admin/AdminImportController.php b/controllers/admin/AdminImportController.php index 521e38290..38487b254 100644 --- a/controllers/admin/AdminImportController.php +++ b/controllers/admin/AdminImportController.php @@ -1634,6 +1634,11 @@ class AdminImportControllerCore extends AdminController $info['minimal_quantity'] = isset($info['minimal_quantity']) && $info['minimal_quantity'] ? (int)$info['minimal_quantity'] : 1; + $info['wholesale_price'] = str_replace(',', '.', $info['wholesale_price']); + $info['price'] = str_replace(',', '.', $info['price']); + $info['ecotax'] = str_replace(',', '.', $info['ecotax']); + $info['weight'] = str_replace(',', '.', $info['weight']); + // if a reference is specified for this product, get the associate id_product_attribute to UPDATE if (isset($info['reference']) && !empty($info['reference'])) {