From 9e8d1e4f60ab8160fd94347a52e2d18b0bdb1de5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20B=C3=BCren?= Date: Thu, 27 Jan 2022 12:25:47 +0100 Subject: [PATCH] Inventory-Import keine Spalte target_qty --- SL/Controller/CsvImport/Inventory.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/Controller/CsvImport/Inventory.pm b/SL/Controller/CsvImport/Inventory.pm index f67a3e77a..e6f679471 100644 --- a/SL/Controller/CsvImport/Inventory.pm +++ b/SL/Controller/CsvImport/Inventory.pm @@ -284,7 +284,7 @@ sub check_qty { # parse qty (may be float values) if (exists $entry->{raw_data}->{target_qty}) { $entry->{raw_data}->{target_qty} = $::form->parse_amount(\%::myconfig, $entry->{raw_data}->{target_qty}); - $object->target_qty($entry->{raw_data}->{target_qty}); + # $object->target_qty($entry->{raw_data}->{target_qty}); } if (exists $entry->{raw_data}->{qty}) { $entry->{raw_data}->{qty} = $::form->parse_amount(\%::myconfig, $entry->{raw_data}->{qty}); -- 2.20.1