Lines 87-93
if ($writeoff_all) {
Link Here
|
87 |
my $itemno = $input->param('itemnumber'); |
87 |
my $itemno = $input->param('itemnumber'); |
88 |
my $account_type = $input->param('accounttype'); |
88 |
my $account_type = $input->param('accounttype'); |
89 |
my $amount = $input->param('amountoutstanding'); |
89 |
my $amount = $input->param('amountoutstanding'); |
90 |
WriteOff( $borrowernumber, $accountno, $itemno, $account_type, $amount, $branch ); |
90 |
WriteOffFee( $borrowernumber, $accountno, $itemno, $account_type, $amount, $branch ); |
91 |
} |
91 |
} |
92 |
|
92 |
|
93 |
for (@names) { |
93 |
for (@names) { |
Lines 184-190
sub writeoff_all {
Link Here
|
184 |
my $itemno = $input->param("itemnumber$value"); |
184 |
my $itemno = $input->param("itemnumber$value"); |
185 |
my $amount = $input->param("amountoutstanding$value"); |
185 |
my $amount = $input->param("amountoutstanding$value"); |
186 |
my $accountno = $input->param("accountno$value"); |
186 |
my $accountno = $input->param("accountno$value"); |
187 |
WriteOff( $borrowernumber, $accountno, $itemno, $accounttype, $amount, $branch ); |
187 |
WriteOffFee( $borrowernumber, $accountno, $itemno, $accounttype, $amount, $branch ); |
188 |
} |
188 |
} |
189 |
} |
189 |
} |
190 |
|
190 |
|
191 |
- |
|
|