From: Moritz Bunkus Date: Wed, 3 Mar 2010 16:36:43 +0000 (+0100) Subject: Beim Hinzufügen von Artikeln Menge auf 1 setzen, falls 0 X-Git-Tag: release-2.6.1beta1~38^2~2 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=400e3ab01e7f8c3c1910921c086c3909529778d5;p=kivitendo-erp.git Beim Hinzufügen von Artikeln Menge auf 1 setzen, falls 0 Fix für Bug 1250. --- diff --git a/bin/mozilla/do.pl b/bin/mozilla/do.pl index 1c546e498..fa3be49a2 100644 --- a/bin/mozilla/do.pl +++ b/bin/mozilla/do.pl @@ -359,7 +359,7 @@ sub update_delivery_order { my $rows = scalar @{ $form->{item_list} }; if ($rows) { - $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"}); + $form->{"qty_$i"} = 1 unless $form->parse_amount(\%myconfig, $form->{"qty_$i"}); if ($rows > 1) { diff --git a/bin/mozilla/ir.pl b/bin/mozilla/ir.pl index 09ef5249c..042fd4be9 100644 --- a/bin/mozilla/ir.pl +++ b/bin/mozilla/ir.pl @@ -463,7 +463,7 @@ sub update { my $rows = scalar @{ $form->{item_list} }; if ($rows) { - $form->{"qty_$i"} = 1 unless ($form->{"qty_$i"}); + $form->{"qty_$i"} = 1 unless $form->parse_amount(\%myconfig, $form->{"qty_$i"}); if ($rows > 1) {