Lines 682-688
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 |
$is_available = IsAvailableForItemLevelRequest($item, $patron, $currentbranch) |
685 |
$is_available = IsAvailableForItemLevelRequest($item, $patron, undef) |
686 |
unless $is_available; |
686 |
unless $is_available; |
687 |
|
687 |
|
688 |
# get collection code description, too |
688 |
# get collection code description, too |
Lines 759-765
else {
Link Here
|
759 |
} |
759 |
} |
760 |
} |
760 |
} |
761 |
|
761 |
|
762 |
my $canReserve = CanBookBeReserved($borrowernumber, $biblionumber, $currentbranch); |
762 |
my $canReserve = CanBookBeReserved($borrowernumber, $biblionumber, undef); |
763 |
if (!$borrowernumber || ($canReserve->{status} eq "OK" && $is_available)) { |
763 |
if (!$borrowernumber || ($canReserve->{status} eq "OK" && $is_available)) { |
764 |
$template->param( ReservableItems => 1 ); |
764 |
$template->param( ReservableItems => 1 ); |
765 |
} |
765 |
} |
766 |
- |
|
|