|
Lines 229-235
if ( $total_paid and $total_paid ne '0.00' ) {
Link Here
|
| 229 |
} |
229 |
} |
| 230 |
else { |
230 |
else { |
| 231 |
my $note = $input->param('selected_accts_notes'); |
231 |
my $note = $input->param('selected_accts_notes'); |
| 232 |
$pay_result = $payment_id = $account->pay( |
232 |
$pay_result = $account->pay( |
| 233 |
{ |
233 |
{ |
| 234 |
amount => $total_paid, |
234 |
amount => $total_paid, |
| 235 |
library_id => $library_id, |
235 |
library_id => $library_id, |
|
Lines 240-245
if ( $total_paid and $total_paid ne '0.00' ) {
Link Here
|
| 240 |
cash_register => $registerid |
240 |
cash_register => $registerid |
| 241 |
} |
241 |
} |
| 242 |
); |
242 |
); |
|
|
243 |
$payment_id = $pay_result->{payment_id}; |
| 243 |
} |
244 |
} |
| 244 |
$payment_id = $pay_result->{payment_id}; |
245 |
$payment_id = $pay_result->{payment_id}; |
| 245 |
|
246 |
|
| 246 |
- |
|
|