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

(-)a/C4/Search.pm (-2 / +1 lines)
Lines 1740-1746 sub searchResults { Link Here
1740
                    }
1740
                    }
1741
                    $other_items->{$key}->{intransit} = ( $transfertwhen ne '' ) ? 1 : 0;
1741
                    $other_items->{$key}->{intransit} = ( $transfertwhen ne '' ) ? 1 : 0;
1742
                    $other_items->{$key}->{onhold} = ($reservestatus) ? 1 : 0;
1742
                    $other_items->{$key}->{onhold} = ($reservestatus) ? 1 : 0;
1743
					$other_items->{$key}->{notforloan} = GetAuthorisedValueDesc('','',$item->{notforloan},'','',$notforloan_authorised_value) if $notforloan_authorised_value;
1743
					$other_items->{$key}->{notforloan} = GetAuthorisedValueDesc('','',$item->{notforloan},'','',$notforloan_authorised_value) if $notforloan_authorised_value and $item->{notforloan};
1744
					$other_items->{$key}->{count}++ if $item->{$hbranch};
1744
					$other_items->{$key}->{count}++ if $item->{$hbranch};
1745
					$other_items->{$key}->{location} = $shelflocations->{ $item->{location} };
1745
					$other_items->{$key}->{location} = $shelflocations->{ $item->{location} };
1746
					$other_items->{$key}->{description} = $item->{description};
1746
					$other_items->{$key}->{description} = $item->{description};
1747
- 

Return to bug 8041