Lines 682-693
else {
Link Here
|
682 |
$item_info->{holding_library_info} = $opac_info_holding->content if $opac_info_holding; |
682 |
$item_info->{holding_library_info} = $opac_info_holding->content if $opac_info_holding; |
683 |
$item_info->{home_library_info} = $opac_info_home->content if $opac_info_home; |
683 |
$item_info->{home_library_info} = $opac_info_home->content if $opac_info_home; |
684 |
|
684 |
|
685 |
if ( $patron ) { |
685 |
$has_reservable_items = $has_reservable_items || IsAvailableForItemLevelRequest ( $item, $patron, undef ); |
686 |
$has_reservable_items = IsAvailableForItemLevelRequest($item, $patron, undef); |
|
|
687 |
} else { |
688 |
$has_reservable_items = |
689 |
Koha::CirculationRules->get_onshelfholds_policy( { item => $item, patron => undef } ); |
690 |
} |
691 |
|
686 |
|
692 |
# get collection code description, too |
687 |
# get collection code description, too |
693 |
my $ccode = $item->ccode; |
688 |
my $ccode = $item->ccode; |
694 |
- |
|
|