0b6bc2b598
This patch adds [% INCLUDE 'doc-head-close.inc' %] to the following files (to make them include jQuery): koha-tmpl/intranet-tmpl/prog/en/modules/circ/printslip.tt koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-receipt.tt koha-tmpl/intranet-tmpl/prog/en/modules/members/printfeercpt.tt To test: 1) Temporarily include the follwing lines in syspref IntranetSlipPrinterJS: function printThenClose() { if (typeof jQuery != 'undefined') { // jQuery is loaded => print the version alert(jQuery.fn.jquery); } else { alert('jQuery not available'); } } 2) Go to a users page and print slips: From the Print button in the tool bar: - Print summary - Print slip - Print quick slip From the "Fines" tab: Account - 'Print' link in the table with paid transactions Without patch, a JavaScript message 'jQuery not avaliable' appears. With patch, the message displays the current jQuery version (1.7.2) 3) Remove IntranetSlipPrinterJS - Verify that the slips above print as expected. Signed-off-by: Hector Castro <hector.hecaxmmx@gmail.com> Works as expected Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
33 lines
1.3 KiB
Text
33 lines
1.3 KiB
Text
[% USE Koha %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
[% IF ( caller == 'hold-transfer' ) %]
|
|
<title>Koha › Circulation › Hold transfer print receipt</title>
|
|
[% ELSIF ( caller == 'transfer' ) %]
|
|
<title>Koha › Circulation › Transfers print receipt</title>
|
|
[% ELSIF ( caller == 'members' ) %]
|
|
<title>Koha › Patrons › Print receipt for [% borrowernumber %]</title>
|
|
[% ELSIF ( title ) %]
|
|
<title>Koha › Patrons › [% title %]</title>
|
|
[% END %]
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
<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" />
|
|
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/print.css" />
|
|
[% IF ( Koha.Preference('SlipCSS') ) %]
|
|
<link rel="stylesheet" type="text/css" href="[% Koha.Preference('SlipCSS') %]" />
|
|
[% END %]
|
|
|
|
[% INCLUDE 'slip-print.inc' #printThenClose %]
|
|
</head>
|
|
<body id="circ_printslip" class="circ" onload="printThenClose();">
|
|
<div id="receipt">
|
|
|
|
[% IF plain %]
|
|
<pre>
|
|
[% IF ( slip ) %][% slip %][% ELSE %]No slip template found[% END %]
|
|
</pre>
|
|
[% ELSE %]
|
|
[% IF ( slip ) %][% slip %][% ELSE %]No slip template found[% END %]
|
|
[% END %]
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|