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

(-)a/C4/SIP/ILS/Transaction/FeePayment.pm (-2 / +1 lines)
Lines 57-63 sub pay { Link Here
57
57
58
    if ($fee_id) {
58
    if ($fee_id) {
59
        my $fee = Koha::Account::Lines->find($fee_id);
59
        my $fee = Koha::Account::Lines->find($fee_id);
60
        if ( $fee && $fee->amountoutstanding == $amt ) {
60
        if ( $fee ) {
61
            $account->pay(
61
            $account->pay(
62
                {
62
                {
63
                    amount => $amt,
63
                    amount => $amt,
64
- 

Return to bug 16895