Bugzilla – Attachment 34381 Details for
Bug 13415
Prevent librarians from scanning multiple items into a single barcode field
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 13415 [QA Followup] - Change bind to on, revert barcode disable
PASSED-QA-Bug-13415-QA-Followup---Change-bind-to-o.patch (text/plain), 1.79 KB, created by
Katrin Fischer
on 2014-12-14 20:26:23 UTC
(
hide
)
Description:
[PASSED QA] Bug 13415 [QA Followup] - Change bind to on, revert barcode disable
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2014-12-14 20:26:23 UTC
Size:
1.79 KB
patch
obsolete
>From ee298893bdf1dfc317826de714ac0f3b215c2701 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Fri, 12 Dec 2014 06:53:33 -0500 >Subject: [PATCH] [PASSED QA] Bug 13415 [QA Followup] - Change bind to on, > revert barcode disable > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >Tested according to test plan, passes tests and QA script. >--- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 11 ++++++----- > 1 file changed, 6 insertions(+), 5 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >index 04b9d61..6963c90 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -60,10 +60,7 @@ function toggle_onsite_checkout(){ > } > > $(document).ready(function() { >- [% IF !NEEDSCONFIRMATION %] >- $('#barcode').prop('disabled', false).focus(); >- [% END %] >- $('#mainform').bind('submit',function() { >+ $('#mainform').on('submit',function() { > $('#barcode').on('keypress',function(event) { > $('#barcodeSubmittedModal').modal(); > event.preventDefault(); } >@@ -539,7 +536,11 @@ No patron matched <span class="ex">[% message %]</span> > > <div class="hint">Enter item barcode:</div> > >- <input type="text" name="barcode" id="barcode" class="barcode focus" size="14" disabled="disabled" /> >+ [% IF NEEDSCONFIRMATION %] >+ <input type="text" name="barcode" id="barcode" class="barcode focus" size="14" disabled="disabled" /> >+ [% ELSE %] >+ <input type="text" name="barcode" id="barcode" class="barcode focus" size="14" /> >+ [% END %] > <button type="submit" class="btn">Check out</button> > > <div class="date-select"> >-- >1.9.1
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 13415
:
34202
|
34203
|
34235
|
34341
|
34380
| 34381