Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 2aad4d32

Von Cem Aydin vor mehr als 3 Jahren hinzugefügt

  • ID 2aad4d326cdf27e382c5eda95a7c227909799f6f
  • Vorgänger 366f064b
  • Nachfolger 33538863

Neues Design: Neuer MT940 Import, Template auf neues Design angepasst

Unterschiede anzeigen:

templates/webpages/bank_import/import_mt940.html
13 13

  
14 14
<h2>[% LxERP.t8("Overview") %]</h2>
15 15

  
16
<div>
17
  <table>
18
    <tr>
19
      <td>[% LxERP.t8("Total number of entries") %]:</td>
20
      <td align="right">[% SELF.statistics.total %]</td>
21
    </tr>
22

  
23
    <tr>
24
      <td>[% LxERP.t8("Entries with errors") %]:</td>
25
      <td align="right">[% SELF.statistics.errors %]</td>
26
    </tr>
27

  
28
    <tr>
29
      <td>[% LxERP.t8("Already imported entries (duplicates)") %]:</td>
30
      <td align="right">[% SELF.statistics.duplicates %]</td>
31
    </tr>
32

  
33
    <tr>
16
<table class="tbl-horizontal">
17
  <tr>
18
    <th>[% LxERP.t8("Total number of entries") %]:</th>
19
    <td>[% SELF.statistics.total %]</td>
20
  </tr>
21
  <tr>
22
    <th>[% LxERP.t8("Entries with errors") %]:</th>
23
    <td>[% SELF.statistics.errors %]</td>
24
  </tr>
25
  <tr>
26
    <th>[% LxERP.t8("Already imported entries (duplicates)") %]:</th>
27
    <td>[% SELF.statistics.duplicates %]</td>
28
  </tr>
29
  <tr>
34 30
[% IF preview %]
35
      <td>[% LxERP.t8("Entries ready to import") %]:</td>
36
      <td align="right">[% SELF.statistics.to_import %]</td>
31
    <th>[% LxERP.t8("Entries ready to import") %]:</th>
32
    <td>[% SELF.statistics.to_import %]</td>
37 33
[% ELSE %]
38
      <td>[% LxERP.t8("Imported entries") %]:</td>
39
      <td align="right">[% SELF.statistics.imported %]</td>
34
    <th>[% LxERP.t8("Imported entries") %]:</th>
35
    <td>[% SELF.statistics.imported %]</td>
40 36
[% END %]
41
    </tr>
42
  </table>
43
</div>
37
  </tr>
38
</table>
44 39

  
45 40
[% IF SELF.statistics.total %]
46 41

  
47 42
<h2>[% LxERP.t8("Transactions") %]</h2>
48 43

  
49
<table>
44
<table class="tbl-list">
50 45
  <thead>
51 46
    <tr class="listheading">
52 47
      <th>[% LxERP.t8("Transaction date") %]</th>
......
59 54
      <th>[% LxERP.t8("Information") %]</th>
60 55
    </tr>
61 56
  </thead>
62

  
63 57
  <tbody>
64 58
    [% FOREACH transaction = SELF.transactions %]
65 59
      <tr class="listrow[% IF transaction.error %]_error[% END %]">
66
        <td align="right">[% transaction.transdate.to_kivitendo %]</td>
67
        <td align="right">[% transaction.valutadate.to_kivitendo %]</td>
60
        <td class="center">[% transaction.transdate.to_kivitendo %]</td>
61
        <td class="center">[% transaction.valutadate.to_kivitendo %]</td>
68 62
        <td>[% HTML.escape(transaction.remote_name) %]</td>
69 63
        <td>[% HTML.escape(transaction.purpose) %]</td>
70
        <td align="right">[% LxERP.format_amount(transaction.amount, 2) %]</td>
64
        <td class="numeric">[% LxERP.format_amount(transaction.amount, 2) %]</td>
71 65
        <td>
72 66
          [% IF transaction.remote_bank_code && transaction.remote_account_number %]
73 67
            [% HTML.escape(transaction.remote_bank_code) %] / [% HTML.escape(transaction.remote_account_number) %]

Auch abrufbar als: Unified diff