Bug 15569: Do not displayed "automatic renewal" if the patron cannot checkout
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 13 Jan 2016 16:36:47 +0000 (16:36 +0000)
committerBrendan Gallagher <brendan@bywatersolutions.com>
Sat, 23 Jan 2016 19:09:47 +0000 (19:09 +0000)
If the patron cannot checkout (debarred) and on-site checkout is
enabled, the "Automatic renewal" checkbox should not be displayed on the
circulation screen.

Test plan:
Enable OnSiteCheckouts and OnSiteCheckoutsForce
Debar a patron and go on the circulation page.
Without this patch, the automatic renewal checkbox is displayed.
With this patch applied, it's not.

Patch works as expected.
Signed-off-by: Marc VĂ©ron <veron@veron.ch>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com
koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt

index 2ffbb54..cf336a2 100644 (file)
@@ -633,14 +633,17 @@ No patron matched <span class="ex">[% message %]</span>
     [% END %]
     <button type="submit" class="btn">Check out</button>
 
-    <div class="date-select">
-        [% IF NEEDSCONFIRMATION %]
-            <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" disabled="disabled" />
-        [% ELSE %]
-            <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" />
-        [% END %]
-        <label for="auto_renew">Automatic renewal</label>
-    </div>
+    [% UNLESS flagged and noissues %]
+        <div class="date-select">
+            [% IF NEEDSCONFIRMATION %]
+                <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" disabled="disabled" />
+            [% ELSE %]
+                <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" />
+            [% END %]
+
+            <label for="auto_renew">Automatic renewal</label>
+        </div>
+    [% END %]
 
     [% UNLESS ( noissues && Koha.Preference('OnSiteCheckoutsForce') ) %]
         [% IF ( SpecifyDueDate ) %]