Lines 1415-1423
Then we should add some new parameter : bibliotargettag, authtargettag
Link Here
|
1415 |
=cut |
1415 |
=cut |
1416 |
|
1416 |
|
1417 |
sub merge { |
1417 |
sub merge { |
1418 |
my ($mergefrom,$MARCfrom,$mergeto,$MARCto) = @_; |
1418 |
my ($mergefrom, $MARCfrom, $mergeto, $MARCto) = @_; |
1419 |
my ($counteditedbiblio,$countunmodifiedbiblio,$counterrors)=(0,0,0); |
1419 |
my ($counteditedbiblio,$countunmodifiedbiblio,$counterrors)=(0,0,0); |
1420 |
my $dbh=C4::Context->dbh; |
1420 |
my $dbh = C4::Context->dbh; |
1421 |
my $authtypecodefrom = GetAuthTypeCode($mergefrom); |
1421 |
my $authtypecodefrom = GetAuthTypeCode($mergefrom); |
1422 |
my $authtypecodeto = GetAuthTypeCode($mergeto); |
1422 |
my $authtypecodeto = GetAuthTypeCode($mergeto); |
1423 |
# warn "mergefrom : $authtypecodefrom $mergefrom mergeto : $authtypecodeto $mergeto "; |
1423 |
# warn "mergefrom : $authtypecodefrom $mergefrom mergeto : $authtypecodeto $mergeto "; |
Lines 1430-1441
sub merge {
Link Here
|
1430 |
my ($auth_tag_to_report_from) = $sth->fetchrow; |
1430 |
my ($auth_tag_to_report_from) = $sth->fetchrow; |
1431 |
$sth->execute($authtypecodeto); |
1431 |
$sth->execute($authtypecodeto); |
1432 |
my ($auth_tag_to_report_to) = $sth->fetchrow; |
1432 |
my ($auth_tag_to_report_to) = $sth->fetchrow; |
1433 |
|
1433 |
|
1434 |
my @record_to; |
1434 |
my @record_to; |
1435 |
@record_to = $MARCto->field($auth_tag_to_report_to)->subfields() if $MARCto->field($auth_tag_to_report_to); |
1435 |
@record_to = $MARCto->field($auth_tag_to_report_to)->subfields() if $MARCto->field($auth_tag_to_report_to); |
1436 |
my @record_from; |
1436 |
my @record_from; |
1437 |
@record_from = $MARCfrom->field($auth_tag_to_report_from)->subfields() if $MARCfrom->field($auth_tag_to_report_from); |
1437 |
@record_from = $MARCfrom->field($auth_tag_to_report_from)->subfields() if $MARCfrom->field($auth_tag_to_report_from); |
1438 |
|
1438 |
|
1439 |
my @reccache; |
1439 |
my @reccache; |
1440 |
# search all biblio tags using this authority. |
1440 |
# search all biblio tags using this authority. |
1441 |
#Getting marcbiblios impacted by the change. |
1441 |
#Getting marcbiblios impacted by the change. |
Lines 1472-1513
sub merge {
Link Here
|
1472 |
while (my ($tagfield) = $sth->fetchrow) { |
1472 |
while (my ($tagfield) = $sth->fetchrow) { |
1473 |
push @tags_using_authtype,$tagfield ; |
1473 |
push @tags_using_authtype,$tagfield ; |
1474 |
} |
1474 |
} |
1475 |
my $tag_to=0; |
1475 |
my $tag_to=0; |
1476 |
if ($authtypecodeto ne $authtypecodefrom){ |
1476 |
if ($authtypecodeto ne $authtypecodefrom){ |
1477 |
# If many tags, take the first |
1477 |
# If many tags, take the first |
1478 |
$sth->execute($authtypecodeto); |
1478 |
$sth->execute($authtypecodeto); |
1479 |
$tag_to=$sth->fetchrow; |
1479 |
$tag_to=$sth->fetchrow; |
1480 |
#warn $tag_to; |
1480 |
} |
1481 |
} |
|
|
1482 |
# BulkEdit marc records |
1481 |
# BulkEdit marc records |
1483 |
# May be used as a template for a bulkedit field |
1482 |
# May be used as a template for a bulkedit field |
1484 |
foreach my $marcrecord(@reccache){ |
1483 |
foreach my $marcrecord(@reccache){ |
1485 |
my $update; |
1484 |
my $update; |
1486 |
foreach my $tagfield (@tags_using_authtype){ |
1485 |
foreach my $tagfield (@tags_using_authtype){ |
1487 |
# warn "tagfield : $tagfield "; |
|
|
1488 |
foreach my $field ($marcrecord->field($tagfield)){ |
1486 |
foreach my $field ($marcrecord->field($tagfield)){ |
1489 |
# biblio is linked to authority with $9 subfield containing authid |
1487 |
# biblio is linked to authority with $9 subfield containing authid |
1490 |
my $auth_number=$field->subfield("9"); |
1488 |
my $auth_number=$field->subfield("9"); |
1491 |
my $tag=$field->tag(); |
1489 |
my $tag=$field->tag(); |
1492 |
if ($auth_number==$mergefrom) { |
1490 |
if ($auth_number==$mergefrom) { |
1493 |
my $field_to=MARC::Field->new(($tag_to?$tag_to:$tag),$field->indicator(1),$field->indicator(2),"9"=>$mergeto); |
1491 |
my $field_to = MARC::Field->new(($tag_to?$tag_to:$tag), |
1494 |
my $exclude='9'; |
1492 |
$field->indicator(1),$field->indicator(2),"9"=>$mergeto); |
1495 |
foreach my $subfield (grep {$_->[0] ne '9'} @record_to) { |
1493 |
my $exclude='9'; |
1496 |
$field_to->add_subfields($subfield->[0] =>$subfield->[1]); |
1494 |
foreach my $subfield (grep {$_->[0] ne '9'} @record_to) { |
1497 |
$exclude.= $subfield->[0]; |
1495 |
$field_to->add_subfields($subfield->[0] =>$subfield->[1]); |
1498 |
} |
1496 |
$exclude.= $subfield->[0]; |
1499 |
$exclude='['.$exclude.']'; |
1497 |
} |
1500 |
# add subfields in $field not included in @record_to |
1498 |
$exclude='['.$exclude.']'; |
1501 |
my @restore= grep {$_->[0]!~/$exclude/} $field->subfields(); |
1499 |
#add subfields in $field not included in @record_to |
1502 |
foreach my $subfield (@restore) { |
1500 |
my @restore= grep {$_->[0]!~/$exclude/} $field->subfields(); |
1503 |
$field_to->add_subfields($subfield->[0] =>$subfield->[1]); |
1501 |
foreach my $subfield (@restore) { |
1504 |
} |
1502 |
$field_to->add_subfields($subfield->[0] =>$subfield->[1]); |
1505 |
$marcrecord->delete_field($field); |
1503 |
} |
1506 |
$marcrecord->insert_grouped_field($field_to); |
1504 |
$marcrecord->delete_field($field); |
1507 |
$update=1; |
1505 |
$marcrecord->insert_grouped_field($field_to); |
|
|
1506 |
$update=1; |
1508 |
} |
1507 |
} |
1509 |
}#for each tag |
1508 |
}#for each tag |
1510 |
}#foreach tagfield |
1509 |
}#foreach tagfield |
|
|
1510 |
|
1511 |
my ($bibliotag,$bibliosubf) = GetMarcFromKohaField("biblio.biblionumber","") ; |
1511 |
my ($bibliotag,$bibliosubf) = GetMarcFromKohaField("biblio.biblionumber","") ; |
1512 |
my $biblionumber; |
1512 |
my $biblionumber; |
1513 |
if ($bibliotag<10){ |
1513 |
if ($bibliotag<10){ |
Lines 1524-1581
sub merge {
Link Here
|
1524 |
&ModBiblio($marcrecord,$biblionumber,GetFrameworkCode($biblionumber)) ; |
1524 |
&ModBiblio($marcrecord,$biblionumber,GetFrameworkCode($biblionumber)) ; |
1525 |
$counteditedbiblio++; |
1525 |
$counteditedbiblio++; |
1526 |
warn $counteditedbiblio if (($counteditedbiblio % 10) and $ENV{DEBUG}); |
1526 |
warn $counteditedbiblio if (($counteditedbiblio % 10) and $ENV{DEBUG}); |
1527 |
} |
1527 |
} |
1528 |
}#foreach $marc |
1528 |
}#foreach $marc |
1529 |
return $counteditedbiblio; |
1529 |
return $counteditedbiblio; |
1530 |
# now, find every other authority linked with this authority |
1530 |
} |
1531 |
# now, find every other authority linked with this authority |
|
|
1532 |
# my $oConnection=C4::Context->Zconn("authorityserver"); |
1533 |
# my $query; |
1534 |
# # att 9210 Auth-Internal-authtype |
1535 |
# # att 9220 Auth-Internal-LN |
1536 |
# # ccl.properties to add for authorities |
1537 |
# $query= "= ".$mergefrom; |
1538 |
# my $oResult = $oConnection->search(new ZOOM::Query::CCL2RPN( $query, $oConnection )); |
1539 |
# my $count=$oResult->size() if ($oResult); |
1540 |
# my @reccache; |
1541 |
# my $z=0; |
1542 |
# while ( $z<$count ) { |
1543 |
# my $rec; |
1544 |
# $rec=$oResult->record($z); |
1545 |
# my $marcdata = $rec->raw(); |
1546 |
# push @reccache, $marcdata; |
1547 |
# $z++; |
1548 |
# } |
1549 |
# $oResult->destroy(); |
1550 |
# foreach my $marc(@reccache){ |
1551 |
# my $update; |
1552 |
# my $marcrecord; |
1553 |
# $marcrecord = MARC::File::USMARC::decode($marc); |
1554 |
# foreach my $tagfield (@tags_using_authtype){ |
1555 |
# $tagfield=substr($tagfield,0,3); |
1556 |
# my @tags = $marcrecord->field($tagfield); |
1557 |
# foreach my $tag (@tags){ |
1558 |
# my $tagsubs=$tag->subfield("9"); |
1559 |
# #warn "$tagfield:$tagsubs:$mergefrom"; |
1560 |
# if ($tagsubs== $mergefrom) { |
1561 |
# $tag->update("9" =>$mergeto); |
1562 |
# foreach my $subfield (@record_to) { |
1563 |
# # warn "$subfield,$subfield->[0],$subfield->[1]"; |
1564 |
# $tag->update($subfield->[0] =>$subfield->[1]); |
1565 |
# }#for $subfield |
1566 |
# } |
1567 |
# $marcrecord->delete_field($tag); |
1568 |
# $marcrecord->add_fields($tag); |
1569 |
# $update=1; |
1570 |
# }#for each tag |
1571 |
# }#foreach tagfield |
1572 |
# my $authoritynumber = TransformMarcToKoha($dbh,$marcrecord,"") ; |
1573 |
# if ($update==1){ |
1574 |
# &ModAuthority($marcrecord,$authoritynumber,GetAuthTypeCode($authoritynumber)) ; |
1575 |
# } |
1576 |
# |
1577 |
# }#foreach $marc |
1578 |
}#sub |
1579 |
|
1531 |
|
1580 |
=head2 get_auth_type_location |
1532 |
=head2 get_auth_type_location |
1581 |
|
1533 |
|
1582 |
- |
|
|