Bugzilla – Attachment 182954 Details for
Bug 40075
ILL Standard form should only show libraries that are pickup_locations
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 40075: Only show pickup_location libraries
Bug-40075-Only-show-pickuplocation-libraries.patch (text/plain), 1.02 KB, created by
Pedro Amorim
on 2025-06-04 15:42:34 UTC
(
hide
)
Description:
Bug 40075: Only show pickup_location libraries
Filename:
MIME Type:
Creator:
Pedro Amorim
Created:
2025-06-04 15:42:34 UTC
Size:
1.02 KB
patch
obsolete
>From 4d524b81893d550abb58b0c260ab742030a1c22c Mon Sep 17 00:00:00 2001 >From: Pedro Amorim <pedro.amorim@openfifth.co.uk> >Date: Wed, 4 Jun 2025 15:41:40 +0000 >Subject: [PATCH] Bug 40075: Only show pickup_location libraries > >And list alphabetically on branchname >--- > ill/ill-requests.pl | 11 +++++++---- > 1 file changed, 7 insertions(+), 4 deletions(-) > >diff --git a/ill/ill-requests.pl b/ill/ill-requests.pl >index 0db9c09b1eb..00e93a4ed41 100755 >--- a/ill/ill-requests.pl >+++ b/ill/ill-requests.pl >@@ -503,10 +503,13 @@ if ($backends_available) { > } > > $template->param( >- backends => $backends, >- types => [ "Book", "Article", "Journal" ], >- op => $op, >- branches => Koha::Libraries->search, >+ backends => $backends, >+ types => [ "Book", "Article", "Journal" ], >+ op => $op, >+ branches => Koha::Libraries->search( >+ { pickup_location => 1 }, >+ { order_by => ['branchname'] } >+ ), > illreq_tabs => C4::Context->yaml_preference('ILLRequestsTabs'), > ); > >-- >2.39.5
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 40075
:
182954
|
182967
|
182983
|
182984