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 }) |