From 8d0596e2cef82f68bcd8e751d8dc3cdea16ca15b Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 15 Aug 2016 14:54:16 -0400 Subject: [PATCH] Bug 13949 - Item search should have holding library Content-Type: text/plain; charset="utf-8" This patch adds holding library ("current location") to the list of fields available in the item search form. To test, apply the patch and go to Search -> Item search. - Perform a search using the "current location" option and verify that it returns the correct results. - Try other searches to confirm that they work as before. --- catalogue/itemsearch.pl | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/catalogue/itemsearch.pl b/catalogue/itemsearch.pl index 2e6608b..f0590bf 100755 --- a/catalogue/itemsearch.pl +++ b/catalogue/itemsearch.pl @@ -101,7 +101,7 @@ if (scalar keys %params > 0) { filters => [], }; - foreach my $p (qw(homebranch location itype ccode issues datelastborrowed notforloan)) { + foreach my $p (qw(homebranch holdingbranch location itype ccode issues datelastborrowed notforloan)) { if (my @q = $cgi->multi_param($p)) { if ($q[0] ne '') { my $f = { diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt index e52780e..55f553e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt @@ -14,6 +14,7 @@ [% CASE 'isbn' %]ISBN [% CASE 'issn' %]ISSN [% CASE 'homebranch' %]Home library + [% CASE 'holdingbranch' %]Current location [% CASE 'All libraries' %]All libraries [% CASE 'location' %]Shelving location [% CASE 'All locations' %]All locations @@ -382,6 +383,11 @@ empty_option = "All libraries" %] [% INCLUDE form_field_select + name="holdingbranch" + options = branches + empty_option = "All libraries" + %] + [% INCLUDE form_field_select name="location" options = locations empty_option = "All locations" -- 2.1.4