From 472d1a3ca314304f2a4d0804f3a51c0798e99822 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 22 Jun 2021 15:39:55 +0200 Subject: [PATCH] Bug 3142: Exclude damaged items Signed-off-by: Martin Renvoize --- Koha/Items.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Koha/Items.pm b/Koha/Items.pm index 2855192f95..0ec3133d8a 100644 --- a/Koha/Items.pm +++ b/Koha/Items.pm @@ -55,6 +55,7 @@ sub filter_by_for_hold { withdrawn => 0, notforloan => { '<=' => 0 } , # items with negative or zero notforloan value are holdable + ( C4::Context->preference('AllowHoldsOnDamagedItems') ? ( damaged => 0 ) : () ), } ); } -- 2.20.1