From e7468b484995a19f89fdb5d94ce74ee34aff6a61 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 6 Sep 2016 14:05:11 +0000 Subject: [PATCH] Bug 15902 [QA Followup] - Use Koha::Patrons instead of Koha::Borrowers 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. --- offline_circ/process_koc.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/offline_circ/process_koc.pl b/offline_circ/process_koc.pl index 1875166..f959d6f 100755 --- a/offline_circ/process_koc.pl +++ b/offline_circ/process_koc.pl @@ -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 } ); -- 2.8.1