View | Details | Raw Unified | Return to bug 25508
Collapse All | Expand All

(-)a/Koha/Account.pm (-2 / +1 lines)
Lines 204-210 sub pay { Link Here
204
        # in order that we can potentially renew it, do so.
204
        # in order that we can potentially renew it, do so.
205
        my $amt = $old_amountoutstanding - $amount_to_pay;
205
        my $amt = $old_amountoutstanding - $amount_to_pay;
206
        if ( $fine->renewable ) {
206
        if ( $fine->renewable ) {
207
            my $outcome = $fine->renew_item;
207
            my $outcome = $fine->renew_item({ interface => $interface });
208
            push @{$renew_outcomes}, $outcome if $outcome;
208
            push @{$renew_outcomes}, $outcome if $outcome;
209
        }
209
        }
210
210
211
- 

Return to bug 25508