Bug 16575: Irregular behaviour using window.print() followed by window.location.href
authorOwen Leonard <oleonard@myacpl.org>
Wed, 30 May 2018 14:15:19 +0000 (14:15 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Thu, 19 Jul 2018 16:12:56 +0000 (16:12 +0000)
This patch updates the OPAC and staff client carts to use CSS to
control print output, removing a print parameter which was passed to the
script.

Currently, when you click "Print" on the OPAC basket, it navigates to
a new page and initiates window.print() followed by a
window.location.href change again. Unfortunately, due to differences in
IE, Chrome, and FF, it will either show the print options, navigate away
without showing them, or refuse to navigate away after printing. By
changing to using print CSS, we don't navigate away from the basket in
the first place, so we prevent this irregular behavior.

TEST PLAN

1) Apply the patch
2) Create an OPAC basket by clicking "Add to cart" on multiple items
3) Using Chrome, IE, and Firefox (of any version), click the "Print"
   button
4) You should see the relevant print menu without the OPAC basket
   re-loading in any way.
5) After printing is complete, you should still be on the OPAC basket
   pop-up
6) Perform the same tests in the staff client

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

basket/basket.pl
koha-tmpl/intranet-tmpl/prog/css/print.css
koha-tmpl/intranet-tmpl/prog/css/staff-global.css
koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt
koha-tmpl/intranet-tmpl/prog/js/basket.js
koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-basket.tt
koha-tmpl/opac-tmpl/bootstrap/less/print.less

index 76edc34..4318a95 100755 (executable)
@@ -39,11 +39,9 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
 );
 
 my $bib_list     = $query->param('bib_list');
-my $print_basket = $query->param('print');
 my $verbose      = $query->param('verbose');
 
 if ($verbose)      { $template->param( verbose      => 1 ); }
-if ($print_basket) { $template->param( print_basket => 1 ); }
 
 my @bibs = split( /\//, $bib_list );
 my @results;
index c71c62b..53617b0 100644 (file)
@@ -302,7 +302,8 @@ form#sortbyform,
 fieldset.action,
 .list-actions,
 .print,
-.ui-tabs-nav {
+.ui-tabs-nav,
+.cart-controls {
     display: none;
 }
 
@@ -329,3 +330,30 @@ p#upload_image
 {
     display: none;
 }
+
+th {
+    text-align: left;
+}
+
+#cart_basket .container,
+#cart_basket table,
+#cart_basket tr,
+#cart_basket th,
+#cart_basket td,
+#cart_basket .sorting_asc,
+#cart_basket .sorting,
+#cart_basket .sorting_desc,
+#cart_basket .sorting_disabled,
+#cart_basket tbody tr:nth-child(2n+1) td {
+    background: transparent none;
+    border: 0;
+}
+
+#cart_basket tr {
+    border-collapse: collapse;
+    border-bottom: 1px solid #DDD;
+}
+
+.container {
+    width:100%;
+}
index 5557bfc..2116945 100644 (file)
@@ -3347,3 +3347,8 @@ span.name {
     margin: auto;
     margin-bottom: 2px;
 }
+
+.cart-controls {
+    border-top: 1px solid #E8E8E8;
+    padding: 7px 0;
+}
index 6b1d28f..c798725 100644 (file)
@@ -1,7 +1,7 @@
 [% USE Asset %]
 [% SET footerjs = 1 %]
 [% BLOCK controls %]
-    <p style="padding: 7px 0; border-top : 1px solid #E8E8E8;">
+    <p class="cart-controls">
         <a id="CheckAll" href="#"><i class="fa fa-check"></i> Select all</a> <a id="CheckNone" href="#"><i class="fa fa-remove"></i> Clear all</a>
         | <b>Selected items :</b>
         <a href="#" id="remove_from_cart">Remove</a>
     </p>
 [% END %]
 [% INCLUDE 'doc-head-open.inc' %]
-<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] Catalog &rsaquo; Your cart</title>
-    [% IF ( print_basket ) %]
-
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon %][% ELSE %][% interface %]/[% theme %]/img/favicon.ico[% END %]" type="image/x-icon" />
-<style type="text/css">
-    @import url([% interface %]/[% theme %]/css/print.css);
-</style>
-    [% ELSE %][% INCLUDE 'doc-head-close.inc' %]
-[% Asset.css("css/datatables.css") %]
-       [% END %]
+<title>Koha &rsaquo; Catalog &rsaquo; Your cart</title>
+[% INCLUDE 'doc-head-close.inc' %]
 </head>
-[% IF ( print_basket ) %]<body id="cart_basket" class="cart" onload="print();history.back();">[% ELSE %]<body id="cart_basket" class="cart">[% END %]
+
+<body id="cart_basket" class="cart">
 
 <div class="main container-fluid">
     <div class="row">
         <div class="col-md-12">
 
 <div class="container">
-[% UNLESS ( print_basket ) %]
+
 <h1>Your cart</h1>
 
 <div id="toolbar" class="btn-toolbar">
     <a class="btn btn-default btn-sm" href="basket.pl" id="empty_cart"><i class="fa fa-trash"></i> Empty and close</a>
     <a class="btn btn-default btn-sm close" href="basket.pl"><i class="fa fa-times-circle"></i> Hide window</a>
 </div>
-        [% END %]
+
 
 [% IF ( verbose ) %]
-    [% UNLESS ( print_basket ) %]
         [% PROCESS controls %]
-    [% END %]
             <form action="basket.pl" method="get" name="bookbag_form" id="bookbag_form">
     [% FOREACH BIBLIO_RESULT IN BIBLIO_RESULTS %]
     <h3>
-        [% IF ( print_basket ) %]
-            [% BIBLIO_RESULT.title |html %]
-                [% FOREACH subtitl IN BIBLIO_RESULT.subtitle %] [% subtitl.subfield | html %][% END %]
-                [% IF ( BIBLIO_RESULT.author ) %] [% BIBLIO_RESULT.author %][% END %]
-        [% ELSE %]
-                <input type="checkbox" class="select_record" value="[% BIBLIO_RESULT.biblionumber %]" name="bib[% BIBLIO_RESULT.biblionumber %]" id="bib[% BIBLIO_RESULT.biblionumber %]" />
-                [% BIBLIO_RESULT.title |html %]
-                [% FOREACH subtitl IN BIBLIO_RESULT.subtitle %] [% subtitl.subfield | html %][% END %]
-                [% IF ( BIBLIO_RESULT.author ) %] [% BIBLIO_RESULT.author %][% END %]
-        [% END %]
+        <input type="checkbox" class="select_record noprint" value="[% BIBLIO_RESULT.biblionumber %]" name="bib[% BIBLIO_RESULT.biblionumber %]" id="bib[% BIBLIO_RESULT.biblionumber %]" />
+        [% BIBLIO_RESULT.title |html %]
+        [% FOREACH subtitl IN BIBLIO_RESULT.subtitle %] [% subtitl.subfield | html %][% END %]
+        [% IF ( BIBLIO_RESULT.author ) %] [% BIBLIO_RESULT.author %][% END %]
     </h3>
            <!-- COinS / Openurl -->
     <span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.au=[% BIBLIO_RESULT.author %]&amp;rft.btitle=[% BIBLIO_RESULT.title |url %]&amp;rft.date=[% BIBLIO_RESULT.publicationyear %]&amp;rft.tpages=[% BIBLIO_RESULT.item('size') %]&amp;rft.isbn=[% BIBLIO_RESULT.isbn |url %]&amp;rft.aucorp=&amp;rft.place=[% BIBLIO_RESULT.place %]&amp;rft.pub=[% BIBLIO_RESULT.publisher |url %]&amp;rft.edition=[% BIBLIO_RESULT.edition %]&amp;rft.series=[% BIBLIO_RESULT.series %]&amp;rft.genre="></span>
             </form>
 
 [% ELSE %]
-[% UNLESS ( print_basket ) %]
+
     <form action="/cgi-bin/koha/basket/basket.pl" method="get" name="bookbag_form" id="bookbag_form">
     [% PROCESS controls %]
-[% END %]
 
     <table id="itemst">
        <thead><tr>
-        [% UNLESS ( print_basket ) %]<th class="NoSort">&nbsp;</th>[% END %]
+        <th class="NoSort noprint">&nbsp;</th>
         <th class="anti-the">Title</th>
         <th>Item type</th>
         <th><a id="items-popover" href="#" data-trigger="hover" data-toggle="popover" data-placement="top" title="Item sorting" data-content="Items are sorted by the highest or lowest callnumber in a group of items respectively.">Items</a></th>
 
         [% FOREACH BIBLIO_RESULT IN BIBLIO_RESULTS %]
                 <tr>
-            [% UNLESS ( print_basket ) %]<td>
+                    <td class="noprint">
                         <input type="checkbox" class="select_record" value="[% BIBLIO_RESULT.biblionumber %]" name="bib[% BIBLIO_RESULT.biblionumber %]" id="bib[% BIBLIO_RESULT.biblionumber %]" />
 
-                </td> [% END %]
+                </td>
             <td><a href="[% BIBLIO_RESULT.dest %]?biblionumber=[% BIBLIO_RESULT.biblionumber %]" class="open_title">
                         [% BIBLIO_RESULT.title |html %] [% FOREACH subtitl IN BIBLIO_RESULT.subtitle %] [% subtitl.subfield | html %][% END %]
                     </a>
     </div>
 </div>
             [% INCLUDE js_includes.inc %]
-            [% UNLESS ( print_basket ) %]
-                [% INCLUDE 'datatables.inc' %]
-                [% Asset.js("js/cart.js") %]
-                [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %]
-            [% END %]
+            [% INCLUDE 'datatables.inc' %]
+            [% Asset.js("js/cart.js") %]
+            [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %]
     </body>
 </html>
index e477cce..d6ca7be 100644 (file)
@@ -381,8 +381,7 @@ function downloadBasket() {
 }
 
 function printBasket() {
-    var loc = document.location + "&print=1";
-    document.location = loc;
+    window.print();
 }
 
 function showMore() {
index e8cb19e..282c0d8 100644 (file)
@@ -15,7 +15,7 @@
                 <div class="span12">
                     <div id="userbasket">
                         <h2>Your cart</h2>
-                            <div id="toolbar" class="toolbar">
+                            <div id="toolbar" class="toolbar noprint">
                                 [% IF ( verbose ) %]
                                     <a href="opac-basket.pl" class="brief">Brief display</a>
                                 [% ELSE %]
@@ -32,7 +32,7 @@
                                 [% END %]
                             </div>
 
-                            <div id="selections-toolbar" class="toolbar">
+                            <div id="selections-toolbar" class="toolbar noprint">
                                 <a id="CheckAll" href="#">Select all</a>
                                 <a id="CheckNone" href="#">Clear all</a>
                                 <span class="sep">|</span>
index 92153cc..8f837ac 100644 (file)
@@ -153,32 +153,40 @@ body#basket a {
 }
 
 body#basket table {
-       border-top : 1px solid #EEE;
-       border-left : 1px solid #EEE;
+    border-collapse: collapse;
 }
+
 body#basket td,
 body#basket th {
        background-color : transparent;
+    border: 0;
        padding : 2px;
 }
 
 body#basket th {
        background-color : #EEE;
+    border: 0;
 }
 
 body#basket th,
 body#basket th[scope=col] {
+    border: 0;
        text-align : center;
        vertical-align : middle;
 }
 
 body#basket th[scope=row] {
+    border: 0;
        font-size : 89%;
        text-align : right;
        vertical-align : top;
        width : 10%;
 }
 
+#basket tr {
+    border-bottom: 1px solid #DDD;
+}
+
 body#basket p {
        font-size : 85%;
        margin : .2em 0;
@@ -243,3 +251,8 @@ div#userupdate input,div#userupdate textarea {
 #ulactioncontainer {
     display: none;
 }
+
+.main,
+.table-bordered {
+    border: 0;
+}
\ No newline at end of file