Lines 157-162
if ( $total_paid and $total_paid ne '0.00' ) {
Link Here
|
157 |
{ |
157 |
{ |
158 |
type => $type, |
158 |
type => $type, |
159 |
amount => $total_paid, |
159 |
amount => $total_paid, |
|
|
160 |
library_id => $branch, |
160 |
lines => \@lines, |
161 |
lines => \@lines, |
161 |
note => $note, |
162 |
note => $note, |
162 |
interface => C4::Context->interface, |
163 |
interface => C4::Context->interface, |
Lines 169-174
if ( $total_paid and $total_paid ne '0.00' ) {
Link Here
|
169 |
Koha::Account->new( { patron_id => $borrowernumber } )->pay( |
170 |
Koha::Account->new( { patron_id => $borrowernumber } )->pay( |
170 |
{ |
171 |
{ |
171 |
amount => $total_paid, |
172 |
amount => $total_paid, |
|
|
173 |
library_id => $branch, |
172 |
note => $note, |
174 |
note => $note, |
173 |
payment_type => $payment_type, |
175 |
payment_type => $payment_type, |
174 |
interface => C4::Context->interface |
176 |
interface => C4::Context->interface |
175 |
- |
|
|