Lines 143-149
for my $itm (@items) {
Link Here
|
143 |
$itm->{'imageurl'} = getitemtypeimagelocation( 'opac', $itemtypes->{ $itm->{itype} }->{'imageurl'} ); |
143 |
$itm->{'imageurl'} = getitemtypeimagelocation( 'opac', $itemtypes->{ $itm->{itype} }->{'imageurl'} ); |
144 |
$itm->{'description'} = $itemtypes->{ $itm->{itype} }->{'description'}; |
144 |
$itm->{'description'} = $itemtypes->{ $itm->{itype} }->{'description'}; |
145 |
} |
145 |
} |
146 |
foreach (qw(ccode enumchron copynumber itemnotes)) { |
146 |
foreach (qw(ccode enumchron copynumber itemnotes uri)) { |
147 |
$itemfields{$_} = 1 if ($itm->{$_}); |
147 |
$itemfields{$_} = 1 if ($itm->{$_}); |
148 |
} |
148 |
} |
149 |
|
149 |
|
Lines 190-195
my $subtitle = C4::Biblio::get_koha_field_from_marc('bibliosubtitle', 's
Link Here
|
190 |
RequestOnOpac => C4::Context->preference("RequestOnOpac"), |
190 |
RequestOnOpac => C4::Context->preference("RequestOnOpac"), |
191 |
itemdata_ccode => $itemfields{ccode}, |
191 |
itemdata_ccode => $itemfields{ccode}, |
192 |
itemdata_enumchron => $itemfields{enumchron}, |
192 |
itemdata_enumchron => $itemfields{enumchron}, |
|
|
193 |
itemdata_uri => $itemfields{uri}, |
193 |
itemdata_copynumber => $itemfields{copynumber}, |
194 |
itemdata_copynumber => $itemfields{copynumber}, |
194 |
itemdata_itemnotes => $itemfields{itemnotes}, |
195 |
itemdata_itemnotes => $itemfields{itemnotes}, |
195 |
authorised_value_images => $biblio_authorised_value_images, |
196 |
authorised_value_images => $biblio_authorised_value_images, |
196 |
- |
|
|