@@ -, +, @@ 1 - Browse to Circulation->Check-in 2 - Type a barcode into the Check in box 3 - Hit Enter as many as times as you can 4 - Check the statistics table: SELECT * FROM statistics WHERE itemnumber={itemnumber} AND DATE(datetime)=CURDATE(); 5 - Note you have multiple lines for the same item at the same time 6 - Apply patch 7 - Reload the page 8 - Type the barcode 9 - Press Enter even more fast and more furiously --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 1 + 1 file changed, 1 insertion(+) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -908,6 +908,7 @@ $("#barcode").focus(); } $(document).ready(function () { + $("#checkin-form").preventDoubleFormSubmit(); $(".modal.block").modal({ backdrop: 'static'}).on('shown.bs.modal', function() { $("#barcode").prop("disabled", true); $(".show_checkin_dialog").show(); --