From 4692f50e461182482c02fd0530545eee3206bff4 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 --- Koha/Items.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Koha/Items.pm b/Koha/Items.pm index fcab80c0668..90fe0f25ca7 100644 --- a/Koha/Items.pm +++ b/Koha/Items.pm @@ -54,6 +54,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