@@ -, +, @@ by setting the due date to 12 days in the past) --- C4/Overdues.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/Overdues.pm +++ a/C4/Overdues.pm @@ -574,7 +574,7 @@ sub UpdateFine { } if ( $accountline ) { - if ( $accountline->amount != $amount ) { + if ( $accountline->amount != Koha::Number::Price->new($amount)->round ) { $accountline->adjust( { amount => $amount, --