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

(-)a/C4/SIP/ILS/Transaction/FeePayment.pm (-6 / +6 lines)
Lines 62-72 sub pay { Link Here
62
        if ( $fee ) {
62
        if ( $fee ) {
63
            my $pay_response = $account->pay(
63
            my $pay_response = $account->pay(
64
                {
64
                {
65
                    amount       => $amt,
65
                    amount        => $amt,
66
                    type         => $type,
66
                    type          => $type,
67
                    payment_type => 'SIP' . $sip_type,
67
                    payment_type  => 'SIP' . $sip_type,
68
                    lines        => [$fee],
68
                    lines         => [$fee],
69
                    interface    => C4::Context->interface
69
                    interface     => C4::Context->interface,
70
                    cash_register => $register_id
70
                }
71
                }
71
            );
72
            );
72
            return {
73
            return {
73
- 

Return to bug 29385