@@ -, +, @@ not-for-loans biblio as not for loan at item level (via item editor). Change one item of the second biblio to the item type of step 1 (X). and staff, results and detail) to default. [D] OPAC Detail, Holdings table, Status column [E] Staff Detail, Holdings, Status. Especially observe C here. type of step 1 (X) in the cataloguing editor (MARC 942c). Check spots A to E again. --- C4/Search.pm | 2 ++ 1 file changed, 2 insertions(+) --- a/C4/Search.pm +++ a/C4/Search.pm @@ -2126,6 +2126,8 @@ sub searchResults { # items not on loan, but still unavailable ( lost, withdrawn, damaged ) else { + $item->{notforloan}=1 if !$item->{notforloan} && $itemtypes{ C4::Context->preference("item-level_itypes")? $item->{itype}: $oldbiblio->{itemtype} }->{notforloan}; + # item is on order if ( $item->{notforloan} < 0 ) { $ordered_count++; --