Bug 13629: SingleBranchMode removes both library and availability search from advance...
authorOwen Leonard <oleonard@myacpl.org>
Thu, 4 Apr 2019 18:27:28 +0000 (18:27 +0000)
committerLucas Gass <lucas@bywatersolutions.com>
Wed, 17 Apr 2019 21:03:44 +0000 (21:03 +0000)
This patch modifies the OPAC advanced search form so that it is possible
to limit searches to available items even if there is only one library.

To test, apply the patch and go to the advanced search page in the OPAC.

 - With only one library configured: There should be a section labeled
   "Availability" with just the "only available" checkbox.

 - With multiple libraries: The section should be labeled "Location and
   availability" and should have the library dropdown and the
   availability checkbox.

Signed-off-by: Pierre-Marc Thibault <pierre-marc.thibault@inLibro.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
(cherry picked from commit 7acb5394e1f62728c90a1d18e988c23a3e2862d2)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
(cherry picked from commit 781821b8aec54a5532c1a2da2e39df764f0bbb5e)

Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>

koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt

index fac244b..5f33d36 100644 (file)
 
                   [%# Following on one line for translatability %]
                   [% IF ( ( OpacAdvSearchOptions and OpacAdvSearchOptions.grep('location').size > 0 and not expanded_options ) or ( OpacAdvSearchMoreOptions and OpacAdvSearchMoreOptions.grep('location').size > 0 and expanded_options ) ) %]
-                    [% UNLESS ( singleBranchMode ) %]
+                    [% IF ( singleBranchMode ) %]
+                        <div class="span3">
+                            <!-- AVAILABILITY LIMITS -->
+                            <div id="location">
+                                <fieldset>
+                                    <legend>Availability: </legend>
+                                    <div style="margin-top:.4em">
+                                        <label for="available-items"><input type="checkbox" id="available-items" name="limit" value="available" /> Only items currently available for loan or reference</label>
+                                    </div>
+                                </fieldset>
+                            </div> <!-- / #location -->
+                            <!-- /AVAILABILITY LIMITS -->
+                        </div> <!-- / .span3 -->
+                    [% ELSE %]
                         <div class="span3">
                             <!-- AVAILABILITY LIMITS -->
                             <div id="location">
                             </div> <!-- / #location -->
                             <!-- /AVAILABILITY LIMITS -->
                         </div> <!-- / .span3 -->
-                    [% END # / UNLESS singleBranchMode %]
+                    [% END # / IF singleBranchMode %]
                   [% END %]
 
                   [%# Following on one line for translatability %]