Bug 23077: Don't fill cardnumber with empty string
authorNick Clemens <nick@bywatersolutions.com>
Fri, 7 Jun 2019 12:19:28 +0000 (12:19 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 5 Jul 2019 07:41:33 +0000 (08:41 +0100)
To test:
1 - Apply unit test patch only
2 - prove the tests, they fail
3 - Attempt to import the attached sample file
4 - First patron may be imported, second will give error (or both will error)
5 - If only one error, import agian, now both have error
6 - Apply this patch
7 - Prove tests, they pass!
8 - Import the sample file
9 - It succeeds!

Signed-off-by: Claire Gravely <claire.gravely@bsz-bw.de>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Koha/Patrons/Import.pm

index fe63b95..d98e44d 100644 (file)
@@ -132,6 +132,7 @@ sub import_patrons {
                 }
             }
         }
+        $borrower{cardnumber} = undef unless $borrower{cardnumber};
 
         # Check if borrower category code exists and if it matches to a known category. Pushing error to missing_criticals otherwise.
         $self->check_borrower_category($borrower{categorycode}, $borrowerline, $line_number, \@missing_criticals);