View | Details | Raw Unified | Return to bug 21849
Collapse All | Expand All

(-)a/C4/Circulation.pm (-3 / +2 lines)
Lines 2340-2346 sub _FixOverduesOnReturn { Link Here
2340
                type => 'Forgiven',
2340
                type => 'Forgiven',
2341
                amount => $amountoutstanding * -1,
2341
                amount => $amountoutstanding * -1,
2342
            }
2342
            }
2343
        );
2343
        )->store();
2344
2344
2345
        if (C4::Context->preference("FinesLog")) {
2345
        if (C4::Context->preference("FinesLog")) {
2346
            &logaction("FINES", 'MODIFY',$borrowernumber,"Overdue forgiven: item $item");
2346
            &logaction("FINES", 'MODIFY',$borrowernumber,"Overdue forgiven: item $item");
Lines 2355-2361 sub _FixOverduesOnReturn { Link Here
2355
                type => 'Dropbox',
2355
                type => 'Dropbox',
2356
                amount => $accountline->lastincrement * -1,
2356
                amount => $accountline->lastincrement * -1,
2357
            }
2357
            }
2358
        );
2358
        )->store();
2359
2359
2360
        if ( C4::Context->preference("FinesLog") ) {
2360
        if ( C4::Context->preference("FinesLog") ) {
2361
            &logaction( "FINES", 'MODIFY', $borrowernumber,
2361
            &logaction( "FINES", 'MODIFY', $borrowernumber,
2362
- 

Return to bug 21849