@@ -, +, @@ renewing via checkouts table barcode. barcode. --- koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js | 5 +++++ 1 file changed, 5 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js +++ a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js @@ -114,6 +114,11 @@ $(document).ready(function() { }, "json") }); + // Refocus on barcode field if it exists + if ( $("#barcode").length ) { + $("#barcode").focus(); + } + // Prevent form submit return false; }); --