@@ -, +, @@ --- Koha/Items.pm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) --- a/Koha/Items.pm +++ a/Koha/Items.pm @@ -47,7 +47,15 @@ Return the items of the set that are holdable sub filter_by_for_hold { my ($self) = @_; - return $self->search( { notforloan => { '<=' => 0 } } ); # items with negative or zero notforloan value are holdable + + return $self->search( + { + itemlost => 0, + withdrawn => 0, + notforloan => { '<=' => 0 } + , # items with negative or zero notforloan value are holdable + } + ); } =head3 filter_by_visible_in_opac --