Jonathan Druart
70d61d80fb
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> JD Amended patch: -# FIXME Special case here - print "Biblio not found\n,"; + print "Biblio not found\n"; - my $biblio = Koha::Biblio->find($hostbiblionumber); + my $biblio = Koha::Biblios->find($hostbiblionumber); Rebased-by: Joonas Kylmälä <joonas.kylmala@iki.fi> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
76 lines
2.4 KiB
Perl
Executable file
76 lines
2.4 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
# This script finds and fixes missing 090 fields in Koha for MARC21
|
|
# Written by TG on 01/10/2005
|
|
# Revised by Joshua Ferraro on 03/31/2006
|
|
use strict;
|
|
#use warnings; FIXME - Bug 2505
|
|
|
|
# Koha modules used
|
|
|
|
use C4::Context;
|
|
use C4::Biblio qw( GetMarcFromKohaField ModBiblioMarc );
|
|
use Koha::Biblios;
|
|
use MARC::File::USMARC;
|
|
|
|
$|=1;
|
|
my $dbh = C4::Context->dbh;
|
|
|
|
my $sth=$dbh->prepare("SELECT biblionumber, biblioitemnumber FROM biblioitems");
|
|
$sth->execute();
|
|
|
|
my $i=1;
|
|
while (my ($biblionumber,$biblioitemnumber)=$sth->fetchrow ){
|
|
my $biblio = Koha::Biblios->find($biblionumber);
|
|
my $record = $biblio->metadata->record;
|
|
print ".";
|
|
print "\r$i" unless $i %100;
|
|
MARCmodbiblionumber($biblionumber,$biblioitemnumber,$record);
|
|
}
|
|
|
|
sub MARCmodbiblionumber{
|
|
my ($biblionumber,$biblioitemnumber,$record)=@_;
|
|
|
|
return unless $record;
|
|
|
|
my ($tagfield,$biblionumtagsubfield) = &GetMarcFromKohaField( "biblio.biblionumber" );
|
|
my ($tagfield2,$biblioitemtagsubfield) = &GetMarcFromKohaField( "biblio.biblioitemnumber" );
|
|
|
|
my $update=0;
|
|
if (defined $record) {
|
|
my $tag = $record->field($tagfield);
|
|
#warn "ICI : ".$record->as_formatted if $record->subfield('090','a') eq '11546';
|
|
|
|
# check that we have biblionumber at the right place, otherwise, update or create the field.
|
|
if ($tagfield <10) {
|
|
unless ($tag && $tag->data() == $biblionumber) {
|
|
if ($tag) {
|
|
$tag->update($biblionumber);
|
|
} else {
|
|
my $newrec = MARC::Field->new( $tagfield, $biblionumber);
|
|
$record->insert_fields_ordered($newrec);
|
|
}
|
|
$update=1;
|
|
}
|
|
} else {
|
|
unless ($tag && $tag->subfield($biblionumtagsubfield) == $biblionumber) {
|
|
if($tag) {
|
|
$tag->update($tagfield => $biblionumber);
|
|
} else {
|
|
my $newrec = MARC::Field->new( $tagfield,'','', $biblionumtagsubfield => $biblionumber,$biblioitemtagsubfield=>$biblioitemnumber);
|
|
$record->insert_fields_ordered($newrec);
|
|
}
|
|
$update=1;
|
|
}
|
|
}
|
|
} else {
|
|
warn "problem with :".$biblionumber." , record undefined";
|
|
}
|
|
|
|
|
|
if ($update){
|
|
&ModBiblioMarc($record,$biblionumber);
|
|
print "\n modified : $biblionumber \n";
|
|
}
|
|
|
|
}
|
|
END;
|