View | Details | Raw Unified | Return to bug 17182
Collapse All | Expand All

(-)a/acqui/neworderbiblio.pl (+1 lines)
Lines 127-132 my @results; Link Here
127
foreach my $result ( @{$marcresults} ) {
127
foreach my $result ( @{$marcresults} ) {
128
    my $marcrecord = C4::Search::new_record_from_zebra( 'biblioserver', $result );
128
    my $marcrecord = C4::Search::new_record_from_zebra( 'biblioserver', $result );
129
    my $biblio = TransformMarcToKoha( $marcrecord, '' );
129
    my $biblio = TransformMarcToKoha( $marcrecord, '' );
130
    $biblio->{subtitles} = GetRecordValue( 'subtitle', GetMarcBiblio( $biblio->{biblionumber} ),  GetFrameworkCode( $biblio->{biblionumber} ) );
130
131
131
    $biblio->{booksellerid} = $booksellerid;
132
    $biblio->{booksellerid} = $booksellerid;
132
    push @results, $biblio;
133
    push @results, $biblio;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderbiblio.tt (-1 / +1 lines)
Lines 75-80 Link Here
75
        <tr>
75
        <tr>
76
            <td>
76
            <td>
77
                <p><span class="title"><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.biblionumber %]">[% biblio.title | html %]</a></span>
77
                <p><span class="title"><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.biblionumber %]">[% biblio.title | html %]</a></span>
78
                [% FOREACH subtitle IN biblio.subtitles %] <span class="subtitle">[% subtitle.subfield %]</span>[% END %]
78
                [% IF ( biblio.author ) %]  by <span class="author">[% biblio.author %]</span>,[% END %]</p>
79
                [% IF ( biblio.author ) %]  by <span class="author">[% biblio.author %]</span>,[% END %]</p>
79
                <p>[% IF ( biblio.isbn ) %] [% biblio.isbn %][% END %]
80
                <p>[% IF ( biblio.isbn ) %] [% biblio.isbn %][% END %]
80
                [% IF ( biblio.pages ) %] - [% biblio.pages %][% END %]
81
                [% IF ( biblio.pages ) %] - [% biblio.pages %][% END %]
81
- 

Return to bug 17182