Revision b2d4ba3d
Von Moritz Bunkus vor fast 14 Jahren hinzugefügt
bin/mozilla/wh.pl | ||
---|---|---|
176 | 176 |
"ean" => $form->{ean}, |
177 | 177 |
"description" => $form->{description}); |
178 | 178 |
|
179 |
$form->show_generic_error($locale->text("The selected warehouse is empty.")) if (0 == scalar(@contents)); |
|
179 |
if (0 == scalar(@contents)) { |
|
180 |
$form->show_generic_error($locale->text("The selected warehouse is empty, or no stocked items where found that match the filter settings.")); |
|
181 |
} |
|
180 | 182 |
|
181 | 183 |
my $all_units = AM->retrieve_units(\%myconfig, $form); |
182 | 184 |
|
Auch abrufbar als: Unified diff
Fehlermeldung "Lager ist leer" bei Umlagern/Entnahme leichter verständlich gemacht.