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

(-)a/cataloguing/value_builder/unimarc_field_4XX.pl (+8 lines)
Lines 378-384 sub plugin { Link Here
378
           )
378
           )
379
         {
379
         {
380
            my $record = C4::Search::new_record_from_zebra( 'biblioserver', $results->[$i] );
380
            my $record = C4::Search::new_record_from_zebra( 'biblioserver', $results->[$i] );
381
            next unless $record;
381
            my $rechash = TransformMarcToKoha( $dbh, $record );
382
            my $rechash = TransformMarcToKoha( $dbh, $record );
383
            if ( my $f = $record->field('200') ) {
384
                $rechash->{fulltitle} =
385
                    join(', ', map { $_->[1] } grep { $_->[0] =~ /[aehi]/ } $f->subfields() );
386
            }
387
            else {
388
                $rechash->{fulltitle} = $rechash->{title};
389
            }
382
            my $pos;
390
            my $pos;
383
            my $countitems;
391
            my $countitems;
384
            if ( $rechash->{itemnumber} ) {
392
            if ( $rechash->{itemnumber} ) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_4XX.tt (-3 / +2 lines)
Lines 167-175 Link Here
167
                                    [% IF ( resul.even ) %]<td class="hilighted">
167
                                    [% IF ( resul.even ) %]<td class="hilighted">
168
                                    [% ELSE %]<td>[% END %]
168
                                    [% ELSE %]<td>[% END %]
169
                                                            [% IF ( resul.MARC_ON ) %]
169
                                                            [% IF ( resul.MARC_ON ) %]
170
                                                                    <a_class="transparent resultlist" href="/cgi-bin/koha/MARCdetail.pl?biblionumber=[% resul.biblionumber |uri %]">[% resul.title |html %]</a>
170
                                                                    <a class="transparent resultlist" href="/cgi-bin/koha/MARCdetail.pl?biblionumber=[% resul.biblionumber |url %]">[% resul.title |html %]</a>
171
                                                            [% ELSE %]
171
                                                            [% ELSE %]
172
                                                                    <a_class="transparent resultlist" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% resul.biblionumber |uri %]">[% resul.title |html %]</a>   [% END %]
172
                                                                    <a class="transparent resultlist" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% resul.biblionumber |url %]">[% resul.fulltitle |html %]</a>[% END %]
173
                                                    <p>[% resul.author |html %]
173
                                                    <p>[% resul.author |html %]
174
                                                    [% IF ( resul.publishercode ) %]- [% resul.publishercode |html %][% END %]
174
                                                    [% IF ( resul.publishercode ) %]- [% resul.publishercode |html %][% END %]
175
                                                    [% IF ( resul.place ) %] ; [% resul.place |html %][% END %]
175
                                                    [% IF ( resul.place ) %] ; [% resul.place |html %][% END %]
176
- 

Return to bug 13904