View | Details | Raw Unified | Return to bug 6081
Collapse All | Expand All

(-)a/C4/Search.pm (-2 / +2 lines)
Lines 1675-1681 sub searchResults { Link Here
1675
					}
1675
					}
1676
                    $other_items->{$key}->{intransit} = ($transfertwhen ne '') ? 1 : 0;
1676
                    $other_items->{$key}->{intransit} = ($transfertwhen ne '') ? 1 : 0;
1677
                    $other_items->{$key}->{onhold} = ($reservestatus) ? 1 : 0;
1677
                    $other_items->{$key}->{onhold} = ($reservestatus) ? 1 : 0;
1678
					$other_items->{$key}->{notforloan} = GetAuthorisedValueDesc('','',$item->{notforloan},'','',$notforloan_authorised_value) if $notforloan_authorised_value;
1678
					$other_items->{$key}->{notforloan} = GetAuthorisedValueDesc('','',$item->{notforloan},'','',$notforloan_authorised_value)
1679
				        if ($notforloan_authorised_value && $item->{notforloan});
1679
					$other_items->{$key}->{count}++ if $item->{$hbranch};
1680
					$other_items->{$key}->{count}++ if $item->{$hbranch};
1680
					$other_items->{$key}->{location} = $shelflocations->{ $item->{location} };
1681
					$other_items->{$key}->{location} = $shelflocations->{ $item->{location} };
1681
					$other_items->{$key}->{imageurl} = getitemtypeimagelocation( $search_context, $itemtypes{ $item->{itype} }->{imageurl} );
1682
					$other_items->{$key}->{imageurl} = getitemtypeimagelocation( $search_context, $itemtypes{ $item->{itype} }->{imageurl} );
1682
- 

Return to bug 6081