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

(-)a/Koha/Holds.pm (-3 / +1 lines)
Lines 140-146 sub get_items_that_can_fill { Link Here
140
        }
140
        }
141
    )->get_column('itemtype');
141
    )->get_column('itemtype');
142
142
143
    my $items = Koha::Items->search(
143
    return Koha::Items->search(
144
        {
144
        {
145
            biblionumber => { in => \@biblionumbers },
145
            biblionumber => { in => \@biblionumbers },
146
            itemlost     => 0,
146
            itemlost     => 0,
Lines 151-157 sub get_items_that_can_fill { Link Here
151
            itype        => { -not_in => \@hold_not_allowed_itypes },
151
            itype        => { -not_in => \@hold_not_allowed_itypes },
152
        }
152
        }
153
    );
153
    );
154
155
}
154
}
156
155
157
=head3 type
156
=head3 type
158
- 

Return to bug 27718