|
Lines 286-291
if ( $pending_checkouts->count ) { # Useless test
Link Here
|
| 286 |
my $marcrecord = $biblio_object->metadata->record({ embed_items => 1, opac => 1, patron => $patron,}); |
286 |
my $marcrecord = $biblio_object->metadata->record({ embed_items => 1, opac => 1, patron => $patron,}); |
| 287 |
$issue->{normalized_upc} = GetNormalizedUPC( $marcrecord, C4::Context->preference('marcflavour') ); |
287 |
$issue->{normalized_upc} = GetNormalizedUPC( $marcrecord, C4::Context->preference('marcflavour') ); |
| 288 |
|
288 |
|
|
|
289 |
my $alt_titles = Koha::Biblio->alt_graph_titles({ record => $marcrecord }); |
| 290 |
if ($alt_titles){ |
| 291 |
$issue->{alt_titles} = $alt_titles; |
| 292 |
} |
| 293 |
|
| 289 |
# My Summary HTML |
294 |
# My Summary HTML |
| 290 |
if (my $my_summary_html = C4::Context->preference('OPACMySummaryHTML')){ |
295 |
if (my $my_summary_html = C4::Context->preference('OPACMySummaryHTML')){ |
| 291 |
$issue->{author} ? $my_summary_html =~ s/{AUTHOR}/$issue->{author}/g : $my_summary_html =~ s/{AUTHOR}//g; |
296 |
$issue->{author} ? $my_summary_html =~ s/{AUTHOR}/$issue->{author}/g : $my_summary_html =~ s/{AUTHOR}//g; |
| 292 |
- |
|
|