Bug 20811: (QA follow-up) Make the isbn check work
The following code was never reached, since $isbn was not filled. if (!$biblionumber && $isbn_check && $isbn) { $sth_isbn->execute($isbn); ($biblionumber,$biblioitemnumber) = $sth_isbn->fetchrow; } Solution: Fix the code with two $isbn declarations. Move the checkisbn condition a level deeper. Test plan: Run misc/migration_tools/bulkmarcimport.pl -file bib726.utf8 --update -isbn Since you do not match on biblionumber, the ISBN should match. Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
d15185025a
commit
a49a7f08d6
1 changed files with 3 additions and 3 deletions
|
@ -296,11 +296,11 @@ RECORD: while ( ) {
|
|||
&$localcust($record) if $localcust;
|
||||
my $isbn;
|
||||
# remove trailing - in isbn (only for biblios, of course)
|
||||
if ($biblios && $cleanisbn) {
|
||||
if( $biblios ) {
|
||||
my $tag = $marcFlavour eq 'UNIMARC' ? '010' : '020';
|
||||
my $field = $record->field($tag);
|
||||
my $isbn = $field && $field->subfield('a');
|
||||
if ( $isbn ) {
|
||||
$isbn = $field && $field->subfield('a');
|
||||
if ( $isbn && $cleanisbn ) {
|
||||
$isbn =~ s/-//g;
|
||||
$field->update('a' => $isbn);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue