From: Jan Büren Date: Thu, 27 Jan 2022 11:25:47 +0000 (+0100) Subject: Inventory-Import keine Spalte target_qty X-Git-Tag: kivitendo-mebil_0.1-0~10^2~2^2~229 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=9e8d1e4f60ab8160fd94347a52e2d18b0bdb1de5;p=kivitendo-erp.git Inventory-Import keine Spalte target_qty --- 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});