View | Details | Raw Unified | Return to bug 21183
Collapse All | Expand All

(-)a/tools/batchMod.pl (-2 / +2 lines)
Lines 267-273 if ($op eq "show"){ Link Here
267
267
268
            my $existing_items = Koha::Items->search({ barcode => \@barcodelist });
268
            my $existing_items = Koha::Items->search({ barcode => \@barcodelist });
269
            @itemnumbers = $existing_items->get_column('itemnumber');
269
            @itemnumbers = $existing_items->get_column('itemnumber');
270
            my %exists = map {$_=>1} @{$existing_items->get_column('barcode')};
270
            my @barcodes = $existing_items->get_column('barcode');
271
            my %exists = map {$_=>1} @barcodes;
271
            @notfoundbarcodes = grep { !$exists{$_} } @barcodelist;
272
            @notfoundbarcodes = grep { !$exists{$_} } @barcodelist;
272
        }
273
        }
273
    }
274
    }
274
- 

Return to bug 21183