Revision 7c2abce4
Von Bernd Blessmann vor fast 15 Jahren hinzugefügt
lxo-import/parts_import.php | ||
---|---|---|
379 | 379 |
$description = addslashes($description); |
380 | 380 |
|
381 | 381 |
// rop und weight m?ssen null oder Zahl sein |
382 |
if ($zeile[$fldpos["rop"]]) $rop = 1 * $zeile[$fldpos["rop"]];
|
|
383 |
if ($zeile[$fldpos["weight"]]) $weight = 1 * $zeile[$fldpos["weight"]];
|
|
382 |
if ($zeile[$fldpos["rop"]]) $rop = 1 * str_replace(",", ".",$zeile[$fldpos["rop"]]);
|
|
383 |
if ($zeile[$fldpos["weight"]]) $weight = 1 * str_replace(",", ".", $zeile[$fldpos["weight"]]);
|
|
384 | 384 |
|
385 | 385 |
if (getPartsid($db,trim($zeile[$fldpos["partnumber"]]))) { |
386 | 386 |
/* es gibt die Artikelnummer */ |
Auch abrufbar als: Unified diff
Dezimalkomma bei Gewicht und Mindestbestand bei Warenimport
in Dezimalpunkt umwandeln.
Fix für Bug 1341.