Inventory Helper: Fehlerhaften Aufruf mit croak abbrechen statt mit Excception
authorSven Schöling <s.schoeling@googlemail.com>
Fri, 27 Nov 2020 16:25:06 +0000 (17:25 +0100)
committerSven Schöling <s.schoeling@googlemail.com>
Fri, 27 Nov 2020 16:37:27 +0000 (17:37 +0100)
SL/Helper/Inventory.pm
locale/de/all

index eb18305..11857fe 100644 (file)
@@ -152,14 +152,8 @@ sub get_onhand {
 sub allocate {
   my (%params) = @_;
 
-  die SL::X::Inventory::Allocation->new(
-    error => 'allocate needs a part',
-    msg => t8("Method allocate needs the parameter 'part'"),
-  ) unless $params{part};
-  die SL::X::Inventory::Allocation->new(
-    error => 'allocate needs a qty',
-    msg => t8("Method allocate needs the parameter 'qty'"),
-  ) unless $params{qty};
+  croak('allocate needs a qty') unless $params{part};
+  croak('allocate needs a qty') unless $params{qty};
 
   my $part = $params{part};
   my $qty  = $params{qty};
index 202108d..4f3384a 100755 (executable)
@@ -1963,8 +1963,6 @@ $self->{texts} = {
   'Meta tag keywords'           => 'Metatag Keywords',
   'Meta tag title'              => 'Metatag Titel',
   'Method'                      => 'Verfahren',
-  'Method allocate needs the parameter \'part\'' => 'Es fehlt der Parameter \'part\'',
-  'Method allocate needs the parameter \'qty\'' => 'Es fehlt der Parameter \'qty\' oder die Menge ist 0',
   'Microfiche'                  => 'Mikrofilm',
   'Minimum Amount'              => 'Mindestbetrag',
   'Miscellaneous'               => 'Verschiedenes',