e2baa5febe0109533ffbc6507a5d83c18c30055d
[kivitendo-erp.git] / templates / webpages / bank_import / import_mt940.html
1 [%- USE HTML %]
2 [%- USE LxERP %]
3 [%- USE L %]
4 [%- USE T8 %]
5
6 <h1>[% FORM.title %]</h1>
7
8 [% IF preview %]
9   <form method="post" action="controller.pl" enctype="multipart/form-data" id="form">
10     [% L.hidden_tag('file_name', SELF.file_name) %]
11     [% L.hidden_tag('charset', SELF.charset) %]
12   </form>
13 [% END %]
14
15 <h2>[% LxERP.t8("Overview") %]</h2>
16
17 <div>
18   <table>
19     <tr>
20       <td>[% LxERP.t8("Total number of entries") %]:</td>
21       <td align="right">[% SELF.statistics.total %]</td>
22     </tr>
23
24     <tr>
25       <td>[% LxERP.t8("Entries with errors") %]:</td>
26       <td align="right">[% SELF.statistics.errors %]</td>
27     </tr>
28
29     <tr>
30       <td>[% LxERP.t8("Already imported entries (duplicates)") %]:</td>
31       <td align="right">[% SELF.statistics.duplicates %]</td>
32     </tr>
33
34     <tr>
35 [% IF preview %]
36       <td>[% LxERP.t8("Entries ready to import") %]:</td>
37       <td align="right">[% SELF.statistics.to_import %]</td>
38 [% ELSE %]
39       <td>[% LxERP.t8("Imported entries") %]:</td>
40       <td align="right">[% SELF.statistics.imported %]</td>
41 [% END %]
42     </tr>
43   </table>
44 </div>
45
46 [% IF SELF.statistics.total %]
47
48 <h2>[% LxERP.t8("Transactions") %]</h2>
49
50 <table>
51   <thead>
52     <tr class="listheading">
53       <th>[% LxERP.t8("Transaction date") %]</th>
54       <th>[% LxERP.t8("Valutadate") %]</th>
55       <th>[% LxERP.t8("Other party") %]</th>
56       <th>[% LxERP.t8("Purpose") %]</th>
57       <th>[% LxERP.t8("Amount") %]</th>
58       <th>[% LxERP.t8("Remote account") %]</th>
59       <th>[% LxERP.t8("Local account") %]</th>
60       <th>[% LxERP.t8("Information") %]</th>
61     </tr>
62   </thead>
63
64   <tbody>
65     [% FOREACH transaction = SELF.transactions %]
66       <tr class="listrow[% IF transaction.error %]_error[% END %]">
67         <td align="right">[% transaction.transdate.to_kivitendo %]</td>
68         <td align="right">[% transaction.valutadate.to_kivitendo %]</td>
69         <td>[% HTML.escape(transaction.remote_name) %]</td>
70         <td>[% HTML.escape(transaction.purpose) %]</td>
71         <td align="right">[% LxERP.format_amount(transaction.amount, 2) %]</td>
72         <td>
73           [% IF transaction.remote_bank_code && transaction.remote_account_number %]
74             [% HTML.escape(transaction.remote_bank_code) %] / [% HTML.escape(transaction.remote_account_number) %]
75           [% END %]
76         </td>
77         <td>[% HTML.escape(transaction.bank_account.name) %]</td>
78         <td>
79           [% IF transaction.error %]
80             [% HTML.escape(transaction.error) %]
81           [% ELSIF transaction.duplicate %]
82             [% LxERP.t8("Duplicate") %]
83           [% ELSIF preview %]
84             [% LxERP.t8("To import") %]
85           [% ELSE %]
86             [% LxERP.t8("Imported") %]
87           [% END %]
88         </td>
89       </tr>
90     [% END %]
91   </tbody>
92 </table>
93
94 [% END %]