From 9a6f2da6d2d791f82d5e2187268e724fe157ad0b Mon Sep 17 00:00:00 2001 From: inLibro Date: Thu, 26 Sep 2013 15:45:32 -0400 Subject: [PATCH] Modified Record::marc2bibtex to varlidate fields 100,110 and 111 in non-Unimarc flavours. --- C4/Record.pm | 36 +++++++++++++----------------------- 1 file changed, 13 insertions(+), 23 deletions(-) diff --git a/C4/Record.pm b/C4/Record.pm index be1912c..bb830b0 100644 --- a/C4/Record.pm +++ b/C4/Record.pm @@ -651,33 +651,23 @@ sub marc2bibtex { # Authors my $author; - my @texauthors; - my ( $mintag, $maxtag, $fields_filter ); - if ( $marcflavour eq "UNIMARC" ) { - $mintag = "700"; - $maxtag = "712"; - $fields_filter = '7..'; - } - else { - $mintag = "700"; - $maxtag = "720"; - $fields_filter = '7..'; - } - foreach my $field ( $record->field($fields_filter) ) { - next unless $field->tag() >= $mintag && $field->tag() <= $maxtag; + my @texauthors; + my @authorFields = ('100','110','111','700','710','711'); + @authorFields = ('700','701','702','710','711','721') if ( $marcflavour eq "UNIMARC" ); + + foreach my $field ( @authorFields ) { # author formatted surname, firstname my $texauthor = ''; if ( $marcflavour eq "UNIMARC" ) { - $texauthor = join ', ', - ( $field->subfield('a'), $field->subfield('b') ); - } - else { - $texauthor = $field->subfield('a'); - } - push @texauthors, $texauthor if $texauthor; + $texauthor = join ', ', + ( $record->subfield($field,"a"), $record->subfield($field,"b") ); + } else { + $texauthor = $record->subfield($field,"a"); + } + push @texauthors, $texauthor if $texauthor; } $author = join ' and ', @texauthors; - + # Defining the conversion hash according to the marcflavour my %bh; if ( $marcflavour eq "UNIMARC" ) { @@ -726,7 +716,7 @@ sub marc2bibtex { } $tex .= "\@book{"; - $tex .= join(",\n", $id, map { $bh{$_} ? qq(\t$_ = "$bh{$_}") : () } keys %bh); + $tex .= join(",\n", $id, map { $bh{$_} ? qq(\t$_ = {$bh{$_}}) : () } keys %bh); $tex .= "\n}\n"; return $tex; -- 1.7.10.4