From 4760884db79ecd4d8bdf69198fbf0ee21c7c886c Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 1 Jun 2015 12:58:25 +0200 Subject: [PATCH] [Signed-off] Bug 14306: Show URL from MARC21 field 555$u under Title Notes/Descriptions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch includes: [1] Add some logic to GetMarcNotes to embed the contents of MARC21 field 555$u in a html anchor tag. [2] Add a unit test for GetMarcNotes in Biblio.t [3] Remove calls to GetMarcNotes from sendbasket.pl (opac and staff). A closer look revealed that the data was not used; the notes in the mail of sendbasket are taken from GetBiblioData. Test plan: [1] Edit a record. Add one or two URLS in 555$u. Add something in 500$a too. [2] Check if you can click the URLs in opac and staff detail tab Notes or Descriptions. [3] Run the unit test t/db../Biblio.t [4] Add something in the cart. Click More Details and send the cart. Verify that you have something in Notes (from 500$a). Followed test plan. Works as expected. QA tools OK. Signed-off-by: Marc VĂ©ron --- C4/Biblio.pm | 24 ++++++++++-------------- basket/sendbasket.pl | 2 -- opac/opac-sendbasket.pl | 2 -- t/db_dependent/Biblio.t | 18 ++++++++++++++---- 4 files changed, 24 insertions(+), 22 deletions(-) diff --git a/C4/Biblio.pm b/C4/Biblio.pm index fb4d4e8..8a10c5a 100644 --- a/C4/Biblio.pm +++ b/C4/Biblio.pm @@ -1764,22 +1764,18 @@ sub GetMarcNotes { my %blacklist = map { $_ => 1 } split(/,/,C4::Context->preference('NotesBlacklist')); foreach my $field ( $record->field($scope) ) { my $tag = $field->tag(); - if (!$blacklist{$tag}) { - my $value = $field->as_string(); - if ( $note ne "" ) { - $marcnote = { marcnote => $note, }; - push @marcnotes, $marcnote; - $note = $value; - } - if ( $note ne $value ) { - $note = $note . " " . $value; + next if $blacklist{$tag}; + + my $value = $field->as_string(); + if( $marcflavour ne 'UNIMARC' && $tag =~ /555/ ) { + my @sub= $field->subfield('u'); + foreach my $s (@sub) { + next if $s !~ /^http/; + my $i= index( $value, $s); + $value= substr( $value,0, $i) . "$s" . substr( $value, $i + length($s) ); } } - } - - if ($note) { - $marcnote = { marcnote => $note }; - push @marcnotes, $marcnote; #load last tag into array + push @marcnotes, { marcnote => $value }; } return \@marcnotes; } # end GetMarcNotes diff --git a/basket/sendbasket.pl b/basket/sendbasket.pl index 71516a4..ba93553 100755 --- a/basket/sendbasket.pl +++ b/basket/sendbasket.pl @@ -74,7 +74,6 @@ if ( $email_add ) { my $dat = GetBiblioData($biblionumber); next unless $dat; my $record = GetMarcBiblio($biblionumber, 1); - my $marcnotesarray = GetMarcNotes( $record, $marcflavour ); my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour ); my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour ); @@ -86,7 +85,6 @@ if ( $email_add ) { } - $dat->{MARCNOTES} = $marcnotesarray; $dat->{MARCSUBJCTS} = $marcsubjctsarray; $dat->{MARCAUTHORS} = $marcauthorsarray; $dat->{HASAUTHORS} = $hasauthors; diff --git a/opac/opac-sendbasket.pl b/opac/opac-sendbasket.pl index a451866..3a1e9c6 100755 --- a/opac/opac-sendbasket.pl +++ b/opac/opac-sendbasket.pl @@ -89,7 +89,6 @@ if ( $email_add ) { my $dat = GetBiblioData($biblionumber); next unless $dat; my $record = GetMarcBiblio($biblionumber, 1); - my $marcnotesarray = GetMarcNotes( $record, $marcflavour ); my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour ); my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour ); @@ -101,7 +100,6 @@ if ( $email_add ) { } - $dat->{MARCNOTES} = $marcnotesarray; $dat->{MARCSUBJCTS} = $marcsubjctsarray; $dat->{MARCAUTHORS} = $marcauthorsarray; $dat->{HASAUTHORS} = $hasauthors; diff --git a/t/db_dependent/Biblio.t b/t/db_dependent/Biblio.t index f53b6a5..d6ebf12 100755 --- a/t/db_dependent/Biblio.t +++ b/t/db_dependent/Biblio.t @@ -191,9 +191,19 @@ sub run_tests { "(GetMarcISBN) Corretly retrieves ISBN #". ($i + 1)); } - is( GetMarcPrice( $record_for_isbn, $marcflavour ), 100, "GetMarcPrice returns the correct value"); + + # test for GetMarcNotes + my $a1= GetMarcNotes( $marc_record, $marcflavour ); + my $field2 = MARC::Field->new( $marcflavour eq 'UNIMARC'? 300: 555, 0, '', a=> 'Some text', u=> 'http://url-1.com', u=> 'nohttp://something_else' ); + $marc_record->append_fields( $field2 ); + my $a2= GetMarcNotes( $marc_record, $marcflavour ); + my $last= @$a2? $a2->[@$a2-1]->{marcnote}: ''; + is( @$a2 == @$a1 + 1 && ( + ( $marcflavour eq 'UNIMARC' && $last eq $field2->as_string() ) || + ( $marcflavour ne 'UNIMARC' && $last =~ /\ sub { - plan tests => 27; + plan tests => 28; run_tests('MARC21'); $dbh->rollback; }; subtest 'UNIMARC' => sub { - plan tests => 27; + plan tests => 28; run_tests('UNIMARC'); $dbh->rollback; }; subtest 'NORMARC' => sub { - plan tests => 27; + plan tests => 28; run_tests('NORMARC'); $dbh->rollback; }; -- 1.7.10.4