Bugzilla – Attachment 55046 Details for
Bug 11592
opac detail scripts do not respect MARC tag visibility
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 11592: (QA followup) Add missing framework code to ViewPolicy filter calls
Bug-11592-QA-followup-Add-missing-framework-code-t.patch (text/plain), 10.40 KB, created by
Tomás Cohen Arazi (tcohen)
on 2016-08-30 16:02:01 UTC
(
hide
)
Description:
Bug 11592: (QA followup) Add missing framework code to ViewPolicy filter calls
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2016-08-30 16:02:01 UTC
Size:
10.40 KB
patch
obsolete
>From d0bb70bceea4fdc55f0290c489351096c10b6445 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Tue, 30 Aug 2016 12:44:14 -0300 >Subject: [PATCH] Bug 11592: (QA followup) Add missing framework code to > ViewPolicy filter calls > >This patch adds the frameworkcode option param, using each record's frameworkcode >as expected by the filter. Otherwise the ViewPolicy filter falls back to the >default framework. > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > catalogue/ISBDdetail.pl | 16 +++++++++------- > opac/opac-ISBDdetail.pl | 10 ++++++++-- > opac/opac-MARCdetail.pl | 31 +++++++++++++++++++------------ > opac/opac-basket.pl | 8 +++++++- > opac/opac-detail.pl | 9 ++++++++- > opac/opac-downloadcart.pl | 5 +++++ > opac/opac-downloadshelf.pl | 7 +++++-- > opac/opac-export.pl | 11 ++++++++--- > opac/opac-shelves.pl | 5 +++++ > opac/opac-showmarc.pl | 7 +++++-- > 10 files changed, 79 insertions(+), 30 deletions(-) > >diff --git a/catalogue/ISBDdetail.pl b/catalogue/ISBDdetail.pl >index cb5081f..4679b9e 100755 >--- a/catalogue/ISBDdetail.pl >+++ b/catalogue/ISBDdetail.pl >@@ -77,13 +77,6 @@ if ( not defined $biblionumber ) { > } > > my $record = GetMarcBiblio($biblionumber,1); >-my $record_processor = Koha::RecordProcessor->new({ >- filters => 'ViewPolicy', >- options => { >- interface => 'intranet', >- }, >-}); >-$record_processor->process($record); > > if ( not defined $record ) { > # biblionumber invalid -> report and exit >@@ -95,6 +88,15 @@ if ( not defined $record ) { > } > > my $framework = GetFrameworkCode( $biblionumber ); >+my $record_processor = Koha::RecordProcessor->new({ >+ filters => 'ViewPolicy', >+ options => { >+ interface => 'intranet', >+ frameworkcode => $framework >+ }, >+}); >+$record_processor->process($record); >+ > my $res = GetISBDView({ > 'record' => $record, > 'template' => 'intranet', >diff --git a/opac/opac-ISBDdetail.pl b/opac/opac-ISBDdetail.pl >index 3dc15df..c55829c 100755 >--- a/opac/opac-ISBDdetail.pl >+++ b/opac/opac-ISBDdetail.pl >@@ -97,7 +97,14 @@ if ( ! $record ) { > print $query->redirect("/cgi-bin/koha/errors/404.pl"); > exit; > } >-my $record_processor = Koha::RecordProcessor->new({ filters => 'ViewPolicy' }); >+my $framework = GetFrameworkCode( $biblionumber ); >+my $record_processor = Koha::RecordProcessor->new({ >+ filters => 'ViewPolicy', >+ options => { >+ interface => 'opac', >+ frameworkcode => $framework >+ } >+}); > $record_processor->process($record); > > # some useful variables for enhanced content; >@@ -149,7 +156,6 @@ $template->param( > > my $norequests = 1; > my $allow_onshelf_holds; >-my $framework = GetFrameworkCode( $biblionumber ); > my $res = GetISBDView({ > 'record' => $record, > 'template' => 'opac', >diff --git a/opac/opac-MARCdetail.pl b/opac/opac-MARCdetail.pl >index b16538a..3c9c2c2 100755 >--- a/opac/opac-MARCdetail.pl >+++ b/opac/opac-MARCdetail.pl >@@ -69,6 +69,12 @@ if ( ! $biblionumber ) { > exit; > } > >+my $record = GetMarcBiblio($biblionumber, 1); >+if ( ! $record ) { >+ print $query->redirect("/cgi-bin/koha/errors/404.pl"); >+ exit; >+} >+ > my @all_items = GetItemsInfo($biblionumber); > my @items2hide; > if (scalar @all_items >= 1) { >@@ -80,17 +86,18 @@ if (scalar @all_items >= 1) { > } > } > >-my $itemtype = &GetFrameworkCode($biblionumber); >-my $tagslib = &GetMarcStructure( 0, $itemtype ); >-my ($tag_itemnumber,$subtag_itemnumber) = &GetMarcFromKohaField('items.itemnumber',$itemtype); >+my $framework = &GetFrameworkCode( $biblionumber ); >+my $tagslib = &GetMarcStructure( 0, $framework ); >+my ($tag_itemnumber,$subtag_itemnumber) = &GetMarcFromKohaField('items.itemnumber',$framework); > my $biblio = GetBiblioData($biblionumber); >-$biblionumber = $biblio->{biblionumber}; >-my $record = GetMarcBiblio($biblionumber, 1); >-if ( ! $record ) { >- print $query->redirect("/cgi-bin/koha/errors/404.pl"); >- exit; >-} >-my $record_processor = Koha::RecordProcessor->new({ filters => 'ViewPolicy' }); >+ >+my $record_processor = Koha::RecordProcessor->new({ >+ filters => 'ViewPolicy', >+ options => { >+ interface => 'opac', >+ frameworkcode => $framework >+ } >+}); > $record_processor->process($record); > > # open template >@@ -104,7 +111,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( > } > ); > >-my ($bt_tag,$bt_subtag) = GetMarcFromKohaField('biblio.title',$itemtype); >+my ($bt_tag,$bt_subtag) = GetMarcFromKohaField('biblio.title',$framework); > $template->param( > bibliotitle => $biblio->{title}, > ) if $tagslib->{$bt_tag}->{$bt_subtag}->{hidden} <= 0 && # <=0 OPAC visible. >@@ -291,7 +298,7 @@ foreach my $field (@fields) { > push @item_loop, $item if $item; > } > my ( $holdingbrtagf, $holdingbrtagsubf ) = >- &GetMarcFromKohaField( "items.holdingbranch", $itemtype ); >+ &GetMarcFromKohaField( "items.holdingbranch", $framework ); > @item_loop = > sort { ($a->{$holdingbrtagsubf}||'') cmp ($b->{$holdingbrtagsubf}||'') } @item_loop; > >diff --git a/opac/opac-basket.pl b/opac/opac-basket.pl >index 4fd2108..29337ea 100755 >--- a/opac/opac-basket.pl >+++ b/opac/opac-basket.pl >@@ -63,7 +63,13 @@ foreach my $biblionumber ( @bibs ) { > > my $dat = &GetBiblioData($biblionumber); > next unless $dat; >- my $record = &GetMarcBiblio($biblionumber); >+ >+ my $record = &GetMarcBiblio( $biblionumber ); >+ my $framework = &GetFrameworkCode( $biblionumber ); >+ $record_processor->options({ >+ interface => 'opac', >+ frameworkcode => $framework >+ }); > $record_processor->process($record); > next unless $record; > my $marcnotesarray = GetMarcNotes( $record, $marcflavour ); >diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl >index 46abc6f..de1b72f 100755 >--- a/opac/opac-detail.pl >+++ b/opac/opac-detail.pl >@@ -89,7 +89,14 @@ if ( ! $record ) { > print $query->redirect("/cgi-bin/koha/errors/404.pl"); # escape early > exit; > } >-my $record_processor = Koha::RecordProcessor->new({ filters => 'ViewPolicy' }); >+my $framework = &GetFrameworkCode( $biblionumber ); >+my $record_processor = Koha::RecordProcessor->new({ >+ filters => 'ViewPolicy', >+ options => { >+ interface => 'opac', >+ frameworkcode => $framework >+ } >+}); > $record_processor->process($record); > > # redirect if opacsuppression is enabled and biblio is suppressed >diff --git a/opac/opac-downloadcart.pl b/opac/opac-downloadcart.pl >index 1cf0de0..75ab4a1 100755 >--- a/opac/opac-downloadcart.pl >+++ b/opac/opac-downloadcart.pl >@@ -69,6 +69,11 @@ if ($bib_list && $format) { > foreach my $biblio (@bibs) { > > my $record = GetMarcBiblio($biblio, 1); >+ my $framework = &GetFrameworkCode( $biblio ); >+ $record_processor->options({ >+ interface => 'opac', >+ frameworkcode => $framework >+ }); > $record_processor->process($record); > > next unless $record; >diff --git a/opac/opac-downloadshelf.pl b/opac/opac-downloadshelf.pl >index 9f98d91..142577b 100755 >--- a/opac/opac-downloadshelf.pl >+++ b/opac/opac-downloadshelf.pl >@@ -53,7 +53,6 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user ( > my $shelfnumber = $query->param('shelfnumber'); > my $format = $query->param('format'); > my $context = $query->param('context'); >-my $dbh = C4::Context->dbh; > > my $shelf = Koha::Virtualshelves->find( $shelfnumber ); > if ( $shelf and $shelf->can_be_viewed( $borrowernumber ) ) { >@@ -83,6 +82,11 @@ if ( $shelf and $shelf->can_be_viewed( $borrowernumber ) ) { > my $biblionumber = $content->biblionumber->biblionumber; > > my $record = GetMarcBiblio($biblionumber, 1); >+ my $framework = &GetFrameworkCode( $biblionumber ); >+ $record_processor->options({ >+ interface => 'opac', >+ frameworkcode => $framework >+ }); > $record_processor->process($record); > next unless $record; > >@@ -96,7 +100,6 @@ if ( $shelf and $shelf->can_be_viewed( $borrowernumber ) ) { > $output .= marc2bibtex($record, $biblionumber); > } > elsif ( $format eq 'isbd' ) { >- my $framework = GetFrameworkCode( $biblionumber ); > $output .= GetISBDView({ > 'record' => $record, > 'template' => 'opac', >diff --git a/opac/opac-export.pl b/opac/opac-export.pl >index d5f4c4f..c0f18bf 100755 >--- a/opac/opac-export.pl >+++ b/opac/opac-export.pl >@@ -45,8 +45,14 @@ if(!$marc) { > } > > # ASSERT: There is a biblionumber, because GetMarcBiblio returned something. >- >-my $record_processor = Koha::RecordProcessor->new({ filters => 'ViewPolicy' }); >+my $framework = GetFrameworkCode( $biblionumber ); >+my $record_processor = Koha::RecordProcessor->new({ >+ filters => 'ViewPolicy', >+ options => { >+ interface => 'opac', >+ frameworkcode => $framework >+ } >+}); > $record_processor->process($marc); > > if ($format =~ /endnote/) { >@@ -90,7 +96,6 @@ elsif ($format =~ /marcstd/) { > $format = 'marcstd'; > } > elsif ( $format =~ /isbd/ ) { >- my $framework = GetFrameworkCode( $biblionumber ); > $marc = GetISBDView({ > 'record' => $marc, > 'template' => 'opac', >diff --git a/opac/opac-shelves.pl b/opac/opac-shelves.pl >index 67c7313..25120e7 100755 >--- a/opac/opac-shelves.pl >+++ b/opac/opac-shelves.pl >@@ -261,6 +261,11 @@ if ( $op eq 'view' ) { > my $biblionumber = $content->biblionumber->biblionumber; > my $this_item = GetBiblioData($biblionumber); > my $record = GetMarcBiblio($biblionumber); >+ my $framework = GetFrameworkCode( $biblionumber ); >+ $record_processor->options({ >+ interface => 'opac', >+ frameworkcode => $framework >+ }); > $record_processor->process($record); > > if ( $xslfile ) { >diff --git a/opac/opac-showmarc.pl b/opac/opac-showmarc.pl >index 18be49e..250c519 100755 >--- a/opac/opac-showmarc.pl >+++ b/opac/opac-showmarc.pl >@@ -48,8 +48,11 @@ if ($importid) { > } > else { > $record = GetMarcBiblio($biblionumber); >- my $frameworkcode = GetFrameworkCode($biblionumber); >- $record_processor->options({ frameworkcode => $frameworkcode}); >+ my $framework = GetFrameworkCode($biblionumber); >+ $record_processor->options({ >+ interface => 'opac', >+ frameworkcode => $framework >+ }); > } > > if(!ref $record) { >-- >2.7.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 11592
:
24600
|
24601
|
24611
|
24629
|
24654
|
24655
|
24657
|
24658
|
24659
|
24660
|
24661
|
24662
|
24663
|
24664
|
24875
|
24876
|
24952
|
24953
|
28002
|
28003
|
28477
|
28478
|
28479
|
28480
|
28724
|
31356
|
32382
|
32383
|
33356
|
33357
|
33358
|
33689
|
35855
|
35856
|
35857
|
35858
|
47993
|
47996
|
47997
|
48001
|
49288
|
49289
|
49290
|
49291
|
49612
|
49613
|
49614
|
49615
|
50484
|
50485
|
50486
|
50489
|
50542
|
50550
|
50551
|
50552
|
50553
|
50554
|
51313
|
51314
|
51315
|
51316
|
51317
|
51318
|
51326
|
53440
|
53441
|
53442
|
53443
|
53444
|
55040
|
55041
|
55042
|
55043
|
55044
|
55045
|
55046
|
55184
|
55185