From 5baed3708725d1f9a6015c447366e791d6a73e9d Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Sat, 23 Mar 2019 11:44:53 +0000 Subject: [PATCH] Bug 22288: Correct item search in batchMod by barcode file To test: 1 - Have a list of barcodes that exist in your catalog 2 - Go to Tools->Batch item modification 3 - Attempt to modify items using the list 4 - Get an error page 5 - Apply patch 6 - Repeat 7 - Modification should work correctly Signed-off-by: Martin Renvoize --- tools/batchMod.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/batchMod.pl b/tools/batchMod.pl index 85077ab33c..e5b6032900 100755 --- a/tools/batchMod.pl +++ b/tools/batchMod.pl @@ -254,9 +254,9 @@ if ($op eq "show"){ @contentlist = uniq @contentlist; if ($filecontent eq 'barcode_file') { - my $existing_items = Koha::Items->search({ itemnumber => \@contentlist }); + my $existing_items = Koha::Items->search({ barcode => \@contentlist }); @itemnumbers = $existing_items->get_column('itemnumber'); - my %exists = map {$_=>1} @{$existing_items->get_column('barcode')}; + my %exists = map {$_=>1} $existing_items->get_column('barcode'); @notfoundbarcodes = grep { !$exists{$_} } @contentlist; } elsif ( $filecontent eq 'itemid_file') { -- 2.20.1