Koha/koha-tmpl/intranet-tmpl/prog/en/modules/circ/printslip.tt
Nick Clemens 03e17cda38
Bug 38089: (QA follow-up) Ensure style works on members/printslip.pl
When moving the style up, it was moved before the code that handles printing a single slip, i.e.
taking the variables and forming a slip hash.

This patch moves that code to the top and additionally passes through the CODE of the notice so the ID is not blank

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2024-10-11 11:13:47 +02:00

58 lines
2.3 KiB
Text

[% USE raw %]
[% USE Asset %]
[% USE Koha %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
[% UNLESS slips && slips.size %]
[% SET slips = [{content => slip, is_html => !plain, style => style, id => id }] %]
[% END %]
<title>[% FILTER collapse %]
[% IF ( caller == 'hold-transfer' ) %]
[% t("Hold transfer print receipt") | html %] &rsaquo;
[% t("Circulation") | html %] &rsaquo;
[% ELSIF ( caller == 'transfer' ) %]
[% t("Transfers print receipt") | html %] &rsaquo;
[% t("Circulation") | html %] &rsaquo;
[% ELSIF ( caller == 'members' ) %]
[% tx("Print receipt for {borrowernumber}", { borrowernumber = borrowernumber }) | html %] &rsaquo;
[% t("Patrons") | html %] &rsaquo;
[% ELSIF ( caller == 'recall' ) %]
[% t("Recall print receipt") | html %] &rsaquo;
[% t("Circulation") | html %] &rsqaquo;
[% ELSIF ( title ) %][%# FIXME title is never defined %]
[% title | html %] &rsaquo;
[% t("Patrons") | html %] &rsaquo;
[% END %]
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon | url %][% ELSE %][% interface | html %]/[% theme | html %]/img/favicon.ico[% END %]" type="image/x-icon" />
[% Asset.css("css/print.css") | $raw %]
[% IF ( Koha.Preference('SlipCSS') ) %]
<link rel="stylesheet" type="text/css" href="[% Koha.Preference('SlipCSS') | $raw %]" />
[% END %]
[% FOR slip IN slips %]
[% IF slip.style %]<style>[% slip.style.replace('([^\{\}]+?)\s*\{', '#slip_' _ slip.id _ ' $1 {') | $raw %]</style>[% END %]
[% END %]
[% INCLUDE 'slip-print.inc' #printThenClose %]
</head>
<body id="circ_printslip" class="circ">
<div id="receipt">
[% FOR slip IN slips %]
<div id="slip_[% slip.id | html %]">
[% UNLESS slip.is_html %]
<pre>
[% IF ( slip.content ) %][% slip.content | html %][% ELSE %]No slip template found[% END %]
</pre>
[% ELSE %]
[% IF ( slip.content ) %][% slip.content | $raw %][% ELSE %]No slip template found[% END %]
[% END %]
</div>
[% IF slips.size > 1 && !loop.last%]
<div class="pagebreak"></div>
[% END %]
[% END %]
[% INCLUDE 'intranet-bottom.inc' %]