From a4100958c4bbfccfc274824dfab40e415ea22122 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Fri, 13 Dec 2024 15:52:34 +0000 Subject: [PATCH] Bug 38452: Use lc() for case insensitivity To test: 1. Create an item give it a barcode like 'abc123'; 2. Try creating a 2nd item with a barcode: 'ABC123', you get an error 'Error saving item: Barcode must be unique.' 3. Checkin the item 'ABC123', the 'abc123' item successfully checks in. 4. The case doesn't seem to matter elsewhere in Koha ( check-in, checkout, searching, batch tools ) 5. Try the inventory tool and use 'ABC123'. The barcode is not found. 6. APPLY PATCH, restart_all 7. Try the inventory tool again with both 'abc123' and 'ABC123', they should now both work. --- tools/inventory.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/inventory.pl b/tools/inventory.pl index 1c94183596..c2efdb7b01 100755 --- a/tools/inventory.pl +++ b/tools/inventory.pl @@ -218,7 +218,7 @@ if ( $op eq 'cud-inventory' my @items = Koha::Items->search( { barcode => { -in => \@barcodes } } )->as_list; my %items = map { $_->barcode => $_ } @items; foreach my $barcode (@barcodes) { - my $item = $items{ $barcode }; + my $item = $items{ lc($barcode) }; if ( $item ) { if ( $item->withdrawn ) { push @errorloop, { 'barcode' => $barcode, 'ERR_WTHDRAWN' => 1 }; -- 2.39.2