Dezimalkomma bei Gewicht und Mindestbestand bei Warenimport
authorBernd Blessmann <bibi@online.de>
Fri, 5 Mar 2010 11:37:27 +0000 (12:37 +0100)
committerBernd Blessmann <bibi@online.de>
Fri, 5 Mar 2010 11:37:27 +0000 (12:37 +0100)
in Dezimalpunkt umwandeln.

Fix für Bug 1341.

lxo-import/parts_import.php

index 9743f43..5a02ee4 100644 (file)
@@ -379,8 +379,8 @@ function import_parts($db, $file, $trenner, $trennzeichen, $fields, $check, $ins
         $description = addslashes($description);
 
         // rop und weight müssen null oder Zahl sein
-        if ($zeile[$fldpos["rop"]]) $rop = 1 * $zeile[$fldpos["rop"]];
-        if ($zeile[$fldpos["weight"]]) $weight = 1 * $zeile[$fldpos["weight"]];
+        if ($zeile[$fldpos["rop"]]) $rop = 1 * str_replace(",", ".",$zeile[$fldpos["rop"]]);
+        if ($zeile[$fldpos["weight"]]) $weight = 1 * str_replace(",", ".", $zeile[$fldpos["weight"]]);
 
         if (getPartsid($db,trim($zeile[$fldpos["partnumber"]]))) {
             /* es gibt die Artikelnummer */