Lines 159-171
my $credit_line = Koha::Account->new({ patron_id => $patron_id })->add_credit(
Link Here
|
159 |
{ |
159 |
{ |
160 |
amount => $amount, |
160 |
amount => $amount, |
161 |
description => $description, |
161 |
description => $description, |
162 |
note => $note, |
|
|
163 |
user_id => $user_id, |
164 |
interface => $interface, |
162 |
interface => $interface, |
|
|
163 |
issue_id => $checkout->id, |
164 |
item_id => $item_id, |
165 |
library_id => $library_id, |
165 |
library_id => $library_id, |
|
|
166 |
note => $note, |
166 |
payment_type => $payment_type, |
167 |
payment_type => $payment_type, |
167 |
type => $credit_type, |
168 |
type => $credit_type, |
168 |
item_id => $item_id |
169 |
user_id => $user_id, |
169 |
} |
170 |
} |
170 |
); |
171 |
); |
171 |
|
172 |
|
172 |
- |
|
|