Hilfetexte für Lieferanschriftenstammdatenimport
[kivitendo-erp.git] / templates / webpages / csv_import / form.html
1 [% USE HTML %][% USE LxERP %][% USE L %]
2 <body>
3
4  <div class="listtop">[% FORM.title %]</div>
5
6  [%- INCLUDE 'common/flash.html' %]
7
8  <form method="post" action="controller.pl" enctype="multipart/form-data">
9   [% L.hidden_tag('action', 'CsvImport/dispatch') %]
10   [% L.hidden_tag('profile.type', SELF.profile.type) %]
11
12   <h2>[%- LxERP.t8('Import profiles') %]</h2>
13
14   <table>
15    [%- IF SELF.profile.id %]
16     <tr>
17      <th align="right">[%- LxERP.t8('Current profile') %]:</th>
18      <td>[%- HTML.escape(SELF.profile.name) %]</td>
19     </tr>
20    [%- END %]
21
22    [%- IF SELF.all_profiles.size %]
23     <tr>
24      <th align="right">[%- LxERP.t8('Existing profiles') %]:</th>
25      <td>
26       [% L.select_tag('profile.id', L.options_for_select(SELF.all_profiles, title => 'name', default => SELF.profile.id), style => 'width: 300px') %]
27      </td>
28      <td>
29       [% L.submit_tag('action_new', LxERP.t8('Load profile')) %]
30       [% L.submit_tag('action_destroy', LxERP.t8('Delete profile'), confirm => LxERP.t8('Do you really want to delete this object?')) %]
31      </td>
32     </tr>
33    [%- END %]
34
35    <tr>
36     <th align="right" valign="top">[%- LxERP.t8('Save settings as') %]:</th>
37     <td valign="top">
38      [% L.input_tag('profile.name', '', style => 'width: 300px') %]
39      <br>
40      [% L.checkbox_tag('profile.is_default', label => LxERP.t8('Make default profile')) %]
41     </td>
42     <td valign="top">[% L.submit_tag('action_save', LxERP.t8('Save profile')) %]</td>
43    </tr>
44   </table>
45
46   <hr>
47
48   <h2>[%- LxERP.t8('Help on column names') %]</h2>
49
50   <div class="help_toggle">
51    <a href="#" onClick="javascript:$('.help_toggle').toggle()">[% LxERP.t8("Show help text") %]</a>
52   </div>
53
54   <div class="help_toggle" style="display:none">
55    <p><a href="#" onClick="javascript:$('.help_toggle').toggle()">[% LxERP.t8("Hide help text") %]</a></p>
56
57    <p><b>Dieser Hilfetext wird demnaechst noch verbessert und wandert vermutlich in ein Popup.</b></p>
58
59    <table>
60     <tr class="listheading">
61      <th>[%- LxERP.t8('Column name') %]</th>
62      <th>[%- LxERP.t8('Meaning') %]</th>
63     </tr>
64
65     [%- FOREACH row = SELF.displayable_columns %]
66      <tr class="listrow[% loop.count % 2 %]">
67       <td>[%- HTML.escape(row.name) %]</td>
68       <td>[%- HTML.escape(row.description) %]</td>
69      </tr>
70     [%- END %]
71    </table>
72
73 [%- IF SELF.type == 'contacts' %]
74    <p>
75     [%- LxERP.t8('At least one of the columns #1, customer, customernumber, vendor, vendornumber (depending on the target table) is required for matching the entry to an existing customer or vendor.', 'cp_cv_id') %]
76    </p>
77 [%- ELSIF SELF.type == 'addresses' %]
78    <p>
79     [%- LxERP.t8('At least one of the columns #1, customer, customernumber, vendor, vendornumber (depending on the target table) is required for matching the entry to an existing customer or vendor.', 'trans_id') %]
80    </p>
81 [%- END %]
82   </div>
83
84   <hr>
85
86   <h2>[%- LxERP.t8('Settings') %]</h2>
87
88   <table>
89    <tr>
90     <th align="right">[%- LxERP.t8('Number Format') %]:</th>
91     <td colspan="10">
92      [% SET options = L.options_for_select([ '1.000,00', '1000,00', '1,000.00', '1000.00' ], default => SELF.profile.get('numberformat')) %]
93      [% L.select_tag('settings.numberformat', options, style => 'width: 300px') %]
94     </td>
95    </tr>
96
97    <tr>
98     <th align="right">[%- LxERP.t8('Charset') %]:</th>
99     <td colspan="10">[% L.select_tag('settings.charset', L.options_for_select(SELF.all_charsets, default => SELF.profile.get('charset')), style => 'width: 300px') %]</td>
100    </tr>
101
102    <tr>
103     <th align="right">[%- LxERP.t8('Separator') %]:</th>
104     [% SET custom_sep_char = SELF.sep_char %]
105     [% FOREACH entry = SELF.all_sep_chars %]
106      <td>
107       [% IF SELF.sep_char == entry.first %] [% SET custom_sep_char = '' %] [%- END %]
108       [% L.radio_button_tag('sep_char', value => entry.first, label => entry.last, checked => SELF.sep_char == entry.first) %]
109      </td>
110     [%- END %]
111
112     <td>
113      [% L.radio_button_tag('sep_char', value => 'custom', checked => custom_sep_char != '') %]
114      [% L.input_tag('custom_sep_char', custom_sep_char, size => 3, maxlength => 1) %]
115     </td>
116    </tr>
117
118    <tr>
119     <th align="right">[%- LxERP.t8('Quote character') %]:</th>
120     [% SET custom_quote_char = SELF.quote_char %]
121     [% FOREACH entry = SELF.all_quote_chars %]
122      <td>
123       [% IF SELF.quote_char == entry.first %] [% SET custom_quote_char = '' %] [%- END %]
124       [% L.radio_button_tag('quote_char', value => entry.first, label => entry.last, checked => SELF.quote_char == entry.first) %]
125      </td>
126     [%- END %]
127
128     <td>
129      [% L.radio_button_tag('quote_char', value => 'custom', checked => custom_quote_char != '') %]
130      [% L.input_tag('custom_quote_char', custom_quote_char, size => 3, maxlength => 1) %]
131     </td>
132    </tr>
133
134    <tr>
135     <th align="right">[%- LxERP.t8('Escape character') %]:</th>
136     [% SET custom_escape_char = SELF.escape_char %]
137     [% FOREACH entry = SELF.all_escape_chars %]
138      <td>
139       [% IF SELF.escape_char == entry.first %] [% SET custom_escape_char = '' %] [%- END %]
140       [% L.radio_button_tag('escape_char', value => entry.first, label => entry.last, checked => SELF.escape_char == entry.first) %]
141      </td>
142     [%- END %]
143
144     <td>
145      [% L.radio_button_tag('escape_char', value => 'custom', checked => custom_escape_char != '') %]
146      [% L.input_tag('custom_escape_char', custom_escape_char, size => 3, maxlength => 1) %]
147     </td>
148    </tr>
149
150    <tr>
151     <th align="right">[%- LxERP.t8('Check for duplicates') %]:</th>
152     <td colspan="10">
153      [% opts = [ [ 'no_check',  LxERP.t8('Do not check for duplicates') ],
154                  [ 'check_csv', LxERP.t8('Discard duplicate entries in CSV file') ],
155                  [ 'check_db',  LxERP.t8('Discard entries with duplicates in database or CSV file') ] ] %]
156      [% L.select_tag('settings.duplicates', L.options_for_select(opts, default => SELF.profile.get('duplicates')), style => 'width: 300px') %]
157     </td>
158    </tr>
159
160 [%- IF SELF.type == 'parts' %]
161  [%- INCLUDE 'csv_import/_form_parts.html' %]
162 [%- ELSIF SELF.type == 'customers_vendors' %]
163  [%- INCLUDE 'csv_import/_form_customers_vendors.html' %]
164 [%- END %]
165
166    <tr>
167     <th align="right">[%- LxERP.t8('Import file') %]:</th>
168     <td colspan="10">[% L.input_tag('file', '', type => 'file', accept => '*') %]</td>
169    </tr>
170
171    [%- IF SELF.file.exists %]
172     <tr>
173      <th align="right">[%- LxERP.t8('Existing file on server') %]:</th>
174      <td colspan="10">[%- LxERP.t8('Uploaded on #1, size #2 kB', SELF.file.displayable_mtime, LxERP.format_amount(SELF.file.size / 1024, 2)) %]</td>
175     </tr>
176    [%- END %]
177
178   </table>
179
180   [% L.submit_tag('action_test', LxERP.t8('Test and preview')) %]
181   [% IF (SELF.import_status == 'tested') && SELF.num_importable %]
182    [% L.submit_tag('action_import', LxERP.t8('Import')) %]
183   [%- END %]
184
185  </form>
186
187  [%- IF SELF.import_status %]
188   [%- IF SELF.errors %]
189    [%- PROCESS 'csv_import/_errors.html' %]
190   [%- END %]
191
192   [%- PROCESS 'csv_import/_result.html' %]
193   [%- PROCESS 'csv_import/_preview.html' %]
194  [%- END %]
195
196  <script type="text/javascript">
197   <!--
198     $(document).ready(function() {
199       $('#action_save').click(function() {
200         if ($('#profile_name').attr('value') != '')
201           return true;
202         alert('[% LxERP.t8('Please enter a profile name.') %]');
203         return false;
204       })
205     });
206     -->
207  </script>
208 </body>
209 </html>