Bugzilla – Attachment 119339 Details for
Bug 27282
Printing broken in some versions of Chrome
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27282: fix all occurrences
Bug-27282-fix-all-occurrences.patch (text/plain), 2.43 KB, created by
Owen Leonard
on 2021-04-08 15:58:32 UTC
(
hide
)
Description:
Bug 27282: fix all occurrences
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2021-04-08 15:58:32 UTC
Size:
2.43 KB
patch
obsolete
>From 55ce5becf4e66cb02aea7ef77ed9a95ae2bd017b Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Thu, 7 Jan 2021 15:57:16 +0000 >Subject: [PATCH] Bug 27282: fix all occurrences > >This patch fixes all the occurrences, staff and OPAC. The problem only happens on some versions of Chrome. >TO TEST: >-set up a new list with a few items >-go to /cgi-bin/koha/virtualshelves/shelves.pl and view that list. >-Click 'Print List' in Chrome. >-The tab opens but immediately closes itself. >-Apply patch and clear cache >-Try again, the print dialouge remains open > >-Go to cgi-bin/koha/sco/sco-main.pl in Chrome, make sure you can finish and print successfully >-In the staff client in Chrome makes sure printing works in the following areas: > 1. /cgi-bin/koha/circ/circulation.pl Print Slip and Print Quick Slip > 2. /cgi-bin/koha/members/boraccount.pl Make a payment and make sure you can print the invoice > 3. cgi-bin/koha/labels/spinelabel-home.pl Make a quick spine label in Chrome and make sure that prints. > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >--- > koha-tmpl/intranet-tmpl/prog/en/includes/slip-print.inc | 5 ++++- > koha-tmpl/opac-tmpl/bootstrap/en/includes/slip-print.inc | 5 ++++- > 2 files changed, 8 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/slip-print.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/slip-print.inc >index d5e60ac8d9..fba67cffcf 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/slip-print.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/slip-print.inc >@@ -6,7 +6,10 @@ > [% ELSE %] > $( window ).load(function() { > window.print(); >- setTimeout('window.close()', 1); >+ window.onafterprint = function () { >+ window.close(); >+ } >+ setTimeout('window.close()', 1000); //Hack from Chrome < 63 > }); > [% END %] > </script> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/slip-print.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/slip-print.inc >index 63f4bc2897..51c1e0177d 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/slip-print.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/slip-print.inc >@@ -5,7 +5,10 @@ > [% ELSE %] > $( window ).load(function() { > window.print(); >- setTimeout('window.close()', 1); >+ window.onafterprint = function () { >+ window.close(); >+ } >+ setTimeout('window.close()', 1000); //Hack from Chrome < 63 > }); > [% END %] > </script> >-- >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 27282
:
114535
|
114562
|
114685
|
114933
|
119338
|
119339
|
119752
|
119753