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

(-)a/C4/Circulation.pm (-2 / +1 lines)
Lines 2408-2414 sub _FixAccountForLostAndReturned { Link Here
2408
    my $accountlines = Koha::Account::Lines->search(
2408
    my $accountlines = Koha::Account::Lines->search(
2409
        {
2409
        {
2410
            itemnumber  => $itemnumber,
2410
            itemnumber  => $itemnumber,
2411
            accounttype => { -in => [ 'L', 'W' ] },
2411
            accounttype => 'L',
2412
        },
2412
        },
2413
        {
2413
        {
2414
            order_by => { -desc => [ 'date', 'accountlines_id' ] }
2414
            order_by => { -desc => [ 'date', 'accountlines_id' ] }
2415
- 

Return to bug 23018