@@ -, +, @@ attention Koha::Account::Offset->new( { debit_id => $accountline->id, type => 'Forgiven', amount => $amountoutstanding * -1, } ); --- C4/Circulation.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -2339,7 +2339,7 @@ sub _FixOverduesOnReturn { type => 'Forgiven', amount => $amountoutstanding * -1, } - ); + )->store(); if (C4::Context->preference("FinesLog")) { &logaction("FINES", 'MODIFY',$borrowernumber,"Overdue forgiven: item $item"); @@ -2354,7 +2354,7 @@ sub _FixOverduesOnReturn { type => 'Dropbox', amount => $accountline->lastincrement * -1, } - ); + )->store(); if ( C4::Context->preference("FinesLog") ) { &logaction( "FINES", 'MODIFY', $borrowernumber, --