@@ -, +, @@ and for loan - Set AllowOnShelfHolds to on - Create a record with a normal item : not lost, not withdrawn, not damaged, notforloan=0 - Index this record - Perform a search on OPAC that returns this record (and others) - Add this item in transit : /cgi-bin/koha/circ/branchtransfers.pl - Re-perform the search on OPAC --- C4/Search.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/C4/Search.pm +++ a/C4/Search.pm @@ -1950,8 +1950,8 @@ sub searchResults { $can_place_holds = 1; } } - } elsif ( $item->{notforloan} < 0 ) { - # item is not damaged and notforloan is < 0 + } elsif ( !$item->{notforloan} || $item->{notforloan} < 0 ) { + # item is not damaged and item is either for loan or has notforloan < 0 $can_place_holds = 1; } } --