Lines 89-95
if ($writeoff_all) {
Link Here
|
89 |
my $itemno = $input->param('itemnumber'); |
89 |
my $itemno = $input->param('itemnumber'); |
90 |
my $account_type = $input->param('accounttype'); |
90 |
my $account_type = $input->param('accounttype'); |
91 |
my $amount = $input->param('amountoutstanding'); |
91 |
my $amount = $input->param('amountoutstanding'); |
92 |
WriteOffFee( $borrowernumber, $accountlines_id, $itemno, $account_type, $amount, $branch ); |
92 |
WriteOffFee( $borrowernumber, $accountlines_id, $itemno, $account_type, $amount ); |
93 |
} |
93 |
} |
94 |
|
94 |
|
95 |
for (@names) { |
95 |
for (@names) { |
Lines 205-211
sub writeoff_all {
Link Here
|
205 |
my $amount = $input->param("amountoutstanding$value"); |
205 |
my $amount = $input->param("amountoutstanding$value"); |
206 |
my $accountno = $input->param("accountno$value"); |
206 |
my $accountno = $input->param("accountno$value"); |
207 |
my $accountlines_id = $input->param("accountlines_id$value"); |
207 |
my $accountlines_id = $input->param("accountlines_id$value"); |
208 |
WriteOffFee( $borrowernumber, $accountlines_id, $itemno, $accounttype, $amount, $branch ); |
208 |
WriteOffFee( $borrowernumber, $accountlines_id, $itemno, $accounttype, $amount ); |
209 |
} |
209 |
} |
210 |
} |
210 |
} |
211 |
|
211 |
|
212 |
- |
|
|