Revision 7c2abce4
Von Bernd Blessmann vor etwa 15 Jahren hinzugefügt
lxo-import/parts_import.php | ||
---|---|---|
$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 */
|
Auch abrufbar als: Unified diff
Dezimalkomma bei Gewicht und Mindestbestand bei Warenimport
in Dezimalpunkt umwandeln.
Fix für Bug 1341.