Bugzilla – Attachment 157576 Details for
Bug 34946
Remove the use of event attributes from self checkout and check-in
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34946: Remove the use of event attributes from self checkout and check-in
Bug-34946-Remove-the-use-of-event-attributes-from-.patch (text/plain), 4.43 KB, created by
Katrin Fischer
on 2023-10-20 20:31:16 UTC
(
hide
)
Description:
Bug 34946: Remove the use of event attributes from self checkout and check-in
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2023-10-20 20:31:16 UTC
Size:
4.43 KB
patch
obsolete
>From eb6d9b1819a8def39912783689b08bd24b9bc095 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Thu, 28 Sep 2023 12:48:36 +0000 >Subject: [PATCH] Bug 34946: Remove the use of event attributes from self > checkout and check-in > >This patch removes the use of event attributes from the self checkout >and self check-in templates. These events are defined now along with the >other in-page JS. > >To test you must have SelfCheckInModule and WebBasedSelfCheck >preferences enabled. And SelfCheckoutByLogin = cardnumber. > >- Navigate to the self checkout interface > (/cgi-bin/koha/sco/sco-main.pl). >- When the page loads, cursor focus should be automatically placed in > the barcode field. >- Test the "munge history" feature from Bug 10016: > [1] Start a web-based self-check session. > [2] Enter a patron barcode. > [3] Allow the self-check session to time out. > [4] Use the back button. You should get the patron barcode > entry form; you should not be prompted to resubmit form input. > [5] Enter a patron barcode, perform some transactions, then > use the finish button. > [6] Next, use the back button. You should get the patron barcode > entry form. >- Test the updated checkout_confirm function by submitting the "magic" > barcode for checkout: __KOHA_NEW_CIRC__. The user's session should be > ended. > >- Navigate to the self check-in interface > (/cgi-bin/koha/sco/sci-main.pl). >- Test the cursor focus and "munge history" feature on this page too. > >Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net> >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > .../bootstrap/en/modules/sci/sci-main.tt | 10 +++++++++- > .../bootstrap/en/modules/sco/sco-main.tt | 15 +++++++++++++-- > 2 files changed, 22 insertions(+), 3 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sci/sci-main.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sci/sci-main.tt >index 60b8137a5a..11c961f3c9 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sci/sci-main.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sci/sci-main.tt >@@ -59,7 +59,7 @@ > [% Asset.js('js/Gettext.js') | $raw %] > [% Asset.js('js/i18n.js') | $raw %] > </head> >-<body id="sci_main" class="sci" onload="dofocus();" onunload="mungeHistory();"> >+<body id="sci_main" class="sci"> > [% INCLUDE 'masthead-sci.inc' %] > > <div class="main"> >@@ -217,6 +217,14 @@ > > var barcodes = []; > >+ $( window ).on( "load", function() { >+ dofocus(); >+ }); >+ >+ $( window ).on( "unload", function() { >+ mungeHistory(); >+ }); >+ > $(document).ready(function() { > // Barcodes scanning table initially hidden > $("#sci_barcodes_table").hide(); >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt >index 4b0f219df9..7e120d8442 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt >@@ -39,7 +39,7 @@ > [% Asset.js('js/Gettext.js') | $raw %] > [% Asset.js('js/i18n.js') | $raw %] > </head> >-<body id="sco_main" class="sco" onload="dofocus();" onunload="mungeHistory();"> >+<body id="sco_main" class="sco"> > [% INCLUDE 'masthead-sco.inc' %] > > <div class="main"> >@@ -248,7 +248,7 @@ > > [% IF ( validuser ) %] > <div id="newcheckout" class="sco_entry"> >- <form id="scan_form" name="scan_form" method="post" action="/cgi-bin/koha/sco/sco-main.pl" onsubmit="return checkout_confirm('[% patronid | html %]');"> >+ <form id="scan_form" name="scan_form" method="post" action="/cgi-bin/koha/sco/sco-main.pl"> > <legend><h2> > [% IF ( Koha.Preference('SCOAllowCheckin') ) %] > <span>Check out, return, or renew an item:</span> >@@ -507,6 +507,13 @@ > } > [% END %] > >+ $( window ).on( "load", function() { >+ dofocus(); >+ }); >+ >+ $( window ).on( "unload", function() { >+ mungeHistory(); >+ }); > > $(document).ready(function() { > dofocus(); >@@ -541,6 +548,10 @@ > > return true; > }); >+ >+ $("#scan_form").on("submit", function(){ >+ return checkout_confirm('[% patronid | html %]'); >+ }); > }); > > </script> >-- >2.30.2
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 34946
:
156329
|
157574
| 157576