Bugzilla – Attachment 130734 Details for
Bug 29660
reserve/request.pl should not deal with biblioitem
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 29660: Fix conflict with bug 29844
Bug-29660-Fix-conflict-with-bug-29844.patch (text/plain), 1.48 KB, created by
Martin Renvoize (ashimema)
on 2022-02-17 13:07:23 UTC
(
hide
)
Description:
Bug 29660: Fix conflict with bug 29844
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2022-02-17 13:07:23 UTC
Size:
1.48 KB
patch
obsolete
>From 1ac19db2d604f7e4847f06e80995b9a4c5e171b7 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 10 Feb 2022 14:25:06 +0100 >Subject: [PATCH] Bug 29660: Fix conflict with bug 29844 > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > reserve/request.pl | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/reserve/request.pl b/reserve/request.pl >index ff930e1af7..9e917a0887 100755 >--- a/reserve/request.pl >+++ b/reserve/request.pl >@@ -308,7 +308,7 @@ if ( ( $findborrower && $borrowernumber_hold || $findclub && $club_hold ) > if ( $patron && $multi_hold ) { > my @multi_pickup_locations = > Koha::Biblios->search( { biblionumber => \@biblionumbers } ) >- ->pickup_locations( { patron => $patron } ); >+ ->pickup_locations( { patron => $patron } )->as_list; > $template->param( multi_pickup_locations => \@multi_pickup_locations ); > } > >@@ -694,7 +694,7 @@ if ( ( $findborrower && $borrowernumber_hold || $findclub && $club_hold ) > > if ( $patron ) { > # Add the valid pickup locations >- my @pickup_locations = $biblio->pickup_locations({ patron => $patron }); >+ my @pickup_locations = $biblio->pickup_locations({ patron => $patron })->as_list; > $biblioloopiter{pickup_locations} = \@pickup_locations; > $biblioloopiter{pickup_locations_codes} = [ map { $_->branchcode } @pickup_locations ]; > } >-- >2.20.1
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 29660
:
128366
|
128367
|
128368
|
129934
|
129935
|
129936
|
130352
|
130353
|
130354
|
130447
|
130731
|
130732
|
130733
| 130734