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

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

Return to bug 38122