Lines 156-162
for my $itm (@items) {
Link Here
|
156 |
$itm->{'imageurl'} = getitemtypeimagelocation( 'opac', $itemtypes->{ $itm->{itype} }->{'imageurl'} ); |
156 |
$itm->{'imageurl'} = getitemtypeimagelocation( 'opac', $itemtypes->{ $itm->{itype} }->{'imageurl'} ); |
157 |
$itm->{'description'} = $itemtypes->{ $itm->{itype} }->{'description'}; |
157 |
$itm->{'description'} = $itemtypes->{ $itm->{itype} }->{'description'}; |
158 |
} |
158 |
} |
159 |
foreach (qw(ccode enumchron copynumber itemnotes)) { |
159 |
foreach (qw(ccode enumchron copynumber itemnotes uri)) { |
160 |
$itemfields{$_} = 1 if ($itm->{$_}); |
160 |
$itemfields{$_} = 1 if ($itm->{$_}); |
161 |
} |
161 |
} |
162 |
|
162 |
|
Lines 203-208
my $subtitle = C4::Biblio::get_koha_field_from_marc('bibliosubtitle', 's
Link Here
|
203 |
RequestOnOpac => C4::Context->preference("RequestOnOpac"), |
203 |
RequestOnOpac => C4::Context->preference("RequestOnOpac"), |
204 |
itemdata_ccode => $itemfields{ccode}, |
204 |
itemdata_ccode => $itemfields{ccode}, |
205 |
itemdata_enumchron => $itemfields{enumchron}, |
205 |
itemdata_enumchron => $itemfields{enumchron}, |
|
|
206 |
itemdata_uri => $itemfields{uri}, |
206 |
itemdata_copynumber => $itemfields{copynumber}, |
207 |
itemdata_copynumber => $itemfields{copynumber}, |
207 |
itemdata_itemnotes => $itemfields{itemnotes}, |
208 |
itemdata_itemnotes => $itemfields{itemnotes}, |
208 |
authorised_value_images => $biblio_authorised_value_images, |
209 |
authorised_value_images => $biblio_authorised_value_images, |
209 |
- |
|
|