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

(-)a/C4/Breeding.pm (+22 lines)
Lines 340-345 sub _add_rowdata { Link Here
340
    }
340
    }
341
    $row->{date}//= $row->{date2};
341
    $row->{date}//= $row->{date2};
342
    $row->{isbn}=_isbn_replace($row->{isbn});
342
    $row->{isbn}=_isbn_replace($row->{isbn});
343
344
    my $field_50 = '';
345
    my $field_82 = '';
346
    my $field_90 = '';
347
348
    my $temp50 = $record->field('050');
349
    if ($temp50) {
350
        $field_50 = $temp50->subfield('a') . ' ' . $temp50->subfield('b');
351
    }
352
    my $temp82 = $record->field('082');
353
    if ($temp82) {
354
        $field_82 = $temp82->subfield('a') . ' ' . $temp82->subfield('b');
355
    }
356
    my $temp90 = $record->field('090');
357
    if ($temp90) {
358
        $field_90 = $temp90->subfield('a') . ' ' . $temp90->subfield('b');
359
    }
360
361
    $row->{field_50}     = $field_50;
362
    $row->{field_82}     = $field_82;
363
    $row->{field_90}     = $field_90;
364
343
    return $row;
365
    return $row;
344
}
366
}
345
367
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt (-1 / +12 lines)
Lines 184-189 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
184
        <th>Date</th>
184
        <th>Date</th>
185
        <th>Edition</th>
185
        <th>Edition</th>
186
        <th>ISBN</th>
186
        <th>ISBN</th>
187
        <th>Call number fields</th>
187
        <th>LCCN</th>
188
        <th>LCCN</th>
188
        <th>MARC</th>
189
        <th>MARC</th>
189
        <th>Card</th>
190
        <th>Card</th>
Lines 199-204 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
199
            <td>[% breeding_loo.date %]</td>
200
            <td>[% breeding_loo.date %]</td>
200
            <td>[% breeding_loo.edition %]</td>
201
            <td>[% breeding_loo.edition %]</td>
201
            <td>[% breeding_loo.isbn %]</td>
202
            <td>[% breeding_loo.isbn %]</td>
203
            <td class="single-line">
204
            [% IF ( breeding_loo.field_50 ) %]
205
                050ab: [% breeding_loo.field_50 %]<br />
206
            [% END %]
207
            [% IF ( breeding_loo.field_82 ) %]
208
                082ab: [% breeding_loo.field_82 %]<br />
209
            [% END %]
210
            [% IF ( breeding_loo.field_90 ) %]
211
                090ab: [% breeding_loo.field_90 %]
212
            [% END %]
213
            </td>
202
            <td>[% breeding_loo.lccn %]</td>
214
            <td>[% breeding_loo.lccn %]</td>
203
            <td><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" title="MARC" rel="gb_page_center[600,500]">MARC</a></td>
215
            <td><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" title="MARC" rel="gb_page_center[600,500]">MARC</a></td>
204
            <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>
216
            <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>
205
- 

Return to bug 11874