|
Lines 521-528
foreach my $subscription (@subscriptions) {
Link Here
|
| 521 |
|
521 |
|
| 522 |
$dat->{'count'} = scalar(@items); |
522 |
$dat->{'count'} = scalar(@items); |
| 523 |
|
523 |
|
| 524 |
|
524 |
if ( C4::Context->preference('AuthorisedValueImages') ) { |
| 525 |
my $biblio_authorised_value_images = C4::Items::get_authorised_value_images( C4::Biblio::get_biblio_authorised_values( $biblionumber, $record ) ); |
525 |
my $biblio_authorised_value_images = |
|
|
526 |
C4::Items::get_authorised_value_images( |
| 527 |
C4::Biblio::get_biblio_authorised_values( $biblionumber, $record ) ); |
| 528 |
$template->param( |
| 529 |
authorised_value_images => $biblio_authorised_value_images |
| 530 |
); |
| 531 |
} |
| 526 |
|
532 |
|
| 527 |
my (%item_reserves, %priority); |
533 |
my (%item_reserves, %priority); |
| 528 |
my ($show_holds_count, $show_priority); |
534 |
my ($show_holds_count, $show_priority); |
|
Lines 653-659
my $subtitle = GetRecordValue('subtitle', $record, GetFrameworkCode($bib
Link Here
|
| 653 |
itemdata_uri => $itemfields{uri}, |
659 |
itemdata_uri => $itemfields{uri}, |
| 654 |
itemdata_copynumber => $itemfields{copynumber}, |
660 |
itemdata_copynumber => $itemfields{copynumber}, |
| 655 |
itemdata_itemnotes => $itemfields{itemnotes}, |
661 |
itemdata_itemnotes => $itemfields{itemnotes}, |
| 656 |
authorised_value_images => $biblio_authorised_value_images, |
|
|
| 657 |
subtitle => $subtitle, |
662 |
subtitle => $subtitle, |
| 658 |
OpacStarRatings => C4::Context->preference("OpacStarRatings"), |
663 |
OpacStarRatings => C4::Context->preference("OpacStarRatings"), |
| 659 |
); |
664 |
); |
| 660 |
- |
|
|