|
Lines 176-187
$template->param(
Link Here
|
| 176 |
); |
176 |
); |
| 177 |
|
177 |
|
| 178 |
my $marcnotesarray = GetMarcNotes( $record, $marcflavour ); |
178 |
my $marcnotesarray = GetMarcNotes( $record, $marcflavour ); |
| 179 |
my $marcisbnsarray = GetMarcISBN( $record, $marcflavour ); |
|
|
| 180 |
my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour ); |
| 181 |
my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour ); |
| 182 |
my $marcseriesarray = GetMarcSeries($record,$marcflavour); |
| 183 |
my $marcurlsarray = GetMarcUrls ($record,$marcflavour); |
| 184 |
my $marchostsarray = GetMarcHosts($record,$marcflavour); |
| 185 |
|
179 |
|
| 186 |
my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search->unblessed } }; |
180 |
my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search->unblessed } }; |
| 187 |
|
181 |
|
|
Lines 418-429
if (scalar(@itemloop) == 0 || scalar(@otheritemloop) == 0) {
Link Here
|
| 418 |
$template->param( norequests => $norequests ); |
412 |
$template->param( norequests => $norequests ); |
| 419 |
$template->param( |
413 |
$template->param( |
| 420 |
MARCNOTES => $marcnotesarray, |
414 |
MARCNOTES => $marcnotesarray, |
| 421 |
MARCSUBJCTS => $marcsubjctsarray, |
|
|
| 422 |
MARCAUTHORS => $marcauthorsarray, |
| 423 |
MARCSERIES => $marcseriesarray, |
| 424 |
MARCURLS => $marcurlsarray, |
| 425 |
MARCISBNS => $marcisbnsarray, |
| 426 |
MARCHOSTS => $marchostsarray, |
| 427 |
itemdata_ccode => $itemfields{ccode}, |
415 |
itemdata_ccode => $itemfields{ccode}, |
| 428 |
itemdata_enumchron => $itemfields{enumchron}, |
416 |
itemdata_enumchron => $itemfields{enumchron}, |
| 429 |
itemdata_uri => $itemfields{uri}, |
417 |
itemdata_uri => $itemfields{uri}, |