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

(-)a/C4/AuthoritiesMarc.pm (+25 lines)
Lines 697-702 sub AddAuthority { Link Here
697
697
698
    my $heading = $authority->heading_object( { record => $record } );
698
    my $heading = $authority->heading_object( { record => $record } );
699
699
700
    my $origincode = CalculateOriginCode($record, $authtypecode);
701
700
    # Update
702
    # Update
701
    $authority->update(
703
    $authority->update(
702
        {
704
        {
Lines 704-709 sub AddAuthority { Link Here
704
            marc         => $record->as_usmarc,
706
            marc         => $record->as_usmarc,
705
            marcxml      => $record->as_xml_record($format),
707
            marcxml      => $record->as_xml_record($format),
706
            heading      => $heading ? $heading->display_form : '',
708
            heading      => $heading ? $heading->display_form : '',
709
            origincode   => $origincode,
707
        }
710
        }
708
    );
711
    );
709
712
Lines 1228-1233 sub GetAuthorizedHeading { Link Here
1228
    return;
1231
    return;
1229
}
1232
}
1230
1233
1234
=head2 CalculateOriginCode
1235
1236
    Finds the auth_header.origincode from the given MARC Authorities Record for the given MARC Authorities Framework
1237
1238
=cut
1239
1240
sub CalculateOriginCode {
1241
    my ($record, $authtypecode) = @_;
1242
1243
    my ($tagfield, $tagsubfield) = GetAuthMARCFromKohaField('auth_header.origincode', $authtypecode);
1244
    if (not(defined($tagfield) && defined($tagsubfield)) || not($record->subfield($tagfield, $tagsubfield))) {
1245
        if (C4::Context->preference('marcflavour') eq 'MARC21') {
1246
            return $record->subfield('040', 'c') || $record->subfield('040', 'a') || $record->subfield('024', '2') || $record->field('003') || '';
1247
        }
1248
        else {
1249
            warn "KohaToMARCMapping for 'auth_header.origincode' not set for '".C4::Context->preference('marcflavour')."' and don't know what fallbacks to use.";
1250
            return '';
1251
        }
1252
    }
1253
    return $record->subfield($tagfield, $tagsubfield);
1254
}
1255
1231
=head2 CompareFieldWithAuthority
1256
=head2 CompareFieldWithAuthority
1232
1257
1233
  $match = &CompareFieldWithAuthority({ field => $field, authid => $authid })
1258
  $match = &CompareFieldWithAuthority({ field => $field, authid => $authid })
(-)a/Koha/SearchEngine/Elasticsearch/Search.pm (+1 lines)
Lines 247-252 sub search_auth_compat { Link Here
247
            # Turn the resultset into a hash
247
            # Turn the resultset into a hash
248
            $result{authtype}     = $authtype ? $authtype->authtypetext : $authtypecode;
248
            $result{authtype}     = $authtype ? $authtype->authtypetext : $authtypecode;
249
            $result{reported_tag} = $reported_tag;
249
            $result{reported_tag} = $reported_tag;
250
            $result{origincode}   = C4::AuthoritiesMarc::CalculateOriginCode($marc, $authtypecode);
250
251
251
            # Reimplementing BuildSummary is out of scope because it'll be hard
252
            # Reimplementing BuildSummary is out of scope because it'll be hard
252
            $result{summary} =
253
            $result{summary} =
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt (+2 lines)
Lines 61-66 Link Here
61
            <table>
61
            <table>
62
                <tr>
62
                <tr>
63
                    <th>Summary</th>
63
                    <th>Summary</th>
64
                    <th>Source</th>
64
                    <th>Heading type</th>
65
                    <th>Heading type</th>
65
                    <th>Used</th>
66
                    <th>Used</th>
66
                    [% IF Koha.Preference('ShowHeadingUse') %]
67
                    [% IF Koha.Preference('ShowHeadingUse') %]
Lines 78-83 Link Here
78
                                [% PROCESS authresult summary=resul.summary authid=resul.authid auth_preview=1 %]
79
                                [% PROCESS authresult summary=resul.summary authid=resul.authid auth_preview=1 %]
79
                            [% END %]
80
                            [% END %]
80
                        </td>
81
                        </td>
82
                        <td>[% resul.origincode %]</td>
81
                        <td>[% resul.summary.label | html %]</td>
83
                        <td>[% resul.summary.label | html %]</td>
82
                        <td>
84
                        <td>
83
                            [% IF resul.used > 0 %]
85
                            [% IF resul.used > 0 %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt (-1 / +2 lines)
Lines 64-69 Link Here
64
      <table>
64
      <table>
65
          <tr>
65
          <tr>
66
            <th>Summary</th>
66
            <th>Summary</th>
67
            <th>Source</th>
67
            <th>Heading type</th>
68
            <th>Heading type</th>
68
            [% UNLESS ( isEDITORS ) %]
69
            [% UNLESS ( isEDITORS ) %]
69
              <th>Used in</th>
70
              <th>Used in</th>
Lines 84-89 Link Here
84
              [% PROCESS authresult summary=resul.summary authid=resul.authid %]
85
              [% PROCESS authresult summary=resul.summary authid=resul.authid %]
85
            [% END %]
86
            [% END %]
86
          </td>
87
          </td>
88
          <td>[% resul.origincode %]</td>
87
          <td>[% resul.authtype | html %]</td>
89
          <td>[% resul.authtype | html %]</td>
88
        [% UNLESS ( resul.isEDITORS ) %]
90
        [% UNLESS ( resul.isEDITORS ) %]
89
          <td>
91
          <td>
90
- 

Return to bug 20153