6 <h1>[% FORM.title %]</h1>
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) %]
15 <h2>[% LxERP.t8("Overview") %]</h2>
20 <td>[% LxERP.t8("Total number of entries") %]:</td>
21 <td align="right">[% SELF.statistics.total %]</td>
25 <td>[% LxERP.t8("Entries with errors") %]:</td>
26 <td align="right">[% SELF.statistics.errors %]</td>
30 <td>[% LxERP.t8("Already imported entries (duplicates)") %]:</td>
31 <td align="right">[% SELF.statistics.duplicates %]</td>
36 <td>[% LxERP.t8("Entries ready to import") %]:</td>
37 <td align="right">[% SELF.statistics.to_import %]</td>
39 <td>[% LxERP.t8("Imported entries") %]:</td>
40 <td align="right">[% SELF.statistics.imported %]</td>
46 [% IF SELF.statistics.total %]
48 <h2>[% LxERP.t8("Transactions") %]</h2>
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>
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>
73 [% IF transaction.remote_bank_code && transaction.remote_account_number %]
74 [% HTML.escape(transaction.remote_bank_code) %] / [% HTML.escape(transaction.remote_account_number) %]
77 <td>[% HTML.escape(transaction.bank_account.name) %]</td>
79 [% IF transaction.error %]
80 [% HTML.escape(transaction.error) %]
81 [% ELSIF transaction.duplicate %]
82 [% LxERP.t8("Duplicate") %]
84 [% LxERP.t8("To import") %]
86 [% LxERP.t8("Imported") %]