From a3be8322f450ab8d60653e54bdbd28273cbd1030 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Fri, 18 Oct 2013 10:45:34 +0200 Subject: [PATCH] Inventory/stock: qty muss geparst werden, nicht formatiert. behebt #2381 --- SL/Controller/Inventory.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/Controller/Inventory.pm b/SL/Controller/Inventory.pm index f3f29388d..3f406ee48 100644 --- a/SL/Controller/Inventory.pm +++ b/SL/Controller/Inventory.pm @@ -49,7 +49,7 @@ sub action_stock { parts => $self->part, dst_bin => $self->bin, dst_wh => $self->warehouse, - qty => $::form->format_amount(\%::myconfig, $::form->{qty}), + qty => $::form->parse_amount(\%::myconfig, $::form->{qty}), unit => $self->unit, transfer_type => 'stock', chargenumber => $::form->{chargenumber}, -- 2.20.1