Projekt

Allgemein

Profil

Herunterladen (1,16 KB) Statistiken
| Zweig: | Markierung: | Revision:
[% USE HTML %]
[% USE LxERP -%]
[% USE P -%]
[% USE T8 -%]
[% USE Base64 -%]

<h1>[% title | html %]</h1>

<table>
<thead class="listheading">
<tr>
<th>[% 'Dunning number' | $T8 %]</th>
<th width="250px">[% 'Invoice Number' | $T8 %]</th>
<th>[% 'Include original Invoices?' | $T8 %]</th>
<th>[% 'eMail?' | $T8 %]</th>
<th>[% 'Status' | $T8 %]</th>
</tr>
</thead>
<tbody>
[% FOREACH s = status -%]
<tr class=[%- IF s.error %]"listrow_error"[% ELSE %]"listrow"[% END %]>
<td>[% IF !s.error %][% P.link_tag('dn.pl?action=show_dunning&showold=1&dunning_id=' _ s.dunning_id, s.dunning_id) %][% END %]</td>
<td>[% s.invnumbers.join(", ") %]</td>
<td>[% s.print_original_invoice ? LxERP.t8('Yes') : LxERP.t8('No') %]</td>
<td>[% s.send_email ? LxERP.t8('Yes') : LxERP.t8('No') %]</td>
<td>[% s.error ? s.error : LxERP.t8('Ok') %]</td>
</tr>
[%- END %]
</tbody>
</table>

[%- IF pdf_filename && pdf_content -%]
<script type="text/javascript">
<!--
$(function() {kivi.save_file('[% pdf_content.encode_base64 %]', 'application/pdf', 0, '[% pdf_filename %]');});
-->
</script>
[%- END %]
(8-8/8)