@@ -, +, @@ library - 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(-) --- a/catalogue/itemsearch.pl +++ a/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 = { --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt +++ a/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" --