Artikel-Klassifizierung
[kivitendo-erp.git] / templates / webpages / csv_import / form.html
1 [%- USE HTML %]
2 [%- USE LxERP %]
3 [%- USE L %]
4 [%- USE T8 %]
5  <h1>[% FORM.title %]</h1>
6
7  [%- INCLUDE 'common/flash.html' %]
8
9  <form method="post" action="controller.pl" enctype="multipart/form-data">
10   [% L.hidden_tag('form_sent', '1') %]
11   [% L.hidden_tag('action', 'CsvImport/dispatch') %]
12   [% L.hidden_tag('profile.type', SELF.profile.type) %]
13
14  [%- IF SELF.profile.get('dont_edit_profile') %]
15   [% L.hidden_tag('force_profile', 1) %]
16   [% L.hidden_tag('profile.id', SELF.profile.id) %]
17  [%- ELSE %]
18   <h2>[%- LxERP.t8('Import profiles') %]</h2>
19
20   <table>
21    [%- IF SELF.profile.id %]
22     <tr>
23      <th align="right">[%- LxERP.t8('Current profile') %]:</th>
24      <td>[%- HTML.escape(SELF.profile.name) %]</td>
25     </tr>
26    [%- END %]
27
28    [%- IF SELF.all_profiles.size %]
29     <tr>
30      <th align="right">[%- LxERP.t8('Existing profiles') %]:</th>
31      <td>
32       [% L.select_tag('profile.id', SELF.all_profiles, title_key = 'name', default = SELF.profile.id, style = 'width: 300px') %]
33      </td>
34      <td>
35       [% L.submit_tag('action_new', LxERP.t8('Load profile')) %]
36       [% L.submit_tag('action_destroy', LxERP.t8('Delete profile'), confirm => LxERP.t8('Do you really want to delete this object?')) %]
37      </td>
38     </tr>
39    [%- END %]
40
41    <tr>
42     <th align="right" valign="top">[%- LxERP.t8('Save settings as') %]:</th>
43     <td valign="top">
44      [% L.input_tag('profile.name', '', style => 'width: 300px') %]
45      <br>
46      [% L.checkbox_tag('profile.is_default', label => LxERP.t8('Make default profile')) %]
47     </td>
48     <td valign="top">[% L.submit_tag('action_save', LxERP.t8('Save profile')) %]</td>
49    </tr>
50   </table>
51
52   <hr>
53
54   <h2>[%- LxERP.t8('Help on column names') %]</h2>
55
56   <div class="help_toggle">
57    <a href="#" onClick="javascript:$('.help_toggle').toggle()">[% LxERP.t8("Show help text") %]</a>
58   </div>
59
60   <div class="help_toggle" style="display:none">
61    <p><a href="#" onClick="javascript:$('.help_toggle').toggle()">[% LxERP.t8("Hide help text") %]</a></p>
62
63    [%- IF SELF.worker.is_multiplexed %]
64      <table>
65        <tr class="listheading">
66          [%- FOREACH p = SELF.worker.profile %]
67            <th>[%- p.row_ident %]</th>
68          [%- END %]
69        </tr>
70        <tr class="listrow[% loop.count % 2 %]">
71          [%- FOREACH p = SELF.worker.profile %]
72            [% SET ri = p.row_ident %]
73          <td>
74            <table>
75              <tr class="listheading">
76                <th>[%- LxERP.t8('Column name') %]</th>
77                <th>[%- LxERP.t8('Meaning') %]</th>
78              </tr>
79
80              [%- FOREACH row = SELF.displayable_columns.$ri %]
81              <tr class="listrow[% loop.count % 2 %]">
82                <td>[%- HTML.escape(row.name) %]</td>
83                <td>[%- HTML.escape(row.description) %]</td>
84              </tr>
85              [%- END %]
86            </table>
87          </td>
88          [%- END %]
89        </tr>
90      </table>
91    [%- ELSE %]
92      <table>
93        <tr class="listheading">
94          <th>[%- LxERP.t8('Column name') %]</th>
95          <th>[%- LxERP.t8('Meaning') %]</th>
96        </tr>
97
98        [%- FOREACH row = SELF.displayable_columns %]
99        <tr class="listrow[% loop.count % 2 %]">
100          <td>[%- HTML.escape(row.name) %]</td>
101          <td>[%- HTML.escape(row.description) %]</td>
102        </tr>
103        [%- END %]
104      </table>
105    [%- END %]
106
107 [%- IF SELF.type == 'contacts' %]
108    <p>
109     [%- LxERP.t8("You can update existing contacts by providing the 'cp_id' column with their database IDs. Otherwise: ") %]
110     [%- 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') %]
111    </p>
112
113 [%- ELSIF SELF.type == 'addresses' %]
114    <p>
115     [%- 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') %]
116    </p>
117
118 [%- ELSIF SELF.type == 'parts' %]
119    <p>
120     [1]:
121     [% LxERP.t8('The three columns "make_X", "model_X" and "lastcost_X" with the same number "X" are used to import vendor part numbers and vendor prices.') %]
122     [% LxERP.t8('The column triplets can occur multiple times with different numbers "X" each time (e.g. "make_1", "model_1", "lastcost_1", "make_2", "model_2", "lastcost_2", "make_3", "model_3", "lastcost_3" etc).') %]
123     [% LxERP.t8('The items are imported accoring do their number "X" regardless of the column order inside the file.') %]
124     [% LxERP.t8('The column "make_X" can contain either a vendor\'s database ID, a vendor number or a vendor\'s name.') %]
125    </p>
126     <p>
127     [2]:
128     [% LxERP.t8('Onhand only sets the quantity in master data, not in inventory. This is only a legacy info field and will be overwritten as soon as a inventory transfer happens.') %]
129    </p>
130    <p>
131     [3]:
132     [% LxERP.t8("If the article type is set to 'mixed' then a column called 'part_type' or called 'pclass' must be present.") %]
133     [% LxERP.t8("Type can be either 'part', 'service' or 'assembly'.") %]
134     [%- LxERP.t8("If column 'pclass' is present the article type is then irrelevant or used as default ") %]
135     [% LxERP.t8("The 'pclass' column has the same abbreviation like a part export. The first letter is for the type Part,Assembly or Service, the second(and third) for Part Classification") %]
136    </p>
137
138 [%- ELSIF SELF.type == 'inventories' %]
139    <p>
140     [%- LxERP.t8('One of the columns "qty" or "target_qty" must be given. If "target_qty" is given, the quantity to transfer for each transfer will be calculate, so that the quantity for this part, warehouse and bin will result in the given "target_qty" after each transfer.') %]
141    </p>
142
143 [%- ELSIF SELF.type == 'orders' OR SELF.type == 'ar_transactions' %]
144    <p>
145     [1]:
146     [% LxERP.t8('The column "datatype" must be present and must be at the same position / column in each data set. The values must be the row names (see settings) for order and item data respectively.') %]
147    </p>
148    <p>
149     [2]:
150     [%- LxERP.t8('Amount and net amount are calculated by kivitendo. "verify_amount" and "verify_netamount" can be used for sanity checks.') %]<br>
151     [%- LxERP.t8('If amounts differ more than "Maximal amount difference" (see settings), this item is marked as invalid.') %]<br>
152    </p>
153 [%- END %]
154
155    <p>
156     [%- L.submit_tag('action_download_sample', LxERP.t8('Download sample file')) %]
157    </p>
158
159   </div>
160
161   <hr>
162
163   <h2>[%- LxERP.t8('Settings') %]</h2>
164
165   <div class="settings_toggle"[% UNLESS SELF.deferred || SELF.import_status %] style="display:none"[% END %]>
166    <a href="#" onClick="javascript:$('.settings_toggle').toggle()">[% LxERP.t8("Show settings") %]</a>
167   </div>
168
169   <div class="settings_toggle"[% IF SELF.deferred || SELF.import_status %] style="display:none"[% END %]>
170    <p><a href="#" onClick="javascript:$('.settings_toggle').toggle()">[% LxERP.t8("Hide settings") %]</a></p>
171
172   <table>
173    <tr>
174     <th align="right">[%- LxERP.t8('Number Format') %]:</th>
175     <td colspan="10">
176      [% L.select_tag('settings.numberformat', ['1.000,00', '1000,00', '1,000.00', '1000.00', "1'000.00"], default = SELF.profile.get('numberformat'), style = 'width: 300px') %]
177     </td>
178    </tr>
179
180    <tr>
181     <th align="right">[%- LxERP.t8('Charset') %]:</th>
182     <td colspan="10">[% L.select_tag('settings.charset', SELF.all_charsets, default = SELF.profile.get('charset'), style = 'width: 300px') %]</td>
183    </tr>
184
185    <tr>
186     <th align="right">[%- LxERP.t8('Separator') %]:</th>
187     [% SET custom_sep_char = SELF.sep_char %]
188     [% FOREACH entry = SELF.all_sep_chars %]
189      <td>
190       [% IF SELF.sep_char == entry.first %] [% SET custom_sep_char = '' %] [%- END %]
191       [% L.radio_button_tag('sep_char', value => entry.first, label => entry.last, checked => SELF.sep_char == entry.first) %]
192      </td>
193     [%- END %]
194
195     <td>
196      [% L.radio_button_tag('sep_char', value => 'custom', checked => custom_sep_char != '') %]
197      [% L.input_tag('custom_sep_char', custom_sep_char, size => 3, maxlength => 1) %]
198     </td>
199    </tr>
200
201    <tr>
202     <th align="right">[%- LxERP.t8('Quote character') %]:</th>
203     [% SET custom_quote_char = SELF.quote_char %]
204     [% FOREACH entry = SELF.all_quote_chars %]
205      <td>
206       [% IF SELF.quote_char == entry.first %] [% SET custom_quote_char = '' %] [%- END %]
207       [% L.radio_button_tag('quote_char', value => entry.first, label => entry.last, checked => SELF.quote_char == entry.first) %]
208      </td>
209     [%- END %]
210
211     <td>
212      [% L.radio_button_tag('quote_char', value => 'custom', checked => custom_quote_char != '') %]
213      [% L.input_tag('custom_quote_char', custom_quote_char, size => 3, maxlength => 1) %]
214     </td>
215    </tr>
216
217    <tr>
218     <th align="right">[%- LxERP.t8('Escape character') %]:</th>
219     [% SET custom_escape_char = SELF.escape_char %]
220     [% FOREACH entry = SELF.all_escape_chars %]
221      <td>
222       [% IF SELF.escape_char == entry.first %] [% SET custom_escape_char = '' %] [%- END %]
223       [% L.radio_button_tag('escape_char', value => entry.first, label => entry.last, checked => SELF.escape_char == entry.first) %]
224      </td>
225     [%- END %]
226
227     <td>
228      [% L.radio_button_tag('escape_char', value => 'custom', checked => custom_escape_char != '') %]
229      [% L.input_tag('custom_escape_char', custom_escape_char, size => 3, maxlength => 1) %]
230     </td>
231    </tr>
232
233    [% duplicate_fields = SELF.worker.get_duplicate_check_fields() %]
234    [% IF ( duplicate_fields.size ) %]
235      <tr>
236        <th align="right">[%- LxERP.t8('Check for duplicates') %]:</th>
237
238        <td colspan=10>
239          [% FOREACH key = duplicate_fields.keys %]
240            <input type="checkbox" name="settings.duplicates_[% key | html %]" id="settings.duplicates_[% key | html %]" value="1"[% IF ( SELF.profile.get('duplicates_'_ key) || (duplicate_fields.$key.default && !FORM.form_sent ) ) %] checked="checked"[% END %]>
241            <label for="settings.duplicates_[% key | html %]">[% duplicate_fields.$key.label | html %]</label>
242          [% END %]
243        </td>
244      </tr>
245
246      <tr>
247        <th align="right"></th>
248
249        <td colspan=10>
250          [% opts = [ [ 'no_check',  LxERP.t8('Do not check for duplicates') ],
251                      [ 'check_csv', LxERP.t8('Discard duplicate entries in CSV file') ],
252                      [ 'check_db',  LxERP.t8('Discard entries with duplicates in database or CSV file') ] ] %]
253          [% L.select_tag('settings.duplicates', opts, default = SELF.profile.get('duplicates'), style = 'width: 300px') %]
254        </td>
255      </tr>
256    [% END %]
257
258 [%- IF SELF.type == 'parts' %]
259  [%- INCLUDE 'csv_import/_form_parts.html' %]
260 [%- ELSIF SELF.type == 'customers_vendors' %]
261  [%- INCLUDE 'csv_import/_form_customers_vendors.html' %]
262 [%- ELSIF SELF.type == 'contacts' %]
263  [%- INCLUDE 'csv_import/_form_contacts.html' %]
264 [%- ELSIF SELF.type == 'inventories' %]
265  [%- INCLUDE 'csv_import/_form_inventories.html' %]
266 [%- ELSIF SELF.type == 'orders' %]
267  [%- INCLUDE 'csv_import/_form_orders.html' %]
268 [%- ELSIF SELF.type == 'ar_transactions' %]
269  [%- INCLUDE 'csv_import/_form_artransactions.html' %]
270 [%- ELSIF SELF.type == 'bank_transactions' %]
271  [%- INCLUDE 'csv_import/_form_banktransactions.html' %]
272 [%- END %]
273
274    <tr>
275     <th align="right">[%- LxERP.t8('Preview Mode') %]:</th>
276     <td colspan="10">
277       [% L.radio_button_tag('settings.full_preview', value=2, checked=SELF.profile.get('full_preview')==2, label=LxERP.t8('Full Preview')) %]
278       [% L.radio_button_tag('settings.full_preview', value=1, checked=SELF.profile.get('full_preview')==1, label=LxERP.t8('Only Warnings and Errors')) %]
279       [% L.radio_button_tag('settings.full_preview', value=0, checked=!SELF.profile.get('full_preview'),   label=LxERP.t8('First 20 Lines')) %]
280     </td>
281    </tr>
282
283    <tr>
284     <th align="right">[%- LxERP.t8('Import file') %]:</th>
285     <td colspan="10">[% L.input_tag('file', '', type => 'file', accept => '*') %]</td>
286    </tr>
287
288    [%- IF SELF.file.exists %]
289     <tr>
290      <th align="right">[%- LxERP.t8('Existing file on server') %]:</th>
291      <td colspan="10">[%- LxERP.t8('Uploaded on #1, size #2 kB', SELF.file.displayable_mtime, LxERP.format_amount(SELF.file.size / 1024, 2)) %]</td>
292     </tr>
293    [%- END %]
294
295   </table>
296
297   </div>
298   <hr>
299
300 [%- UNLESS SELF.worker.is_multiplexed %]
301   <h2>[% 'Mappings (csv_import)' | $T8 %]</h2>
302
303   <div class="mappings_toggle"[% UNLESS SELF.deferred || SELF.import_status %] style="display:none"[% END %]>
304    <a href="#" onClick="javascript:$('.mappings_toggle').toggle()">[% LxERP.t8("Show mappings (csv_import)") %]</a>
305   </div>
306   <div class="mappings_toggle"[% IF SELF.deferred || SELF.import_status %] style="display:none"[% END %]>
307    <p><a href="#" onClick="javascript:$('.mappings_toggle').toggle()">[% LxERP.t8("Hide mappings (csv_import)") %]</a></p>
308
309     <p>[% 'These mappings can be used to map heading from non standard csv files to known columns. These will also be saved in profiles, so you can save profiles for every source of formats.' | $T8 %]</p>
310
311   <table id="csv_import_mappings">
312    <tr class=listheading>
313     <th></th>
314     <th>[% 'Text in CSV File' | $T8 %]</th>
315     <th>[% 'Known Column' | $T8 %]</th>
316    </tr>
317    <tr id='mapping_empty' style='display:none'>
318     <td colspan=3>[% 'There is nothing here yet (csv_import)' | $T8 %]</td>
319    </tr>
320 [%- FOREACH row = SELF.mappings %]
321    [% PROCESS 'csv_import/_mapping_item.html', item=row IF row.from %]
322 [%- END %]
323    [% PROCESS 'csv_import/_mapping_item.html', item={} %]
324   </table>
325
326   <input type=button id='add_empty_mapping_line' value='[% 'Add empty line (csv_import)' | $T8 %]'>
327   <input type=button id='add_mapping_from_upload' value='[% 'Add headers from last uploaded file (csv_import)' | $T8 %]'>
328
329   </div>
330   <hr>
331 [%- END %]
332   [% L.submit_tag('action_test', LxERP.t8('Test and preview')) %]
333 [%- END %]
334   [% L.submit_tag('action_import', LxERP.t8('Import'), style='display:none') %]
335
336  </form>
337
338  <div id='results'>
339  [%- IF SELF.deferred %]
340    [%- PROCESS 'csv_import/_deferred_results.html' %]
341  [%- ELSIF SELF.import_status %]
342    [%- PROCESS 'csv_import/_results.html' %]
343  [%- END %]
344  </div>
345
346
347  <script type="text/javascript">
348   <!--
349     $(document).ready(function() {
350       $('#action_save').click(function() {
351         if ($('#profile_name').val() != '')
352           return true;
353         alert('[% LxERP.t8('Please enter a profile name.') %]');
354         return false;
355       });
356       $('#add_empty_mapping_line').click(function(){
357         $.get('controller.pl', { action: 'CsvImport/add_empty_mapping_line', 'profile.type': $('#profile_type').val() }, kivi.eval_json_result);
358       });
359       $('#add_mapping_from_upload').click(function(){
360         $.get('controller.pl?action_add_mapping_from_upload=1', $('form').serialize() , kivi.eval_json_result);
361       });
362       $('#csv_import_mappings').on('click', '.remove_line', function(){ $(this).closest('tr').remove(); if (1==$('#csv_import_mappings tr:visible').length) $('#mapping_empty').show() });
363     });
364     -->
365  </script>