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

(-)a/Koha/Holds.pm (-2 / +1 lines)
Lines 166-172 sub get_items_that_can_fill { Link Here
166
    return Koha::Items->search(
166
    return Koha::Items->search(
167
        {
167
        {
168
            -or             => \@bibs_or_items,
168
            -or             => \@bibs_or_items,
169
            itemnumber      => { -not_in => [ @branchtransfers, @waiting_holds ] },
169
            'me.itemnumber' => { -not_in => [ @branchtransfers, @waiting_holds ] },
170
            onloan          => undef,
170
            onloan          => undef,
171
            notforloan      => 0,
171
            notforloan      => 0,
172
            is_closed_stack => 0,
172
            is_closed_stack => 0,
173
- 

Return to bug 38666