X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/a23454bb1b039a31b7f77710ff663fa9152d530c..6f45549b6f3d1f4f178b8799c9997fdc6e1447d0:/templates/webpages/csv_import/form.html
diff --git a/templates/webpages/csv_import/form.html b/templates/webpages/csv_import/form.html
index 9fd30ac1d..cb9d17e1a 100644
--- a/templates/webpages/csv_import/form.html
+++ b/templates/webpages/csv_import/form.html
@@ -57,19 +57,48 @@
[% LxERP.t8("Hide help text") %]
-
-
- | [%- LxERP.t8('Column name') %] |
- [%- LxERP.t8('Meaning') %] |
-
-
- [%- FOREACH row = SELF.displayable_columns %]
-
- | [%- HTML.escape(row.name) %] |
- [%- HTML.escape(row.description) %] |
-
- [%- END %]
-
+ [%- IF SELF.worker.is_multiplexed %]
+
+
+ [%- FOREACH ri = SELF.displayable_columns.keys %]
+ | [%- ri %] |
+ [%- END %]
+
+
+ [%- FOREACH ri = SELF.displayable_columns.keys %]
+
+
+
+ | [%- LxERP.t8('Column name') %] |
+ [%- LxERP.t8('Meaning') %] |
+
+
+ [%- FOREACH row = SELF.displayable_columns.$ri %]
+
+ | [%- HTML.escape(row.name) %] |
+ [%- HTML.escape(row.description) %] |
+
+ [%- END %]
+
+ |
+ [%- END %]
+
+
+ [%- ELSE %]
+
+
+ | [%- LxERP.t8('Column name') %] |
+ [%- LxERP.t8('Meaning') %] |
+
+
+ [%- FOREACH row = SELF.displayable_columns %]
+
+ | [%- HTML.escape(row.name) %] |
+ [%- HTML.escape(row.description) %] |
+
+ [%- END %]
+
+ [%- END %]
[%- IF SELF.type == 'contacts' %]
@@ -95,6 +124,11 @@
[% LxERP.t8('The items are imported accoring do their number "X" regardless of the column order inside the file.') %]
[% LxERP.t8('The column "make_X" can contain either a vendor\'s database ID, a vendor number or a vendor\'s name.') %]
+
+[%- ELSIF SELF.type == 'orders' %]
+
+ [%- LxERP.t8('Amount and net amount are calculated by kivitendo. verify_amount and verify_netamount can be used for sanity checks.') %]
+
[%- END %]
@@ -206,6 +240,8 @@
[%- INCLUDE 'csv_import/_form_customers_vendors.html' %]
[%- ELSIF SELF.type == 'contacts' %]
[%- INCLUDE 'csv_import/_form_contacts.html' %]
+[%- ELSIF SELF.type == 'orders' %]
+ [%- INCLUDE 'csv_import/_form_orders.html' %]
[%- END %]