Bug 34188: (QA follow-up) Fix different versions of system preference name: Force...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / pos / printreceipt.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% PROCESS 'i18n.inc' %]
5 [% SET footerjs = 1 %]
6
7 [% INCLUDE 'doc-head-open.inc' %]
8 <title>[% FILTER collapse %]
9     [% t("Print receipt") | html %]
10 [% END %]</title>
11 [% INCLUDE 'doc-head-close.inc' %]
12
13 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
14 <link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon | url %][% ELSE %][% interface | html %]/[% theme | html %]/img/favicon.ico[% END %]" type="image/x-icon" />
15
16 [% Asset.css("css/printreceiptinvoice.css") | $raw %]
17 [% INCLUDE 'blocking_errors.inc' %]
18 </head>
19
20 <body id="pat_printfeercpt" class="pat">
21
22 <div id="receipt">
23   [% IF slip %]
24     [% IF plain %]
25     <pre>
26       [% slip | html %]
27     </pre>
28     [% ELSE %]
29       [% slip | $raw %]
30     [% END %]
31   [% ELSE %]
32     <span>No print template found</span>
33   [% END %]
34 </div>
35
36 [% MACRO jsinclude BLOCK %]
37     [% INCLUDE 'slip-print.inc' #printThenClose %]
38 [% END %]
39
40 [% INCLUDE 'intranet-bottom.inc' %]