Bugzilla – Attachment 130854 Details for
Bug 30133
Pagination broken on pickup_locations routes when AllowHoldPolicyOverride=1
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30133: Avoid calling c->objects->search twice
Bug-30133-Avoid-calling-c-objects-search-twice.patch (text/plain), 1.69 KB, created by
Nick Clemens (kidclamp)
on 2022-02-18 14:29:16 UTC
(
hide
)
Description:
Bug 30133: Avoid calling c->objects->search twice
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2022-02-18 14:29:16 UTC
Size:
1.69 KB
patch
obsolete
>From 1b05301f640a69673e1cd80e41c5ae085aa7f90e Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Fri, 18 Feb 2022 14:25:41 +0000 >Subject: [PATCH] Bug 30133: Avoid calling c->objects->search twice > >Calling this twice sets double pagination headers, which messes up the page for the requests and >retrieves on ly the end of the list > >This patch simply avoids a doulbe call > >TO DO: must implement same for Biblio->pickup_locations and cover with tests >--- > Koha/REST/V1/Items.pm | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > >diff --git a/Koha/REST/V1/Items.pm b/Koha/REST/V1/Items.pm >index 1887bce514..b42420f5d1 100644 >--- a/Koha/REST/V1/Items.pm >+++ b/Koha/REST/V1/Items.pm >@@ -115,9 +115,7 @@ sub pickup_locations { > > my $ps_set = $item->pickup_locations( { patron => $patron } ); > >- my $pickup_locations = $c->objects->search( $ps_set ); > my @response = (); >- > if ( C4::Context->preference('AllowHoldPolicyOverride') ) { > > my $libraries_rs = Koha::Libraries->search( { pickup_location => 1 } ); >@@ -127,7 +125,7 @@ sub pickup_locations { > my $library = $_; > $library->{needs_override} = ( > any { $_->{library_id} eq $library->{library_id} } >- @{$pickup_locations} >+ @{$ps_set} > ) > ? Mojo::JSON->false > : Mojo::JSON->true; >@@ -140,6 +138,8 @@ sub pickup_locations { > ); > } > >+ my $pickup_locations = $c->objects->search( $ps_set ); >+ > @response = map { $_->{needs_override} = Mojo::JSON->false; $_; } @{$pickup_locations}; > > return $c->render( >-- >2.30.2
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 30133
:
130853
|
130854
|
130855
|
130883
|
130884
|
130885
|
130886
|
130887
|
130888
|
130889
|
130890
|
130891
|
130892
|
130893
|
130953
|
130954
|
130955
|
130956
|
130957