Lines 514-520
sub BatchFindDuplicates {
Link Here
|
514 |
|
514 |
|
515 |
=head2 BatchCommitRecords |
515 |
=head2 BatchCommitRecords |
516 |
|
516 |
|
517 |
my ($num_added, $num_updated, $num_items_added, $num_items_errored, $num_ignored) = |
517 |
my ($num_added, $num_updated, $num_items_added, $num_items_replaced, $num_items_errored, $num_ignored) = |
518 |
BatchCommitRecords($batch_id, $framework, |
518 |
BatchCommitRecords($batch_id, $framework, |
519 |
$progress_interval, $progress_callback); |
519 |
$progress_interval, $progress_callback); |
520 |
|
520 |
|
Lines 539-544
sub BatchCommitRecords {
Link Here
|
539 |
my $num_added = 0; |
539 |
my $num_added = 0; |
540 |
my $num_updated = 0; |
540 |
my $num_updated = 0; |
541 |
my $num_items_added = 0; |
541 |
my $num_items_added = 0; |
|
|
542 |
my $num_items_replaced = 0; |
542 |
my $num_items_errored = 0; |
543 |
my $num_items_errored = 0; |
543 |
my $num_ignored = 0; |
544 |
my $num_ignored = 0; |
544 |
# commit (i.e., save, all records in the batch) |
545 |
# commit (i.e., save, all records in the batch) |
Lines 598-606
sub BatchCommitRecords {
Link Here
|
598 |
my $biblioitemnumber; |
599 |
my $biblioitemnumber; |
599 |
($recordid, $biblioitemnumber) = AddBiblio($marc_record, $framework); |
600 |
($recordid, $biblioitemnumber) = AddBiblio($marc_record, $framework); |
600 |
$query = "UPDATE import_biblios SET matched_biblionumber = ? WHERE import_record_id = ?"; |
601 |
$query = "UPDATE import_biblios SET matched_biblionumber = ? WHERE import_record_id = ?"; |
601 |
if ($item_result eq 'create_new') { |
602 |
if ($item_result eq 'create_new' || $item_result eq 'replace') { |
602 |
my ($bib_items_added, $bib_items_errored) = BatchCommitItems($rowref->{'import_record_id'}, $recordid); |
603 |
my ($bib_items_added, $bib_items_replaced, $bib_items_errored) = BatchCommitItems($rowref->{'import_record_id'}, $recordid, $item_result); |
603 |
$num_items_added += $bib_items_added; |
604 |
$num_items_added += $bib_items_added; |
|
|
605 |
$num_items_replaced += $bib_items_replaced; |
604 |
$num_items_errored += $bib_items_errored; |
606 |
$num_items_errored += $bib_items_errored; |
605 |
} |
607 |
} |
606 |
} else { |
608 |
} else { |
Lines 631-639
sub BatchCommitRecords {
Link Here
|
631 |
ModBiblio($marc_record, $recordid, $oldbiblio->{'frameworkcode'}); |
633 |
ModBiblio($marc_record, $recordid, $oldbiblio->{'frameworkcode'}); |
632 |
$query = "UPDATE import_biblios SET matched_biblionumber = ? WHERE import_record_id = ?"; |
634 |
$query = "UPDATE import_biblios SET matched_biblionumber = ? WHERE import_record_id = ?"; |
633 |
|
635 |
|
634 |
if ($item_result eq 'create_new') { |
636 |
if ($item_result eq 'create_new' || $item_result eq 'replace') { |
635 |
my ($bib_items_added, $bib_items_errored) = BatchCommitItems($rowref->{'import_record_id'}, $recordid); |
637 |
my ($bib_items_added, $bib_items_replaced, $bib_items_errored) = BatchCommitItems($rowref->{'import_record_id'}, $recordid, $item_result); |
636 |
$num_items_added += $bib_items_added; |
638 |
$num_items_added += $bib_items_added; |
|
|
639 |
$num_items_replaced += $bib_items_replaced; |
637 |
$num_items_errored += $bib_items_errored; |
640 |
$num_items_errored += $bib_items_errored; |
638 |
} |
641 |
} |
639 |
} else { |
642 |
} else { |
Lines 653-660
sub BatchCommitRecords {
Link Here
|
653 |
} elsif ($record_result eq 'ignore') { |
656 |
} elsif ($record_result eq 'ignore') { |
654 |
$num_ignored++; |
657 |
$num_ignored++; |
655 |
if ($record_type eq 'biblio' and defined $recordid and $item_result eq 'create_new') { |
658 |
if ($record_type eq 'biblio' and defined $recordid and $item_result eq 'create_new') { |
656 |
my ($bib_items_added, $bib_items_errored) = BatchCommitItems($rowref->{'import_record_id'}, $recordid); |
659 |
my ($bib_items_added, $bib_items_replaced, $bib_items_errored) = BatchCommitItems($rowref->{'import_record_id'}, $recordid, $item_result); |
657 |
$num_items_added += $bib_items_added; |
660 |
$num_items_added += $bib_items_added; |
|
|
661 |
$num_items_replaced += $bib_items_replaced; |
658 |
$num_items_errored += $bib_items_errored; |
662 |
$num_items_errored += $bib_items_errored; |
659 |
# still need to record the matched biblionumber so that the |
663 |
# still need to record the matched biblionumber so that the |
660 |
# items can be reverted |
664 |
# items can be reverted |
Lines 667-673
sub BatchCommitRecords {
Link Here
|
667 |
} |
671 |
} |
668 |
$sth->finish(); |
672 |
$sth->finish(); |
669 |
SetImportBatchStatus($batch_id, 'imported'); |
673 |
SetImportBatchStatus($batch_id, 'imported'); |
670 |
return ($num_added, $num_updated, $num_items_added, $num_items_errored, $num_ignored); |
674 |
return ($num_added, $num_updated, $num_items_added, $num_items_replaced, $num_items_errored, $num_ignored); |
671 |
} |
675 |
} |
672 |
|
676 |
|
673 |
=head2 BatchCommitItems |
677 |
=head2 BatchCommitItems |
Lines 678-689
sub BatchCommitRecords {
Link Here
|
678 |
=cut |
682 |
=cut |
679 |
|
683 |
|
680 |
sub BatchCommitItems { |
684 |
sub BatchCommitItems { |
681 |
my ($import_record_id, $biblionumber) = @_; |
685 |
my ($import_record_id, $biblionumber, $action) = @_; |
682 |
|
686 |
|
683 |
my $dbh = C4::Context->dbh; |
687 |
my $dbh = C4::Context->dbh; |
684 |
|
688 |
|
685 |
my $num_items_added = 0; |
689 |
my ($num_items_added, $num_items_errored, $num_items_replaced) = 0; |
686 |
my $num_items_errored = 0; |
|
|
687 |
my $sth = $dbh->prepare("SELECT import_items_id, import_items.marcxml, encoding |
690 |
my $sth = $dbh->prepare("SELECT import_items_id, import_items.marcxml, encoding |
688 |
FROM import_items |
691 |
FROM import_items |
689 |
JOIN import_records USING (import_record_id) |
692 |
JOIN import_records USING (import_record_id) |
Lines 693-703
sub BatchCommitItems {
Link Here
|
693 |
$sth->execute(); |
696 |
$sth->execute(); |
694 |
while (my $row = $sth->fetchrow_hashref()) { |
697 |
while (my $row = $sth->fetchrow_hashref()) { |
695 |
my $item_marc = MARC::Record->new_from_xml(StripNonXmlChars($row->{'marcxml'}), 'UTF-8', $row->{'encoding'}); |
698 |
my $item_marc = MARC::Record->new_from_xml(StripNonXmlChars($row->{'marcxml'}), 'UTF-8', $row->{'encoding'}); |
|
|
699 |
#delete date_due subfield as to not accidentally delete item checkout due dates |
700 |
my ($MARCfield,$MARCsubfield) = GetMarcFromKohaField('items.onloan', GetFrameworkCode($biblionumber)); |
701 |
$item_marc->field($MARCfield)->delete_subfield(code => $MARCsubfield); |
696 |
# FIXME - duplicate barcode check needs to become part of AddItemFromMarc() |
702 |
# FIXME - duplicate barcode check needs to become part of AddItemFromMarc() |
697 |
my $item = TransformMarcToKoha($dbh, $item_marc); |
703 |
my $item = TransformMarcToKoha($dbh, $item_marc); |
698 |
my $duplicate_barcode = exists($item->{'barcode'}) && GetItemnumberFromBarcode($item->{'barcode'}); |
704 |
my $duplicate_barcode = exists($item->{'barcode'}) && GetItemnumberFromBarcode($item->{'barcode'}); |
699 |
if ($duplicate_barcode) { |
705 |
my $duplicate_itemnumber = exists($item->{'itemnumber'}); |
700 |
my $updsth = $dbh->prepare("UPDATE import_items SET status = ?, import_error = ? WHERE import_items_id = ?"); |
706 |
my $updsth = $dbh->prepare("UPDATE import_items SET status = ?, itemnumber = ? WHERE import_items_id = ?"); |
|
|
707 |
if($action eq "replace" && $duplicate_itemnumber){ |
708 |
ModItemFromMarc($item_marc, $biblionumber, $item->{itemnumber}); |
709 |
$updsth->bind_param(1, 'imported'); |
710 |
$updsth->bind_param(2, $item->{itemnumber}); |
711 |
$updsth->bind_param(3, $row->{'import_items_id'}); |
712 |
$updsth->execute(); |
713 |
$updsth->finish(); |
714 |
$num_items_replaced++; |
715 |
} |
716 |
elsif ($duplicate_barcode) { |
701 |
$updsth->bind_param(1, 'error'); |
717 |
$updsth->bind_param(1, 'error'); |
702 |
$updsth->bind_param(2, 'duplicate item barcode'); |
718 |
$updsth->bind_param(2, 'duplicate item barcode'); |
703 |
$updsth->bind_param(3, $row->{'import_items_id'}); |
719 |
$updsth->bind_param(3, $row->{'import_items_id'}); |
Lines 705-711
sub BatchCommitItems {
Link Here
|
705 |
$num_items_errored++; |
721 |
$num_items_errored++; |
706 |
} else { |
722 |
} else { |
707 |
my ($item_biblionumber, $biblioitemnumber, $itemnumber) = AddItemFromMarc($item_marc, $biblionumber); |
723 |
my ($item_biblionumber, $biblioitemnumber, $itemnumber) = AddItemFromMarc($item_marc, $biblionumber); |
708 |
my $updsth = $dbh->prepare("UPDATE import_items SET status = ?, itemnumber = ? WHERE import_items_id = ?"); |
|
|
709 |
$updsth->bind_param(1, 'imported'); |
724 |
$updsth->bind_param(1, 'imported'); |
710 |
$updsth->bind_param(2, $itemnumber); |
725 |
$updsth->bind_param(2, $itemnumber); |
711 |
$updsth->bind_param(3, $row->{'import_items_id'}); |
726 |
$updsth->bind_param(3, $row->{'import_items_id'}); |
Lines 715-721
sub BatchCommitItems {
Link Here
|
715 |
} |
730 |
} |
716 |
} |
731 |
} |
717 |
$sth->finish(); |
732 |
$sth->finish(); |
718 |
return ($num_items_added, $num_items_errored); |
733 |
return ($num_items_added, $num_items_replaced, $num_items_errored); |
719 |
} |
734 |
} |
720 |
|
735 |
|
721 |
=head2 BatchRevertRecords |
736 |
=head2 BatchRevertRecords |
Lines 1461-1467
sub _get_commit_action {
Link Here
|
1461 |
} elsif ($overlay_action eq 'ignore') { |
1476 |
} elsif ($overlay_action eq 'ignore') { |
1462 |
$bib_result = 'ignore'; |
1477 |
$bib_result = 'ignore'; |
1463 |
} |
1478 |
} |
1464 |
$item_result = ($item_action eq 'always_add' or $item_action eq 'add_only_for_matches') ? 'create_new' : 'ignore'; |
1479 |
if($item_action eq 'always_add' or $item_action eq 'add_only_for_matches'){ |
|
|
1480 |
$item_result = 'create_new'; |
1481 |
} |
1482 |
elsif($item_action eq 'replace'){ |
1483 |
$item_result = 'replace'; |
1484 |
} |
1485 |
else { |
1486 |
$item_result = 'ignore'; |
1487 |
} |
1465 |
} else { |
1488 |
} else { |
1466 |
$bib_result = $nomatch_action; |
1489 |
$bib_result = $nomatch_action; |
1467 |
$item_result = ($item_action eq 'always_add' or $item_action eq 'add_only_for_new') ? 'create_new' : 'ignore'; |
1490 |
$item_result = ($item_action eq 'always_add' or $item_action eq 'add_only_for_new') ? 'create_new' : 'ignore'; |