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

(-)a/members/paycollect.pl (-1 / +2 lines)
Lines 156-161 if ( $total_paid and $total_paid ne '0.00' ) { Link Here
156
                    {
156
                    {
157
                        type         => $type,
157
                        type         => $type,
158
                        amount       => $total_paid,
158
                        amount       => $total_paid,
159
                        library_id   => $branch,
159
                        lines        => \@lines,
160
                        lines        => \@lines,
160
                        note         => $note,
161
                        note         => $note,
161
                        payment_type => $payment_type,
162
                        payment_type => $payment_type,
Lines 167-172 if ( $total_paid and $total_paid ne '0.00' ) { Link Here
167
                Koha::Account->new( { patron_id => $borrowernumber } )->pay(
168
                Koha::Account->new( { patron_id => $borrowernumber } )->pay(
168
                    {
169
                    {
169
                        amount       => $total_paid,
170
                        amount       => $total_paid,
171
                        library_id   => $branch,
170
                        note         => $note,
172
                        note         => $note,
171
                        payment_type => $payment_type,
173
                        payment_type => $payment_type,
172
                    }
174
                    }
173
- 

Return to bug 21801