Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 19daeca1

Von Bernd Bleßmann vor mehr als 2 Jahren hinzugefügt

  • ID 19daeca1ec1c6c16ca870e9abbfba5c7a2624c91
  • Vorgänger acbb397a
  • Nachfolger 7ac9b3ea

deisgn4.0: Mahnungen: Status-Bericht: HTML-Template kopiert

Unterschiede anzeigen:

templates/design40_webpages/dunning/status.html
[% USE HTML %]
[% USE LxERP -%]
[% USE P -%]
[% USE T8 -%]
[% USE Base64 -%]
<h1>[% title | html %]</h1>
[%- INCLUDE 'common/flash.html' -%]
<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 %]

Auch abrufbar als: Unified diff