Revision f27b1f48
Von Sven Schöling vor etwa 4 Jahren hinzugefügt
SL/Helper/Inventory.pm | ||
---|---|---|
152 | 152 |
sub allocate { |
153 | 153 |
my (%params) = @_; |
154 | 154 |
|
155 |
die SL::X::Inventory::Allocation->new( |
|
156 |
error => 'allocate needs a part', |
|
157 |
msg => t8("Method allocate needs the parameter 'part'"), |
|
158 |
) unless $params{part}; |
|
159 |
die SL::X::Inventory::Allocation->new( |
|
160 |
error => 'allocate needs a qty', |
|
161 |
msg => t8("Method allocate needs the parameter 'qty'"), |
|
162 |
) unless $params{qty}; |
|
155 |
croak('allocate needs a qty') unless $params{part}; |
|
156 |
croak('allocate needs a qty') unless $params{qty}; |
|
163 | 157 |
|
164 | 158 |
my $part = $params{part}; |
165 | 159 |
my $qty = $params{qty}; |
locale/de/all | ||
---|---|---|
1963 | 1963 |
'Meta tag keywords' => 'Metatag Keywords', |
1964 | 1964 |
'Meta tag title' => 'Metatag Titel', |
1965 | 1965 |
'Method' => 'Verfahren', |
1966 |
'Method allocate needs the parameter \'part\'' => 'Es fehlt der Parameter \'part\'', |
|
1967 |
'Method allocate needs the parameter \'qty\'' => 'Es fehlt der Parameter \'qty\' oder die Menge ist 0', |
|
1968 | 1966 |
'Microfiche' => 'Mikrofilm', |
1969 | 1967 |
'Minimum Amount' => 'Mindestbetrag', |
1970 | 1968 |
'Miscellaneous' => 'Verschiedenes', |
Auch abrufbar als: Unified diff
Inventory Helper: Fehlerhaften Aufruf mit croak abbrechen statt mit Excception