Revision 400e3ab0
Von Moritz Bunkus vor mehr als 14 Jahren hinzugefügt
bin/mozilla/do.pl | ||
---|---|---|
359 | 359 |
my $rows = scalar @{ $form->{item_list} }; |
360 | 360 |
|
361 | 361 |
if ($rows) { |
362 |
$form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
|
|
362 |
$form->{"qty_$i"} = 1 unless $form->parse_amount(\%myconfig, $form->{"qty_$i"});
|
|
363 | 363 |
|
364 | 364 |
if ($rows > 1) { |
365 | 365 |
|
bin/mozilla/ir.pl | ||
---|---|---|
463 | 463 |
my $rows = scalar @{ $form->{item_list} }; |
464 | 464 |
|
465 | 465 |
if ($rows) { |
466 |
$form->{"qty_$i"} = 1 unless ($form->{"qty_$i"});
|
|
466 |
$form->{"qty_$i"} = 1 unless $form->parse_amount(\%myconfig, $form->{"qty_$i"});
|
|
467 | 467 |
|
468 | 468 |
if ($rows > 1) { |
469 | 469 |
|
Auch abrufbar als: Unified diff
Beim Hinzufügen von Artikeln Menge auf 1 setzen, falls 0
Fix für Bug 1250.