|
Lines 1-7
Link Here
|
| 1 |
#!/usr/bin/perl |
1 |
#!/usr/bin/perl |
| 2 |
|
2 |
|
| 3 |
use strict; |
3 |
use Modern::Perl; |
| 4 |
use warnings; |
4 |
|
| 5 |
BEGIN { |
5 |
BEGIN { |
| 6 |
# find Koha's Perl modules |
6 |
# find Koha's Perl modules |
| 7 |
# test carefully before changing this |
7 |
# test carefully before changing this |
|
Lines 45-52
if ($list_batches) {
Link Here
|
| 45 |
# in future, probably should tie to a real user account |
45 |
# in future, probably should tie to a real user account |
| 46 |
C4::Context->set_userenv(0, 'batch', 0, 'batch', 'batch', 'batch', 'batch'); |
46 |
C4::Context->set_userenv(0, 'batch', 0, 'batch', 'batch', 'batch', 'batch'); |
| 47 |
|
47 |
|
| 48 |
my $dbh = C4::Context->dbh; |
|
|
| 49 |
$dbh->{AutoCommit} = 0; |
| 50 |
if ($batch_number =~ /^\d+$/ and $batch_number > 0) { |
48 |
if ($batch_number =~ /^\d+$/ and $batch_number > 0) { |
| 51 |
my $batch = GetImportBatch($batch_number); |
49 |
my $batch = GetImportBatch($batch_number); |
| 52 |
die "$0: import batch $batch_number does not exist in database\n" unless defined $batch; |
50 |
die "$0: import batch $batch_number does not exist in database\n" unless defined $batch; |
|
Lines 59-65
if ($batch_number =~ /^\d+$/ and $batch_number > 0) {
Link Here
|
| 59 |
unless $batch->{'import_status'} eq "staged" or $batch->{'import_status'} eq "reverted"; |
57 |
unless $batch->{'import_status'} eq "staged" or $batch->{'import_status'} eq "reverted"; |
| 60 |
process_batch($batch_number); |
58 |
process_batch($batch_number); |
| 61 |
} |
59 |
} |
| 62 |
$dbh->commit(); |
|
|
| 63 |
} else { |
60 |
} else { |
| 64 |
die "$0: please specify a numeric batch ID\n"; |
61 |
die "$0: please specify a numeric batch ID\n"; |
| 65 |
} |
62 |
} |
|
Lines 86-92
sub process_batch {
Link Here
|
| 86 |
|
83 |
|
| 87 |
print "... importing MARC records -- please wait\n"; |
84 |
print "... importing MARC records -- please wait\n"; |
| 88 |
my ($num_added, $num_updated, $num_items_added, $num_items_replaced, $num_items_errored, $num_ignored) = |
85 |
my ($num_added, $num_updated, $num_items_added, $num_items_replaced, $num_items_errored, $num_ignored) = |
| 89 |
BatchCommitRecords($import_batch_id, $framework, 100, \&print_progress_and_commit); |
86 |
BatchCommitRecords($import_batch_id, $framework, 100, \&print_progress); |
| 90 |
print "... finished importing MARC records\n"; |
87 |
print "... finished importing MARC records\n"; |
| 91 |
|
88 |
|
| 92 |
print <<_SUMMARY_; |
89 |
print <<_SUMMARY_; |
|
Lines 111-117
sub revert_batch {
Link Here
|
| 111 |
|
108 |
|
| 112 |
print "... reverting batch -- please wait\n"; |
109 |
print "... reverting batch -- please wait\n"; |
| 113 |
my ($num_deleted, $num_errors, $num_reverted, $num_items_deleted, $num_ignored) = |
110 |
my ($num_deleted, $num_errors, $num_reverted, $num_items_deleted, $num_ignored) = |
| 114 |
BatchRevertRecords($import_batch_id, 100, \&print_progress_and_commit); |
111 |
BatchRevertRecords( $import_batch_id ); |
| 115 |
print "... finished reverting batch\n"; |
112 |
print "... finished reverting batch\n"; |
| 116 |
|
113 |
|
| 117 |
print <<_SUMMARY_; |
114 |
print <<_SUMMARY_; |
|
Lines 123-138
Number of records deleted: $num_deleted
Link Here
|
| 123 |
Number of errors: $num_errors |
120 |
Number of errors: $num_errors |
| 124 |
Number of records reverted: $num_reverted |
121 |
Number of records reverted: $num_reverted |
| 125 |
Number of records ignored: $num_ignored |
122 |
Number of records ignored: $num_ignored |
| 126 |
Number of items added: $num_items_deleted |
123 |
Number of items deleted: $num_items_deleted |
| 127 |
|
124 |
|
| 128 |
_SUMMARY_ |
125 |
_SUMMARY_ |
| 129 |
} |
126 |
} |
| 130 |
|
127 |
|
| 131 |
|
128 |
|
| 132 |
sub print_progress_and_commit { |
129 |
sub print_progress { |
| 133 |
my $recs = shift; |
130 |
my ( $recs ) = @_; |
| 134 |
print "... processed $recs records\n"; |
131 |
print "... processed $recs records\n"; |
| 135 |
$dbh->commit(); |
|
|
| 136 |
} |
132 |
} |
| 137 |
|
133 |
|
| 138 |
sub print_usage { |
134 |
sub print_usage { |