From 726e362a2861d60bcfb72e014769483f5b9178a7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Fri, 27 Nov 2020 17:13:34 +0100 Subject: [PATCH] =?utf8?q?Inventory=20Helper:=20Auf=20Number=20Helper=20?= =?utf8?q?=C3=84nderungen=20angepasst?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- SL/Helper/Inventory.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SL/Helper/Inventory.pm b/SL/Helper/Inventory.pm index 777801cf4..366c0248e 100644 --- a/SL/Helper/Inventory.pm +++ b/SL/Helper/Inventory.pm @@ -13,7 +13,7 @@ use SL::Locale::String qw(t8); use SL::MoreCommon qw(listify); use SL::DBUtils qw(selectall_hashref_query selectrow_query); use SL::DB::TransferType; -use SL::Helper::Number qw(_number _round_number); +use SL::Helper::Number qw(_format_number _round_number); use SL::X; our @EXPORT_OK = qw(get_stock get_onhand allocate allocate_for_assembly produce_assembly check_constraints); @@ -203,7 +203,7 @@ sub allocate { if ($rest_qty > 0) { die SL::X::Inventory::Allocation->new( error => 'not enough to allocate', - msg => t8("can not allocate #1 units of #2, missing #3 units", _number(\%::myconfig, $qty), $part->displayable_name, _number(\%::myconfig, $rest_qty)), + msg => t8("can not allocate #1 units of #2, missing #3 units", _format_number($qty), $part->displayable_name, _format_number($rest_qty)), ); } else { if ($params{constraints}) { @@ -275,7 +275,7 @@ sub check_constraints { $err .= ' '.t8('part \'#\'1 in bin \'#2\' only with qty #3 (need additional #4) and chargenumber \'#5\'.', SL::DB::Part->load_cached($_->parts_id)->description, SL::DB::Bin->load_cached($_->bin_id)->full_description, - _number($_->qty), _number($needed), $_->chargenumber ? $_->chargenumber : '--') for @allocs; + _format_number($_->qty), _format_number($needed), $_->chargenumber ? $_->chargenumber : '--') for @allocs; die SL::X::Inventory::Allocation->new( error => 'allocation constraints failure', msg => $err, -- 2.20.1