Revision 74a70e2a
Von Sven Schöling vor fast 11 Jahren hinzugefügt
SL/Controller/Inventory.pm | ||
---|---|---|
45 | 45 |
my ($self) = @_; |
46 | 46 |
|
47 | 47 |
my $qty = $::form->parse_amount(\%::myconfig, $::form->{qty}); |
48 |
|
|
49 |
if ($qty < 0) { |
|
48 |
if (!$qty) { |
|
49 |
flash_later('error', t8('Cannot stock without amount')); |
|
50 |
} elsif ($qty < 0) { |
|
50 | 51 |
flash_later('error', t8('Cannot stock negative amounts')); |
51 | 52 |
} else { |
52 | 53 |
# do stock |
Auch abrufbar als: Unified diff
Einlagern: Auch Nullmengen nicht erlauben