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

(-)a/C4/Breeding.pm (+22 lines)
Lines 441-446 sub _add_rowdata { Link Here
441
    }
441
    }
442
    $row->{date}//= $row->{date2};
442
    $row->{date}//= $row->{date2};
443
    $row->{isbn}=_isbn_replace($row->{isbn});
443
    $row->{isbn}=_isbn_replace($row->{isbn});
444
445
    my $field_50 = '';
446
    my $field_82 = '';
447
    my $field_90 = '';
448
449
    my $temp50 = $record->field('050');
450
    if ($temp50) {
451
        $field_50 = $temp50->subfield('a') . ' ' . $temp50->subfield('b');
452
    }
453
    my $temp82 = $record->field('082');
454
    if ($temp82) {
455
        $field_82 = $temp82->subfield('a') . ' ' . $temp82->subfield('b');
456
    }
457
    my $temp90 = $record->field('090');
458
    if ($temp90) {
459
        $field_90 = $temp90->subfield('a') . ' ' . $temp90->subfield('b');
460
    }
461
462
    $row->{field_50}     = $field_50;
463
    $row->{field_82}     = $field_82;
464
    $row->{field_90}     = $field_90;
465
444
    return $row;
466
    return $row;
445
}
467
}
446
468
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt (-1 / +12 lines)
Lines 159-164 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
159
        <th>Date</th>
159
        <th>Date</th>
160
        <th>Edition</th>
160
        <th>Edition</th>
161
        <th>ISBN</th>
161
        <th>ISBN</th>
162
        <th>Call number fields</th>
162
        <th>LCCN</th>
163
        <th>LCCN</th>
163
        <th>MARC</th>
164
        <th>MARC</th>
164
        <th>Card</th>
165
        <th>Card</th>
Lines 174-179 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
174
            <td>[% breeding_loo.date %]</td>
175
            <td>[% breeding_loo.date %]</td>
175
            <td>[% breeding_loo.edition %]</td>
176
            <td>[% breeding_loo.edition %]</td>
176
            <td>[% breeding_loo.isbn %]</td>
177
            <td>[% breeding_loo.isbn %]</td>
178
            <td class="single-line">
179
            [% IF ( breeding_loo.field_50 ) %]
180
                050ab: [% breeding_loo.field_50 %]<br />
181
            [% END %]
182
            [% IF ( breeding_loo.field_82 ) %]
183
                082ab: [% breeding_loo.field_82 %]<br />
184
            [% END %]
185
            [% IF ( breeding_loo.field_90 ) %]
186
                090ab: [% breeding_loo.field_90 %]
187
            [% END %]
188
            </td>
177
            <td>[% breeding_loo.lccn %]</td>
189
            <td>[% breeding_loo.lccn %]</td>
178
            <td><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" title="MARC" rel="gb_page_center[600,500]">MARC</a></td>
190
            <td><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" title="MARC" rel="gb_page_center[600,500]">MARC</a></td>
179
            <td><a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;importid=[% breeding_loo.breedingid %]" title="MARC" rel="gb_page_center[600,500]">Card</a></td>
191
            <td><a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;importid=[% breeding_loo.breedingid %]" title="MARC" rel="gb_page_center[600,500]">Card</a></td>
180
- 

Return to bug 11874