X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=templates%2Fwebpages%2Fbank_import%2Fimport_mt940.html;fp=templates%2Fwebpages%2Fbank_import%2Fimport_mt940.html;h=e2baa5febe0109533ffbc6507a5d83c18c30055d;hp=0000000000000000000000000000000000000000;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44 diff --git a/templates/webpages/bank_import/import_mt940.html b/templates/webpages/bank_import/import_mt940.html new file mode 100644 index 000000000..e2baa5feb --- /dev/null +++ b/templates/webpages/bank_import/import_mt940.html @@ -0,0 +1,94 @@ +[%- USE HTML %] +[%- USE LxERP %] +[%- USE L %] +[%- USE T8 %] + +

[% FORM.title %]

+ +[% IF preview %] +
+ [% L.hidden_tag('file_name', SELF.file_name) %] + [% L.hidden_tag('charset', SELF.charset) %] +
+[% END %] + +

[% LxERP.t8("Overview") %]

+ +
+ + + + + + + + + + + + + + + + + +[% IF preview %] + + +[% ELSE %] + + +[% END %] + +
[% LxERP.t8("Total number of entries") %]:[% SELF.statistics.total %]
[% LxERP.t8("Entries with errors") %]:[% SELF.statistics.errors %]
[% LxERP.t8("Already imported entries (duplicates)") %]:[% SELF.statistics.duplicates %]
[% LxERP.t8("Entries ready to import") %]:[% SELF.statistics.to_import %][% LxERP.t8("Imported entries") %]:[% SELF.statistics.imported %]
+
+ +[% IF SELF.statistics.total %] + +

[% LxERP.t8("Transactions") %]

+ + + + + + + + + + + + + + + + + [% FOREACH transaction = SELF.transactions %] + + + + + + + + + + + [% END %] + +
[% LxERP.t8("Transaction date") %][% LxERP.t8("Valutadate") %][% LxERP.t8("Other party") %][% LxERP.t8("Purpose") %][% LxERP.t8("Amount") %][% LxERP.t8("Remote account") %][% LxERP.t8("Local account") %][% LxERP.t8("Information") %]
[% transaction.transdate.to_kivitendo %][% transaction.valutadate.to_kivitendo %][% HTML.escape(transaction.remote_name) %][% HTML.escape(transaction.purpose) %][% LxERP.format_amount(transaction.amount, 2) %] + [% IF transaction.remote_bank_code && transaction.remote_account_number %] + [% HTML.escape(transaction.remote_bank_code) %] / [% HTML.escape(transaction.remote_account_number) %] + [% END %] + [% HTML.escape(transaction.bank_account.name) %] + [% IF transaction.error %] + [% HTML.escape(transaction.error) %] + [% ELSIF transaction.duplicate %] + [% LxERP.t8("Duplicate") %] + [% ELSIF preview %] + [% LxERP.t8("To import") %] + [% ELSE %] + [% LxERP.t8("Imported") %] + [% END %] +
+ +[% END %]