Lines 698-704
if ( not $viewallitems and @items > $max_items_to_display ) {
Link Here
|
698 |
$itm->{'imageurl'} = getitemtypeimagelocation( 'opac', $itemtypes->{ $itm->{itype} }->{'imageurl'} ); |
698 |
$itm->{'imageurl'} = getitemtypeimagelocation( 'opac', $itemtypes->{ $itm->{itype} }->{'imageurl'} ); |
699 |
$itm->{'description'} = $itemtypes->{ $itm->{itype} }->{translated_description}; |
699 |
$itm->{'description'} = $itemtypes->{ $itm->{itype} }->{translated_description}; |
700 |
} |
700 |
} |
701 |
foreach (qw(ccode enumchron copynumber itemnotes location_description uri)) { |
701 |
foreach (qw(ccode materials enumchron copynumber itemnotes location_description uri)) { |
702 |
$itemfields{$_} = 1 if ($itm->{$_}); |
702 |
$itemfields{$_} = 1 if ($itm->{$_}); |
703 |
} |
703 |
} |
704 |
|
704 |
|
Lines 780-785
if( C4::Context->preference('ArticleRequests') ) {
Link Here
|
780 |
norequests => $norequests, |
780 |
norequests => $norequests, |
781 |
RequestOnOpac => C4::Context->preference("RequestOnOpac"), |
781 |
RequestOnOpac => C4::Context->preference("RequestOnOpac"), |
782 |
itemdata_ccode => $itemfields{ccode}, |
782 |
itemdata_ccode => $itemfields{ccode}, |
|
|
783 |
itemdata_materials => $itemfields{materials}, |
783 |
itemdata_enumchron => $itemfields{enumchron}, |
784 |
itemdata_enumchron => $itemfields{enumchron}, |
784 |
itemdata_uri => $itemfields{uri}, |
785 |
itemdata_uri => $itemfields{uri}, |
785 |
itemdata_copynumber => $itemfields{copynumber}, |
786 |
itemdata_copynumber => $itemfields{copynumber}, |
786 |
- |
|
|