|
Lines 45-58
sub new {
Link Here
|
| 45 |
|
45 |
|
| 46 |
=head2 pay |
46 |
=head2 pay |
| 47 |
|
47 |
|
| 48 |
This method allows payments to be made against feees |
48 |
This method allows payments to be made against fees/fines |
| 49 |
|
49 |
|
| 50 |
Koha::Account->new( { patron_id => $borrowernumber } )->pay( |
50 |
Koha::Account->new( { patron_id => $borrowernumber } )->pay( |
| 51 |
{ |
51 |
{ |
| 52 |
amount => $amount, |
52 |
amount => $amount, |
| 53 |
sip => $sipmode, |
53 |
sip => $sipmode, |
| 54 |
note => $note, |
54 |
note => $note, |
| 55 |
id => $accountlines_id, |
55 |
accountlines_id => $accountlines_id, |
| 56 |
library_id => $branchcode, |
56 |
library_id => $branchcode, |
| 57 |
} |
57 |
} |
| 58 |
); |
58 |
); |
| 59 |
- |
|
|