From b77ea78c1d35106c51e8169d0cc8d66ebb9fae60 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 14 Aug 2023 10:55:09 -0400 Subject: [PATCH] Bug 34529: Offline circulation should be able to accept userid as well as cardnumber Like everywhere else in Koha, offline circulation should be able to use userid as well as cardnumber to look up the patron for a transaction ( checkouts and fine payments ). Test Plan: 1) Apply this patch 2) Restart all the things! 3) Download the test.koc file attached to this bug 4) Verify you have an item with the barcode 39999000001396 create it if needed 5) Set a patron's username to "hacevedo" 6) Upload and import the test.koc file into offline circ 7) Verify the item was checked out and the payment was made --- C4/Circulation.pm | 4 +++- offline_circ/list.pl | 8 +++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 98c66828f5..d3251bb2c1 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -4148,6 +4148,7 @@ sub ProcessOfflineIssue { my $operation = shift; my $patron = Koha::Patrons->find( { cardnumber => $operation->{cardnumber} } ); + $patron ||= Koha::Patrons->find( { userid => $operation->{cardnumber} } ); if ( $patron ) { my $item = Koha::Items->find({ barcode => $operation->{barcode} }); @@ -4181,7 +4182,8 @@ sub ProcessOfflineIssue { sub ProcessOfflinePayment { my $operation = shift; - my $patron = Koha::Patrons->find({ cardnumber => $operation->{cardnumber} }); + my $patron = Koha::Patrons->find( { cardnumber => $operation->{cardnumber} } ); + $patron ||= Koha::Patrons->find( { userid => $operation->{cardnumber} } ); $patron->account->pay( { diff --git a/offline_circ/list.pl b/offline_circ/list.pl index 252dc8594b..2838a18530 100755 --- a/offline_circ/list.pl +++ b/offline_circ/list.pl @@ -48,7 +48,13 @@ for (@$operations) { $_->{'bibliotitle'} = $biblio->title; $_->{'biblionumber'} = $biblio->biblionumber; } - my $patron = $_->{cardnumber} ? Koha::Patrons->find( { cardnumber => $_->{cardnumber} } ) : undef; + + my $patron = + $_->{cardnumber} + ? Koha::Patrons->find( { cardnumber => $_->{cardnumber} } ) + || Koha::Patrons->find( { userid => $_->{cardnumber} } ) + : undef; + if ($patron) { $_->{'borrowernumber'} = $patron->borrowernumber; $_->{'borrower'} = ($patron->firstname ? $patron->firstname:'').' '.$patron->surname; -- 2.30.2