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)
committerNick Clemens <nick@bywatersolutions.com>
Thu, 11 Apr 2019 13:34:09 +0000 (13:34 +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>

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

index 1d7aada..bc395d9 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 %]