Bugzilla – Attachment 179920 Details for
Bug 37883
Add a filter for staff search results to filter by library
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug Bug 37883: Adjust template for new system preference
Bug-Bug-37883-Adjust-template-for-new-system-prefe.patch (text/plain), 7.91 KB, created by
Lucas Gass (lukeg)
on 2025-03-31 09:03:41 UTC
(
hide
)
Description:
Bug Bug 37883: Adjust template for new system preference
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2025-03-31 09:03:41 UTC
Size:
7.91 KB
patch
obsolete
>From e1383e9b587f45b3fb998c6b847df828a039834d Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Wed, 26 Feb 2025 23:17:07 +0000 >Subject: [PATCH] Bug Bug 37883: Adjust template for new system preference > >--- > .../prog/en/modules/catalogue/results.tt | 49 +++++++++++++++++-- > 1 file changed, 46 insertions(+), 3 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt >index ade947fd89d..cca6a4c17f4 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt >@@ -554,7 +554,9 @@ > [% ELSE # /IF scan %] > <div id="searchresults"> > [% INCLUDE 'page-numbers.inc' %] >- >+ [% IF Koha.Preference('FilterSearchResultsByLoggedInBranch') %] >+ <button href="#" id="toggleitems" class="btn btn-primary btn-xs" style="float: right;">Show local items only</button> >+ [% END %] > <form action="/cgi-bin/koha/catalogue/search.pl" method="get" name="bookbag_form" id="bookbag_form"> > [% IF ( searchdesc ) %] > [% FOREACH QUERY_INPUT IN QUERY_INPUTS %] >@@ -747,6 +749,25 @@ > <div class="results_available_count"> > [% IF MaxSearchResultsItemsPerRecordStatusCheck && SEARCH_RESULT.items_count > MaxSearchResultsItemsPerRecordStatusCheck %] > <span class="blocker inaccurate-item-statuses" title="Item statuses may be inaccurate. Please view the record details for accurate item statuses"> >+ <div class="all"> >+ [% tnx('{count} item', '{count} items', SEARCH_RESULT.items_count, {count = SEARCH_RESULT.items_count}) | html %][% IF ( SEARCH_RESULT.availablecount ) %] >+ , [% SEARCH_RESULT.availablecount | html %] <span>available:</span> >+ [% ELSE %] >+ , <span>None available</span> >+ [% END %] >+ </div> >+ [% IF SEARCH_RESULT.branchtotalcount > 0 && Koha.Preference('FilterSearchResultsByLoggedInBranch') %] >+ <div class="branch_specific"> >+ [% tnx('{count} item', '{count} items', SEARCH_RESULT.branchtotalcount, {count = SEARCH_RESULT.branchtotalcount}) | html %][% IF ( SEARCH_RESULT.branchavailablecount ) %] >+ , [% SEARCH_RESULT.branchavailablecount | html %] <span>available:</span> >+ [% ELSE %] >+ , <span>None available</span> >+ [% END %] >+ </div> >+ [% END %] >+ </span> >+ [% ELSE %] >+ <div class="all"> > [% tnx('{count} item', '{count} items', SEARCH_RESULT.items_count, {count = SEARCH_RESULT.items_count}) | html %][% IF ( SEARCH_RESULT.availablecount ) %] > , [% SEARCH_RESULT.availablecount | html %] <span>available:</span> > [% ELSE %] >@@ -766,11 +787,17 @@ > [% BLOCK search_result_items %] > [% IF status_count == "onloancount" %] > [% IF SEARCH_RESULT.${status_count} > 0 %] >- <div class="results_checkedout">[% SEARCH_RESULT.${status_count} | html %] checked out:</div> >+ <div class="results_checkedout all">[% SEARCH_RESULT.${status_count} | html %] checked out:</div> >+ [% IF Koha.Preference('FilterSearchResultsByLoggedInBranch') %] >+ <div class="results_checkedout branch_specific">[% SEARCH_RESULT.branchonloancount | html %] checked out:</div> >+ [% END %] > [% END %] > [% ELSIF status_count == "othercount" %] > [% IF SEARCH_RESULT.${status_count} > 0 %] >- <div class="results_unavailable">[% SEARCH_RESULT.${status_count} | html %] unavailable:</div> >+ <div class="results_unavailable all">[% SEARCH_RESULT.${status_count} | html %] unavailable:</div> >+ [% IF Koha.Preference('FilterSearchResultsByLoggedInBranch') %] >+ <div class="results_unavailable branch_specific">[% SEARCH_RESULT.branchothercount | html %] unavailable:</div> >+ [% END %] > [% END %] > [% END %] > [% IF SEARCH_RESULT.${items_loop}.size > 0 %] >@@ -851,6 +878,9 @@ > <span class="unavailable">No items</span> > [% END %] > [% END # /IF ( SEARCH_RESULT.items_count ) %] >+ [% IF SEARCH_RESULT.branchtotalcount == 0 && Koha.Preference('FilterSearchResultsByLoggedInBranch') %] >+ <span class="unavailable branch_specific">No items</span> >+ [% END %] > </div> > <!-- /.availability --> > </td> >@@ -935,6 +965,19 @@ > var biblionumber = "[% biblionumber | html %]"; > var holdfor_cardnumber = "[% holdfor_patron.cardnumber | html %]"; > var holdforclub = "[% holdforclub | html %]"; >+ var userbranch = "[% userbranch | html %]"; >+ [% IF Koha.Preference('FilterSearchResultsByLoggedInBranch') %] >+ $('#toggleitems').click( function() { >+ $('#toggleitems').text() === 'Show local items only' ? $('#toggleitems').text("Show items in all libraries") : $('#toggleitems').text("Show local items only"); >+ $('.branch_specific').toggle(); >+ $('.all').toggle(); >+ $('ul[class*="_loop_items"] li').each( function() { >+ if ( !$(this).hasClass(userbranch) ) { >+ $(this).toggle(); >+ } >+ }); >+ }); >+ [% END %] > [% IF SEARCH_RESULTS %] > var SEARCH_RESULTS = 1; > [% ELSE %] >-- >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 37883
:
171256
|
171257
|
171261
|
171286
|
171287
|
171289
|
171291
|
171406
|
171407
|
171408
|
171409
|
171410
|
171411
|
176697
|
177306
|
177784
|
177785
|
177786
|
177787
|
177788
|
177789
|
177790
|
177791
|
178772
|
178773
|
178774
|
178775
|
178776
|
178777
|
179688
|
179689
|
179690
|
179691
|
179692
|
179693
|
179694
| 179920 |
179921
|
179922
|
179923
|
179924
|
179925
|
179926
|
179927