d5986c9b97
Change parameters to a hashref. Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Looks good to me. Two calls in migration_tools/22_to_30 still in old style. Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
38 lines
1.1 KiB
Perl
Executable file
38 lines
1.1 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
# This script finds and fixes missing biblionumber/biblioitemnumber fields in Koha
|
|
# Written by TG on 01/10/2005
|
|
# Revised by Joshua Ferraro on 03/31/2006
|
|
use strict;
|
|
use warnings;
|
|
BEGIN {
|
|
# find Koha's Perl modules
|
|
# test carefully before changing this
|
|
use FindBin;
|
|
eval { require "$FindBin::Bin/kohalib.pl" };
|
|
}
|
|
|
|
# Koha modules used
|
|
|
|
use C4::Context;
|
|
use C4::Biblio;
|
|
|
|
|
|
my $dbh = C4::Context->dbh;
|
|
my %kohafields;
|
|
|
|
my $sth=$dbh->prepare("SELECT biblio.biblionumber, biblioitemnumber, frameworkcode FROM biblio JOIN biblioitems USING (biblionumber)");
|
|
$sth->execute();
|
|
|
|
while (my ($biblionumber,$biblioitemnumber,$frameworkcode)=$sth->fetchrow ){
|
|
my $record = GetMarcBiblio({ biblionumber => $biblionumber });
|
|
C4::Biblio::_koha_marc_update_bib_ids($record, $frameworkcode, $biblionumber, $biblioitemnumber);
|
|
my $biblionumber = eval {ModBiblioMarc( $record, $biblionumber, $frameworkcode )};
|
|
if($@){
|
|
print "Problem with biblionumber : $biblionumber\n";
|
|
exit -1;
|
|
}else{
|
|
print "biblionumber : $biblionumber\r\r";
|
|
}
|
|
}
|
|
|
|
END;
|