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

(-)a/Koha/REST/V1/Biblios.pm (-1 / +1 lines)
Lines 270-275 sub get_items { Link Here
270
        $items_rs = $items_rs->filter_by_bookable if $bookable_only;
270
        $items_rs = $items_rs->filter_by_bookable if $bookable_only;
271
271
272
        if ($group_by_status) {
272
        if ($group_by_status) {
273
            $c->req->params->remove('_order_by');
273
            my @item_ids;
274
            my @item_ids;
274
            for my $status (
275
            for my $status (
275
                qw( available checked_out local_use in_transit lost withdrawn damaged not_for_loan on_hold recalled in_bundle restricted )
276
                qw( available checked_out local_use in_transit lost withdrawn damaged not_for_loan on_hold recalled in_bundle restricted )
276
- 

Return to bug 38122