Lines 808-826
if ( C4::Context->preference('ArticleRequests') ) {
Link Here
|
808 |
$template->param( artreqpossible => $artreqpossible ); |
808 |
$template->param( artreqpossible => $artreqpossible ); |
809 |
} |
809 |
} |
810 |
|
810 |
|
811 |
$template->param( |
811 |
$template->param( |
812 |
MARCNOTES => $marcnotesarray, |
812 |
MARCNOTES => $marcnotesarray, |
813 |
norequests => $norequests, |
813 |
norequests => $norequests, |
814 |
RequestOnOpac => C4::Context->preference("RequestOnOpac"), |
814 |
RequestOnOpac => C4::Context->preference("RequestOnOpac"), |
815 |
itemdata_ccode => $itemfields{ccode}, |
815 |
itemdata_ccode => $itemfields{ccode}, |
816 |
itemdata_materials => $itemfields{materials}, |
816 |
itemdata_materials => $itemfields{materials}, |
817 |
itemdata_enumchron => $itemfields{enumchron}, |
817 |
itemdata_enumchron => $itemfields{enumchron}, |
818 |
itemdata_uri => $itemfields{uri}, |
818 |
itemdata_uri => $itemfields{uri}, |
819 |
itemdata_copynumber => $itemfields{copynumber}, |
819 |
itemdata_copynumber => $itemfields{copynumber}, |
820 |
itemdata_itemnotes => $itemfields{itemnotes}, |
820 |
itemdata_itemnotes => $itemfields{itemnotes}, |
821 |
itemdata_location => $itemfields{location_description}, |
821 |
itemdata_location => $itemfields{location_description}, |
822 |
OpacStarRatings => C4::Context->preference("OpacStarRatings"), |
822 |
OpacStarRatings => C4::Context->preference("OpacStarRatings"), |
823 |
); |
823 |
); |
824 |
|
824 |
|
825 |
if (C4::Context->preference("AlternateHoldingsField") && scalar @items == 0) { |
825 |
if (C4::Context->preference("AlternateHoldingsField") && scalar @items == 0) { |
826 |
my $fieldspec = C4::Context->preference("AlternateHoldingsField"); |
826 |
my $fieldspec = C4::Context->preference("AlternateHoldingsField"); |
827 |
- |
|
|