@@ -, +, @@ --- C4/Overdues.pm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) --- a/C4/Overdues.pm +++ a/C4/Overdues.pm @@ -527,8 +527,7 @@ sub UpdateFine { my $overdues = Koha::Account::Lines->search( { borrowernumber => $borrowernumber, - debit_type_code => 'OVERDUE', - amountoutstanding => { '<>' => 0 } + debit_type_code => 'OVERDUE' } ); @@ -562,7 +561,6 @@ sub UpdateFine { } } - if ( $accountline ) { if ( $accountline->amount != $amount ) { $accountline->adjust( --