View | Details | Raw Unified | Return to bug 33478
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/printreceipt.tt (-1 / +1 lines)
Lines 14-20 Link Here
14
<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon | url %][% ELSE %][% interface | html %]/[% theme | html %]/img/favicon.ico[% END %]" type="image/x-icon" />
14
<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon | url %][% ELSE %][% interface | html %]/[% theme | html %]/img/favicon.ico[% END %]" type="image/x-icon" />
15
15
16
[% Asset.css("css/printreceiptinvoice.css") | $raw %]
16
[% Asset.css("css/printreceiptinvoice.css") | $raw %]
17
[% IF slip.style %]<style>[% slip.style | $raw %]</style>[% END %]
17
[% IF style %]<style>[% style | $raw %]</style>[% END %]
18
[% INCLUDE 'blocking_errors.inc' %]
18
[% INCLUDE 'blocking_errors.inc' %]
19
</head>
19
</head>
20
20
(-)a/pos/printreceipt.pl (-2 / +2 lines)
Lines 69-75 my $letter = C4::Letters::GetPreparedLetter( Link Here
69
69
70
$template->param(
70
$template->param(
71
    slip  => $letter->{content},
71
    slip  => $letter->{content},
72
    plain => !$letter->{is_html}
72
    plain => !$letter->{is_html},
73
    style => $letter->{style},
73
);
74
);
74
75
75
output_html_with_http_headers $input, $cookie, $template->output;
76
output_html_with_http_headers $input, $cookie, $template->output;
76
- 

Return to bug 33478