Bug 20003: Fix showing number of remaining checkouts during checking in
authorJosef Moravec <josef.moravec@gmail.com>
Thu, 18 Jan 2018 07:56:15 +0000 (07:56 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 30 Jan 2018 17:17:29 +0000 (14:17 -0300)
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 <roch.damour@inlibro.com>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
circ/returns.pl

index 677c91e..fab6bc2 100755 (executable)
@@ -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{$_};