Bug 13909: (QA followup) fix references to get_chargeable_units
authorTomas Cohen Arazi <tomascohen@gmail.com>
Sun, 12 Apr 2015 13:54:50 +0000 (10:54 -0300)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Sun, 12 Apr 2015 13:54:50 +0000 (10:54 -0300)
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
C4/Circulation.pm
t/db_dependent/Circulation.t

index 3baccea..a8c8c08 100644 (file)
@@ -2142,7 +2142,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) {
 
index 02d7b00..7396e86 100755 (executable)
@@ -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)' );
 }