From 5f1e26e1d5760bcb1951d1b456e6860f7d7c2020 Mon Sep 17 00:00:00 2001 From: Andrew Isherwood Date: Thu, 25 Oct 2018 14:17:59 +0100 Subject: [PATCH] Bug 21641: (follow-up) Address wrong call method This patch substitutes C4::Accounts->getnextacctno for C4::Accounts::getnextacctno since getnextacctno is only expecting to be passed a borrowernumber --- C4/Circulation.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index efb923da24..7c8a9a2897 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -2851,7 +2851,7 @@ sub AddRenewal { # Charge a new rental fee, if applicable? my ( $charge, $type ) = GetIssuingCharges( $itemnumber, $borrowernumber ); if ( $charge > 0 ) { - my $accountno = C4::Accounts->getnextacctno( $borrowernumber ); + my $accountno = C4::Accounts::getnextacctno( $borrowernumber ); my $manager_id = 0; $manager_id = C4::Context->userenv->{'number'} if C4::Context->userenv; $sth = $dbh->prepare( @@ -3191,7 +3191,7 @@ sub AddIssuingCharge { # FIXME What if checkout does not exist? - my $nextaccntno = C4::Accounts->getnextacctno($checkout->borrowernumber); + my $nextaccntno = C4::Accounts::getnextacctno($checkout->borrowernumber); my $manager_id = 0; $manager_id = C4::Context->userenv->{'number'} if C4::Context->userenv; -- 2.11.0