Bug 29114: Trim whitespace before the barcode
authorAndrii Veremeienko <averemeienko@jabra.com>
Fri, 29 Oct 2021 13:44:19 +0000 (16:44 +0300)
committerTomas Cohen Arazi <tomascohen@theke.io>
Mon, 18 Jul 2022 18:10:17 +0000 (15:10 -0300)
The solution was to add regexp that trims all whitespaces.

How to test:
1. Go to the koha/virtualshelves/shelves.pl;
2. Add new list or edit existing one;
3. Start adding new items;
4. In the "Barcode" field add barcode(s) with whitespaces before them;
5. Observe that it wasn't added as the barcode isn't recognized because of whitespaces;
6. Apply the patch;
7. Repeat step 4;
8. Observe that the item was successfully added;

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
virtualshelves/shelves.pl

index a722326ad049d6caaa2a922fad8c43f7535f6afc..66947f925b6743bd2708aef6f670a12239ffc4cb 100755 (executable)
@@ -21,6 +21,7 @@ use Modern::Perl;
 use CGI qw ( -utf8 );
 use C4::Auth qw( get_template_and_user );
 use C4::Biblio qw( GetMarcBiblio );
+use C4::Circulation qw( barcodedecode );
 use C4::Koha qw(
     GetNormalizedEAN
     GetNormalizedISBN
@@ -157,7 +158,7 @@ if ( $op eq 'add_form' ) {
             if ( $shelf->can_biblios_be_added( $loggedinuser ) ) {
                 my @barcodes = split /\n/, $barcodes; # Entries are effectively passed in as a <cr> separated list
                 foreach my $barcode (@barcodes){
-                    $barcode =~ s/\r$//; # strip any naughty return chars
+                    $barcode = barcodedecode( $barcode ) if $barcode;
                     next if $barcode eq '';
                     my $item = Koha::Items->find({barcode => $barcode});
                     if ( $item ) {