Voiceplan Zone import: Converting , to . in zone price
This commit is contained in:
@@ -105,8 +105,8 @@ class Voiceplan extends mfBaseModel {
|
||||
|
||||
$name = trim($csv[0]);
|
||||
$extref = trim($csv[1]);
|
||||
$price_default = trim($csv[4]);
|
||||
$price_special = trim($csv[7]);
|
||||
$price_default = str_replace(",",".", trim($csv[4]));
|
||||
$price_special = str_replace(",",".", trim($csv[7]));
|
||||
|
||||
$price_ek = $price_default;
|
||||
if(is_numeric($price_special) && $price_special) {
|
||||
|
||||
Reference in New Issue
Block a user