Bug 15902 [QA Followup] - Use Koha::Patrons instead of Koha::Borrowers
authorKyle M Hall <kyle@bywatersolutions.com>
Tue, 6 Sep 2016 14:05:11 +0000 (14:05 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Tue, 27 Sep 2016 13:53:23 +0000 (13:53 +0000)
Since the initial submission of this patch, the module Koha::Borrowers
has been moved to Koha::Patrons. This patch changes the call from
Koha::Borrowers to Koha::Patrons.

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

offline_circ/process_koc.pl

index 1875166..f959d6f 100755 (executable)
@@ -37,6 +37,7 @@ use C4::Stats;
 use C4::BackgroundJob;
 use Koha::Upload;
 use Koha::Account;
+use Koha::Patrons;
 
 use Date::Calc qw( Add_Delta_Days Date_to_Days );
 
@@ -364,7 +365,7 @@ sub kocMakePayment {
     my $cardnumber = $circ->{cardnumber};
     my $amount = $circ->{amount};
 
-    my $patron = Koha::Borrowers->find( { cardnumber => $cardnumber } );
+    my $patron = Koha::Patrons->find( { cardnumber => $cardnumber } );
 
     Koha::Account->new( { patron_id => $patron->id } )
       ->pay( { amount => $amount } );