Lines 34-39
use IO::File;
Link Here
|
34 |
use Pod::Usage; |
34 |
use Pod::Usage; |
35 |
|
35 |
|
36 |
use Koha::Biblios; |
36 |
use Koha::Biblios; |
|
|
37 |
use Koha::Holdings; |
37 |
use Koha::SearchEngine; |
38 |
use Koha::SearchEngine; |
38 |
use Koha::SearchEngine::Search; |
39 |
use Koha::SearchEngine::Search; |
39 |
|
40 |
|
Lines 41-47
use open qw( :std :encoding(UTF-8) );
Link Here
|
41 |
binmode( STDOUT, ":encoding(UTF-8)" ); |
42 |
binmode( STDOUT, ":encoding(UTF-8)" ); |
42 |
my ( $input_marc_file, $number, $offset) = ('',0,0); |
43 |
my ( $input_marc_file, $number, $offset) = ('',0,0); |
43 |
my ($version, $delete, $test_parameter, $skip_marc8_conversion, $char_encoding, $verbose, $commit, $fk_off,$format,$biblios,$authorities,$keepids,$match, $isbn_check, $logfile); |
44 |
my ($version, $delete, $test_parameter, $skip_marc8_conversion, $char_encoding, $verbose, $commit, $fk_off,$format,$biblios,$authorities,$keepids,$match, $isbn_check, $logfile); |
44 |
my ( $insert, $filters, $update, $all, $yamlfile, $authtypes, $append ); |
45 |
my ( $insert, $filters, $update, $all, $yamlfile, $authtypes, $append, $import_holdings ); |
45 |
my $cleanisbn = 1; |
46 |
my $cleanisbn = 1; |
46 |
my ($sourcetag,$sourcesubfield,$idmapfl, $dedup_barcode); |
47 |
my ($sourcetag,$sourcesubfield,$idmapfl, $dedup_barcode); |
47 |
my $framework = ''; |
48 |
my $framework = ''; |
Lines 85-97
GetOptions(
Link Here
|
85 |
'framework=s' => \$framework, |
86 |
'framework=s' => \$framework, |
86 |
'custom:s' => \$localcust, |
87 |
'custom:s' => \$localcust, |
87 |
'marcmodtemplate:s' => \$marc_mod_template, |
88 |
'marcmodtemplate:s' => \$marc_mod_template, |
|
|
89 |
'holdings' => \$import_holdings, |
88 |
); |
90 |
); |
89 |
$biblios ||= !$authorities; |
91 |
$biblios ||= !$authorities; |
90 |
$insert ||= !$update; |
92 |
$insert ||= !$update; |
91 |
my $writemode = ($append) ? "a" : "w"; |
93 |
my $writemode = ($append) ? "a" : "w"; |
|
|
94 |
my $marcFlavour = C4::Context->preference('marcflavour') || 'MARC21'; |
92 |
|
95 |
|
93 |
pod2usage( -msg => "\nYou must specify either --biblios or --authorities, not both.\n", -exitval ) if $biblios && $authorities; |
96 |
pod2usage( -msg => "\nYou must specify either --biblios or --authorities, not both.\n", -exitval ) if $biblios && $authorities; |
94 |
|
97 |
|
|
|
98 |
pod2usage( -msg => "\nHoldings only supported for MARC 21 biblios.\n", -exitval ) if $import_holdings && (!$biblios || $marcFlavour ne 'MARC21'); |
99 |
|
95 |
if ($all) { |
100 |
if ($all) { |
96 |
$insert = 1; |
101 |
$insert = 1; |
97 |
$update = 1; |
102 |
$update = 1; |
Lines 169-180
if ($fk_off) {
Link Here
|
169 |
|
174 |
|
170 |
|
175 |
|
171 |
if ($delete) { |
176 |
if ($delete) { |
172 |
if ($biblios){ |
177 |
if ($biblios) { |
173 |
print "deleting biblios\n"; |
178 |
print "deleting biblios\n"; |
174 |
$dbh->do("DELETE FROM biblio"); |
179 |
$dbh->do("DELETE FROM biblio"); |
175 |
$dbh->do("ALTER TABLE biblio AUTO_INCREMENT = 1"); |
180 |
$dbh->do("ALTER TABLE biblio AUTO_INCREMENT = 1"); |
176 |
$dbh->do("DELETE FROM biblioitems"); |
181 |
$dbh->do("DELETE FROM biblioitems"); |
177 |
$dbh->do("ALTER TABLE biblioitems AUTO_INCREMENT = 1"); |
182 |
$dbh->do("ALTER TABLE biblioitems AUTO_INCREMENT = 1"); |
|
|
183 |
$dbh->do("DELETE FROM holdings"); |
184 |
$dbh->do("ALTER TABLE holdings AUTO_INCREMENT = 1"); |
178 |
$dbh->do("DELETE FROM items"); |
185 |
$dbh->do("DELETE FROM items"); |
179 |
$dbh->do("ALTER TABLE items AUTO_INCREMENT = 1"); |
186 |
$dbh->do("ALTER TABLE items AUTO_INCREMENT = 1"); |
180 |
} |
187 |
} |
Lines 191-198
if ($test_parameter) {
Link Here
|
191 |
print "TESTING MODE ONLY\n DOING NOTHING\n===============\n"; |
198 |
print "TESTING MODE ONLY\n DOING NOTHING\n===============\n"; |
192 |
} |
199 |
} |
193 |
|
200 |
|
194 |
my $marcFlavour = C4::Context->preference('marcflavour') || 'MARC21'; |
|
|
195 |
|
196 |
# The definition of $searcher must be before MARC::Batch->new |
201 |
# The definition of $searcher must be before MARC::Batch->new |
197 |
my $searcher = Koha::SearchEngine::Search->new( |
202 |
my $searcher = Koha::SearchEngine::Search->new( |
198 |
{ |
203 |
{ |
Lines 230-235
if (defined $format && $format =~ /XML/i) {
Link Here
|
230 |
$batch->warnings_off(); |
235 |
$batch->warnings_off(); |
231 |
$batch->strict_off(); |
236 |
$batch->strict_off(); |
232 |
my $i=0; |
237 |
my $i=0; |
|
|
238 |
my $holdings_count = 0; |
233 |
my $commitnum = $commit ? $commit : 50; |
239 |
my $commitnum = $commit ? $commit : 50; |
234 |
my $yamlhash; |
240 |
my $yamlhash; |
235 |
|
241 |
|
Lines 258-263
if ($logfile){
Link Here
|
258 |
print $loghandle "id;operation;status\n"; |
264 |
print $loghandle "id;operation;status\n"; |
259 |
} |
265 |
} |
260 |
|
266 |
|
|
|
267 |
my $biblionumber; |
261 |
my $schema = Koha::Database->schema; |
268 |
my $schema = Koha::Database->schema; |
262 |
$schema->txn_begin; |
269 |
$schema->txn_begin; |
263 |
RECORD: while ( ) { |
270 |
RECORD: while ( ) { |
Lines 308-318
RECORD: while ( ) {
Link Here
|
308 |
$field->update('a' => $isbn); |
315 |
$field->update('a' => $isbn); |
309 |
} |
316 |
} |
310 |
} |
317 |
} |
|
|
318 |
|
319 |
# check for holdings records |
320 |
my $holdings_record = 0; |
321 |
if ($biblios && $marcFlavour eq 'MARC21') { |
322 |
my $leader = $record->leader(); |
323 |
$holdings_record = $leader =~ /^.{6}[uvxy]/; |
324 |
} |
325 |
|
311 |
my $id; |
326 |
my $id; |
312 |
# search for duplicates (based on Local-number) |
327 |
# search for duplicates (based on Local-number) |
313 |
my $originalid; |
328 |
my $originalid; |
314 |
$originalid = GetRecordId( $record, $tagid, $subfieldid ); |
329 |
$originalid = GetRecordId( $record, $tagid, $subfieldid ); |
315 |
if ($match) { |
330 |
if ($match && !$holdings_record) { |
316 |
require C4::Search; |
331 |
require C4::Search; |
317 |
my $query = build_query( $match, $record ); |
332 |
my $query = build_query( $match, $record ); |
318 |
my $server = ( $authorities ? 'authorityserver' : 'biblioserver' ); |
333 |
my $server = ( $authorities ? 'authorityserver' : 'biblioserver' ); |
Lines 419-426
RECORD: while ( ) {
Link Here
|
419 |
$yamlhash->{$originalid}->{'updated'} = 1; |
434 |
$yamlhash->{$originalid}->{'updated'} = 1; |
420 |
} |
435 |
} |
421 |
} |
436 |
} |
|
|
437 |
elsif ($holdings_record) { |
438 |
if ($import_holdings) { |
439 |
if (!defined $biblionumber) { |
440 |
warn "ERROR: Encountered holdings record without preceding biblio record\n"; |
441 |
} else { |
442 |
if ($insert) { |
443 |
my $holding = Koha::Holding->new({ biblionumber => $biblionumber }); |
444 |
$holding->set_marc({ record => $record }); |
445 |
my $branchcode = $holding->holdingbranch(); |
446 |
if (defined $branchcode && !Koha::Libraries->find({ branchcode => $branchcode})) { |
447 |
printlog( { id => 0, op => 'insert', status => "warning : library $branchcode not defined, holdings record skipped" } ) if ($logfile); |
448 |
} else { |
449 |
$holding->store(); |
450 |
++$holdings_count; |
451 |
printlog( { id => $holding->holding_id(), op => 'insert', status => 'ok' } ) if ($logfile); |
452 |
} |
453 |
} else { |
454 |
printlog( { id => 0, op => 'update', status => 'warning : not in database' } ) if ($logfile); |
455 |
} |
456 |
} |
457 |
} |
458 |
} |
422 |
else { |
459 |
else { |
423 |
my ( $biblionumber, $biblioitemnumber, $itemnumbers_ref, $errors_ref ); |
460 |
my ( $biblioitemnumber, $itemnumbers_ref, $errors_ref ); |
424 |
$biblionumber = $id; |
461 |
$biblionumber = $id; |
425 |
# check for duplicate, based on ISBN (skip it if we already have found a duplicate with match parameter |
462 |
# check for duplicate, based on ISBN (skip it if we already have found a duplicate with match parameter |
426 |
if (!$biblionumber && $isbn_check && $isbn) { |
463 |
if (!$biblionumber && $isbn_check && $isbn) { |
Lines 557-563
delete $ENV{OVERRIDE_SYSPREF_CataloguingLog};
Link Here
|
557 |
delete $ENV{OVERRIDE_SYSPREF_AuthoritiesLog}; |
594 |
delete $ENV{OVERRIDE_SYSPREF_AuthoritiesLog}; |
558 |
|
595 |
|
559 |
my $timeneeded = gettimeofday - $starttime; |
596 |
my $timeneeded = gettimeofday - $starttime; |
560 |
print "\n$i MARC records done in $timeneeded seconds\n"; |
597 |
if ($import_holdings) { |
|
|
598 |
printf("\n%i MARC bibliographic records and %i holdings records done in %0.3f seconds\n", $i, $holdings_count, $timeneeded); |
599 |
} else { |
600 |
printf("\n%i MARC records done in %0.3f seconds\n", $i, $timeneeded); |
601 |
} |
561 |
if ($logfile){ |
602 |
if ($logfile){ |
562 |
print $loghandle "file : $input_marc_file\n"; |
603 |
print $loghandle "file : $input_marc_file\n"; |
563 |
print $loghandle "$i MARC records done in $timeneeded seconds\n"; |
604 |
print $loghandle "$i MARC records done in $timeneeded seconds\n"; |
Lines 678-683
Type of import: authority records
Link Here
|
678 |
|
719 |
|
679 |
The I<FILE> to import |
720 |
The I<FILE> to import |
680 |
|
721 |
|
|
|
722 |
=item B<-holdings> |
723 |
|
724 |
Import MARC 21 holdings records when interleaved with bibliographic records |
725 |
(insert only, update not supported). Used only with -biblios. |
726 |
|
681 |
=item B<-v> |
727 |
=item B<-v> |
682 |
|
728 |
|
683 |
Verbose mode. 1 means "some infos", 2 means "MARC dumping" |
729 |
Verbose mode. 1 means "some infos", 2 means "MARC dumping" |
Lines 723-729
I<UNIMARC> are supported. MARC21 by default.
Link Here
|
723 |
=item B<-d> |
769 |
=item B<-d> |
724 |
|
770 |
|
725 |
Delete EVERYTHING related to biblio in koha-DB before import. Tables: biblio, |
771 |
Delete EVERYTHING related to biblio in koha-DB before import. Tables: biblio, |
726 |
biblioitems, items |
772 |
biblioitems, items, holdings |
727 |
|
773 |
|
728 |
=item B<-m>=I<FORMAT> |
774 |
=item B<-m>=I<FORMAT> |
729 |
|
775 |
|