From 9970739c2be2dbe853dbda5717bd4ccdc2d07072 Mon Sep 17 00:00:00 2001 From: David Cook Date: Mon, 25 May 2020 16:25:06 +1000 Subject: [PATCH] Bug 25597: Add missing Javascript libraries to sco printslip This patch adds missing Javascript libraries to the self-checkout print slip. These missing libraries were preventing the auto print prompt and close. There was also a font error. To Test: 0) Apply patch 1) Turn on system preference SelfCheckReceiptPrompt 2) Check out item via /cgi-bin/koha/sco/sco-main.pl 3) Click "Finish" 4) Press F12 on keyboard and choose Console 5) Note no Javascript errors 6) Note that print dialog appears and closes after a print option is chosen Signed-off-by: Katrin Fischer Signed-off-by: Alex Arnaud Signed-off-by: Jonathan Druart (cherry picked from commit 8e00a96cf17f9c429050ce2ce5e3095fe566121a) Signed-off-by: Lucas Gass (cherry picked from commit f83d9e683f7f24126e0bba5b36ab4a55d8673de9) Signed-off-by: Aleisha Amohia (cherry picked from commit b0c7a80c5acf76d78f07d75724c9c1afdfad935b) Signed-off-by: Victor Grousset/tuxayo --- koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/printslip.tt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/printslip.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/printslip.tt index 2693dd441c..8ffb3f4a7b 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/printslip.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/printslip.tt @@ -11,7 +11,9 @@ [% END %] -[% Asset.js("lib/jquery/jquery.js") | $raw %] +[% Asset.js("lib/jquery/jquery-3.4.1.min.js") | $raw %] +[% Asset.js("lib/jquery/jquery-migrate-3.1.0.min.js") | $raw %] +[% Asset.js("lib/fontfaceobserver.min.js") | $raw %] [% Asset.js("js/global.js") | $raw %] [% INCLUDE 'slip-print.inc' #printThenClose %] -- 2.20.1