@@ -, +, @@ on-site checkouts - Open any patron account in circulation. - Expand the "Checkout settings" panel. - Click the label or checkbox for "Automatic renewal", "Don't decrease checkout length based on holds" and "On-site checkout" - Confirm that the focus has moved to the barcode field. --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 8 ++++---- koha-tmpl/intranet-tmpl/prog/js/pages/circulation.js | 4 ++++ 2 files changed, 8 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -643,7 +643,7 @@ No patron matched [% message | html %] [% IF NEEDSCONFIRMATION %] [% ELSE %] - + [% END %] @@ -658,9 +658,9 @@ No patron matched [% message | html %] [% END %] [% ELSE %] [% IF override_high_holds %] - + [% ELSE %] - + [% END %] [% END %] @@ -677,7 +677,7 @@ No patron matched [% message | html %] [% ELSE %] - + [% END %] [% END %] --- a/koha-tmpl/intranet-tmpl/prog/js/pages/circulation.js +++ a/koha-tmpl/intranet-tmpl/prog/js/pages/circulation.js @@ -77,6 +77,10 @@ $(document).ready(function() { } }); + $(".circ_setting").on("click",function(){ + $("#barcode").focus(); + }); + }); function export_checkouts(format) { --