Lines 2093-2099
sub searchResults {
Link Here
|
2093 |
{ |
2093 |
{ |
2094 |
$onloan_count++; |
2094 |
$onloan_count++; |
2095 |
my $key = $prefix . $item->{onloan} . $item->{barcode}; |
2095 |
my $key = $prefix . $item->{onloan} . $item->{barcode}; |
2096 |
$onloan_items->{$key}->{due_date} = output_pref( { dt => dt_from_string( $item->{onloan} ), dateonly => 1 } ); |
2096 |
$onloan_items->{$key}->{due_date} = output_pref( { str => $item->{onloan}, dateonly => 1 } ); |
2097 |
$onloan_items->{$key}->{count}++ if $item->{$hbranch}; |
2097 |
$onloan_items->{$key}->{count}++ if $item->{$hbranch}; |
2098 |
$onloan_items->{$key}->{branchname} = $item->{branchname}; |
2098 |
$onloan_items->{$key}->{branchname} = $item->{branchname}; |
2099 |
$onloan_items->{$key}->{location} = $shelflocations->{ $item->{location} }; |
2099 |
$onloan_items->{$key}->{location} = $shelflocations->{ $item->{location} }; |
2100 |
- |
|
|