From 7837347fc99f9e6550d8fbc043ad13d16e96bb0e 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 Signed-off-by: Jonathan Druart 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 677c91e2c5..fab6bc22c9 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.39.5