View | Details | Raw Unified | Return to bug 17812
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-4 / +4 lines)
Lines 643-649 No patron matched <span class="ex">[% message | html %]</span> Link Here
643
                [% IF NEEDSCONFIRMATION %]
643
                [% IF NEEDSCONFIRMATION %]
644
                    <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" disabled="disabled" />
644
                    <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" disabled="disabled" />
645
                [% ELSE %]
645
                [% ELSE %]
646
                    <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" />
646
                    <input type="checkbox" name="auto_renew" id="auto_renew" value="auto_renew" class="circ_setting" />
647
                [% END %]
647
                [% END %]
648
648
649
                <label for="auto_renew">Automatic renewal</label>
649
                <label for="auto_renew">Automatic renewal</label>
Lines 658-666 No patron matched <span class="ex">[% message | html %]</span> Link Here
658
                        [% END %]
658
                        [% END %]
659
                    [% ELSE %]
659
                    [% ELSE %]
660
                        [% IF override_high_holds %]
660
                        [% IF override_high_holds %]
661
                            <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" checked="checked" />
661
                            <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" class="circ_setting" checked="checked" />
662
                        [% ELSE %]
662
                        [% ELSE %]
663
                            <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" />
663
                            <input type="checkbox" name="override_high_holds" id="override_high_holds" value="1" class="circ_setting" />
664
                        [% END %]
664
                        [% END %]
665
                    [% END %]
665
                    [% END %]
666
                    <label for="override_high_holds">Don't decrease checkout length based on holds</label>
666
                    <label for="override_high_holds">Don't decrease checkout length based on holds</label>
Lines 677-683 No patron matched <span class="ex">[% message | html %]</span> Link Here
677
                        <input type="hidden" name="onsite_checkout" checked="checked" value="1" />
677
                        <input type="hidden" name="onsite_checkout" checked="checked" value="1" />
678
                    </div>
678
                    </div>
679
                [% ELSE %]
679
                [% ELSE %]
680
                    <input type="checkbox" id="onsite_checkout" name="onsite_checkout" /> <label for="onsite_checkout">On-site checkout</label>
680
                    <input type="checkbox" id="onsite_checkout" name="onsite_checkout" class="circ_setting" /> <label for="onsite_checkout">On-site checkout</label>
681
                [% END %]
681
                [% END %]
682
            </div>
682
            </div>
683
        [% END %]
683
        [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/js/pages/circulation.js (-1 / +4 lines)
Lines 77-82 $(document).ready(function() { Link Here
77
        }
77
        }
78
    });
78
    });
79
79
80
    $(".circ_setting").on("click",function(){
81
        $("#barcode").focus();
82
    });
83
80
});
84
});
81
85
82
function export_checkouts(format) {
86
function export_checkouts(format) {
83
- 

Return to bug 17812