Lines 97-102
elsif ( $input->param('confirm_writeoff') ) {
Link Here
|
97 |
|
97 |
|
98 |
my $accountline = Koha::Account::Lines->find( $accountlines_id ); |
98 |
my $accountline = Koha::Account::Lines->find( $accountlines_id ); |
99 |
|
99 |
|
|
|
100 |
$amount = $accountline->amountoutstanding if (abs($amount - $accountline->amountoutstanding) < 0.01); |
100 |
if ( $amount > $accountline->amountoutstanding ) { |
101 |
if ( $amount > $accountline->amountoutstanding ) { |
101 |
print $input->redirect( "/cgi-bin/koha/members/paycollect.pl?" |
102 |
print $input->redirect( "/cgi-bin/koha/members/paycollect.pl?" |
102 |
. "borrowernumber=$borrowernumber" |
103 |
. "borrowernumber=$borrowernumber" |