Bugzilla – Attachment 107764 Details for
Bug 26136
Prevent double submit of checkin form
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 26136: Prevent double submit on checkin-form
Bug-26136-Prevent-double-submit-on-checkin-form.patch (text/plain), 1.45 KB, created by
Nick Clemens (kidclamp)
on 2020-08-04 13:17:20 UTC
(
hide
)
Description:
Bug 26136: Prevent double submit on checkin-form
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2020-08-04 13:17:20 UTC
Size:
1.45 KB
patch
obsolete
>From 8ac8e44b5c7a6ca052a9da3f07f0611a58137902 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Tue, 4 Aug 2020 13:13:43 +0000 >Subject: [PATCH] Bug 26136: Prevent double submit on checkin-form > >To test: > 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 >10 - Check the statistics table >11 - Only one entry, huzzah! >--- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >index 1293dafe17..eb027621ee 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >+++ b/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(); >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 26136
:
107764
|
107784
|
107907