From 502cf43556731ff18b314d27777ead6d685ded60 Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Thu, 18 Jan 2018 07:56:15 +0000 Subject: [PATCH] Bug 20003: Fix showing number of remaining checkouts during checking in Test plan: 0) Do not apply the patch 1) Have a patron with more then one checkout 2) Return one of patron's checkout and confirm the remaining number of checkout is not shown 3) Apply the patch 4) Try it again and confirm the number is now shown Signed-off-by: Roch D'Amour Signed-off-by: Nick Clemens --- circ/returns.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circ/returns.pl b/circ/returns.pl index 677c91e..fab6bc2 100755 --- a/circ/returns.pl +++ b/circ/returns.pl @@ -596,7 +596,7 @@ foreach ( sort { $a <=> $b } keys %returneditems ) { $ri{bortitle} = $patron->title; $ri{bornote} = $patron->borrowernotes; $ri{borcategorycode}= $patron->categorycode; - $ri{borissuescount} = Koha::Checkouts->count( { borrowernumber => $b->{'borrowernumber'} } ); + $ri{borissuescount} = Koha::Checkouts->count( { borrowernumber => $patron->borrowernumber } ); } else { $ri{borrowernumber} = $riborrowernumber{$_}; -- 2.1.4