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

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

Return to bug 21849