From 12aefaa7410e5f096f61431cffa83671ab926b7c Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 22 Jun 2021 15:38:29 +0200 Subject: [PATCH] Bug 3142: Add itemlost, withdrawn and onloan --- Koha/Items.pm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Koha/Items.pm b/Koha/Items.pm index 16479835536..fdb7571e560 100644 --- a/Koha/Items.pm +++ b/Koha/Items.pm @@ -47,7 +47,16 @@ 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 + onloan => undef, + } + ); } =head3 filter_by_visible_in_opac -- 2.20.1