@@ -, +, @@ problematic $item->{itemnotes} =~ /convoluu?t/i; notes contain Convolute. callnumber X. Compare should not report the updated convolute. the item now. --- tools/inventory.pl | 2 ++ 1 file changed, 2 insertions(+) --- a/tools/inventory.pl +++ a/tools/inventory.pl @@ -292,6 +292,8 @@ if ( $compareinv2barcd ) { for my $item ( @$inventorylist ) { my $barcode = $item->{barcode}; if( !$barcode ) { + $item->{itemnotes} = Koha::Items->find( $item->{itemnumber} )->itemnotes; + next if $item->{itemnotes} =~ /convoluu?t/i; $item->{problems}->{no_barcode} = 1; } elsif ( grep /^$barcode$/, @scanned_barcodes ) { next; --