From 4a6473be955bff9e623a6c2b7eeceeccd2bc6a88 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Sun, 12 Apr 2015 10:54:50 -0300 Subject: [PATCH] Bug 13909: (QA followup) fix references to get_chargeable_units Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 653686cee9cd3032642933427d86ec9331612607) Signed-off-by: Chris Cormack --- C4/Circulation.pm | 2 +- t/db_dependent/Circulation.t | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index efb0b89121..65a751e61a 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -2141,7 +2141,7 @@ sub _debar_user_on_return { GetIssuingRule( $borrower->{categorycode}, $item->{itype}, $branchcode ); my $finedays = $issuingrule->{finedays}; my $unit = $issuingrule->{lengthunit}; - my $chargeable_units = get_chargeable_units($unit, $dt_due, $dt_today, $branchcode); + my $chargeable_units = C4::Overdues::get_chargeable_units($unit, $dt_due, $dt_today, $branchcode); if ($finedays) { diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t index c429a54241..4df36019fb 100755 --- a/t/db_dependent/Circulation.t +++ b/t/db_dependent/Circulation.t @@ -450,7 +450,7 @@ C4::Context->dbh->do("DELETE FROM accountlines"); my $now = dt_from_string(); my $future = dt_from_string(); $future->add( days => 7 ); - my $units = C4::Overdues::_get_chargeable_units('days', $future, $now, 'MPL'); + my $units = C4::Overdues::get_chargeable_units('days', $future, $now, 'MPL'); ok( $units == 0, '_get_chargeable_units returns 0 for items not past due date (Bug 12596)' ); } -- 2.39.5