From 68fad06745470a76665ca7155df20ed61ee0b593 Mon Sep 17 00:00:00 2001 From: lLefevre Date: Fri, 28 Sep 2012 09:09:57 +0000 Subject: [PATCH] [-] BO : fix #PSCFV-4424 git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17604 b9a71923-0436-4b27-9f14-aed3839534dd --- 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'])) {