</html> entfernen
[kivitendo-erp.git] / templates / webpages / csv_import / form.html
1 [%- USE HTML %]
2 [%- USE LxERP %]
3 [%- USE L %]
4 [%- USE T8 %]
5 <body>
6
7  <div class="listtop">[% FORM.title %]</div>
8
9  [%- INCLUDE 'common/flash.html' %]
10
11  <form method="post" action="controller.pl" enctype="multipart/form-data">
12   [% L.hidden_tag('form_sent', '1') %]
13   [% L.hidden_tag('action', 'CsvImport/dispatch') %]
14   [% L.hidden_tag('profile.type', SELF.profile.type) %]
15
16   <h2>[%- LxERP.t8('Import profiles') %]</h2>
17
18   <table>
19    [%- IF SELF.profile.id %]
20     <tr>
21      <th align="right">[%- LxERP.t8('Current profile') %]:</th>
22      <td>[%- HTML.escape(SELF.profile.name) %]</td>
23     </tr>
24    [%- END %]
25
26    [%- IF SELF.all_profiles.size %]
27     <tr>
28      <th align="right">[%- LxERP.t8('Existing profiles') %]:</th>
29      <td>
30       [% L.select_tag('profile.id', SELF.all_profiles, title_key = 'name', default = SELF.profile.id, style = 'width: 300px') %]
31      </td>
32      <td>
33       [% L.submit_tag('action_new', LxERP.t8('Load profile')) %]
34       [% L.submit_tag('action_destroy', LxERP.t8('Delete profile'), confirm => LxERP.t8('Do you really want to delete this object?')) %]
35      </td>
36     </tr>
37    [%- END %]
38
39    <tr>
40     <th align="right" valign="top">[%- LxERP.t8('Save settings as') %]:</th>
41     <td valign="top">
42      [% L.input_tag('profile.name', '', style => 'width: 300px') %]
43      <br>
44      [% L.checkbox_tag('profile.is_default', label => LxERP.t8('Make default profile')) %]
45     </td>
46     <td valign="top">[% L.submit_tag('action_save', LxERP.t8('Save profile')) %]</td>
47    </tr>
48   </table>
49
50   <hr>
51
52   <h2>[%- LxERP.t8('Help on column names') %]</h2>
53
54   <div class="help_toggle">
55    <a href="#" onClick="javascript:$('.help_toggle').toggle()">[% LxERP.t8("Show help text") %]</a>
56   </div>
57
58   <div class="help_toggle" style="display:none">
59    <p><a href="#" onClick="javascript:$('.help_toggle').toggle()">[% LxERP.t8("Hide help text") %]</a></p>
60
61    <table>
62     <tr class="listheading">
63      <th>[%- LxERP.t8('Column name') %]</th>
64      <th>[%- LxERP.t8('Meaning') %]</th>
65     </tr>
66
67     [%- FOREACH row = SELF.displayable_columns %]
68      <tr class="listrow[% loop.count % 2 %]">
69       <td>[%- HTML.escape(row.name) %]</td>
70       <td>[%- HTML.escape(row.description) %]</td>
71      </tr>
72     [%- END %]
73    </table>
74
75 [%- IF SELF.type == 'contacts' %]
76    <p>
77     [%- 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') %]
78    </p>
79
80 [%- ELSIF SELF.type == 'addresses' %]
81    <p>
82     [%- 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') %]
83    </p>
84
85 [%- ELSIF SELF.type == 'parts' %]
86    <p>
87     [%- LxERP.t8("If the article type is set to 'mixed' then a column called 'type' must be present.") %]
88     [% LxERP.t8("Type can be either 'part' or 'service'.") %]
89    </p>
90 [%- END %]
91
92    <p>
93     [%- L.submit_tag('action_download_sample', LxERP.t8('Download sample file')) %]
94    </p>
95
96   </div>
97
98   <hr>
99
100   <h2>[%- LxERP.t8('Settings') %]</h2>
101
102   <table>
103    <tr>
104     <th align="right">[%- LxERP.t8('Number Format') %]:</th>
105     <td colspan="10">
106      [% L.select_tag('settings.numberformat', ['1.000,00', '1000,00', '1,000.00', '1000.00'], default = SELF.profile.get('numberformat'), style = 'width: 300px') %]
107     </td>
108    </tr>
109
110    <tr>
111     <th align="right">[%- LxERP.t8('Charset') %]:</th>
112     <td colspan="10">[% L.select_tag('settings.charset', SELF.all_charsets, default = SELF.profile.get('charset'), style = 'width: 300px') %]</td>
113    </tr>
114
115    <tr>
116     <th align="right">[%- LxERP.t8('Separator') %]:</th>
117     [% SET custom_sep_char = SELF.sep_char %]
118     [% FOREACH entry = SELF.all_sep_chars %]
119      <td>
120       [% IF SELF.sep_char == entry.first %] [% SET custom_sep_char = '' %] [%- END %]
121       [% L.radio_button_tag('sep_char', value => entry.first, label => entry.last, checked => SELF.sep_char == entry.first) %]
122      </td>
123     [%- END %]
124
125     <td>
126      [% L.radio_button_tag('sep_char', value => 'custom', checked => custom_sep_char != '') %]
127      [% L.input_tag('custom_sep_char', custom_sep_char, size => 3, maxlength => 1) %]
128     </td>
129    </tr>
130
131    <tr>
132     <th align="right">[%- LxERP.t8('Quote character') %]:</th>
133     [% SET custom_quote_char = SELF.quote_char %]
134     [% FOREACH entry = SELF.all_quote_chars %]
135      <td>
136       [% IF SELF.quote_char == entry.first %] [% SET custom_quote_char = '' %] [%- END %]
137       [% L.radio_button_tag('quote_char', value => entry.first, label => entry.last, checked => SELF.quote_char == entry.first) %]
138      </td>
139     [%- END %]
140
141     <td>
142      [% L.radio_button_tag('quote_char', value => 'custom', checked => custom_quote_char != '') %]
143      [% L.input_tag('custom_quote_char', custom_quote_char, size => 3, maxlength => 1) %]
144     </td>
145    </tr>
146
147    <tr>
148     <th align="right">[%- LxERP.t8('Escape character') %]:</th>
149     [% SET custom_escape_char = SELF.escape_char %]
150     [% FOREACH entry = SELF.all_escape_chars %]
151      <td>
152       [% IF SELF.escape_char == entry.first %] [% SET custom_escape_char = '' %] [%- END %]
153       [% L.radio_button_tag('escape_char', value => entry.first, label => entry.last, checked => SELF.escape_char == entry.first) %]
154      </td>
155     [%- END %]
156
157     <td>
158      [% L.radio_button_tag('escape_char', value => 'custom', checked => custom_escape_char != '') %]
159      [% L.input_tag('custom_escape_char', custom_escape_char, size => 3, maxlength => 1) %]
160     </td>
161    </tr>
162
163    [% duplicate_fields = SELF.worker.get_duplicate_check_fields() %]
164    [% IF ( duplicate_fields.size ) %]
165      <tr>
166        <th align="right">[%- LxERP.t8('Check for duplicates') %]:</th>
167
168        <td colspan=10>
169          [% FOREACH key = duplicate_fields.keys %]
170            <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 %]\>
171            <label for="settings.duplicates_[% key | html %]">[% duplicate_fields.$key.label | html %]</label>
172          [% END %]
173        </td>
174      </tr>
175
176      <tr>
177        <th align="right"></th>
178
179        <td colspan=10>
180          [% opts = [ [ 'no_check',  LxERP.t8('Do not check for duplicates') ],
181                      [ 'check_csv', LxERP.t8('Discard duplicate entries in CSV file') ],
182                      [ 'check_db',  LxERP.t8('Discard entries with duplicates in database or CSV file') ] ] %]
183          [% L.select_tag('settings.duplicates', opts, default = SELF.profile.get('duplicates'), style = 'width: 300px') %]
184        </td>
185      </tr>
186    [% END %]
187
188 [%- IF SELF.type == 'parts' %]
189  [%- INCLUDE 'csv_import/_form_parts.html' %]
190 [%- ELSIF SELF.type == 'customers_vendors' %]
191  [%- INCLUDE 'csv_import/_form_customers_vendors.html' %]
192 [%- END %]
193
194    <tr>
195     <th align="right">[%- LxERP.t8('Preview Mode') %]:</th>
196     <td colspan="10">
197       [% L.radio_button_tag('settings.full_preview', value=2, checked=SELF.profile.get('full_preview')==2, label=LxERP.t8('Full Preview')) %]
198       [% L.radio_button_tag('settings.full_preview', value=1, checked=SELF.profile.get('full_preview')==1, label=LxERP.t8('Only Warnings and Errors')) %]
199       [% L.radio_button_tag('settings.full_preview', value=0, checked=!SELF.profile.get('full_preview'),   label=LxERP.t8('First 20 Lines')) %]
200     </td>
201    </tr>
202
203    <tr>
204     <th align="right">[%- LxERP.t8('Import file') %]:</th>
205     <td colspan="10">[% L.input_tag('file', '', type => 'file', accept => '*') %]</td>
206    </tr>
207
208    [%- IF SELF.file.exists %]
209     <tr>
210      <th align="right">[%- LxERP.t8('Existing file on server') %]:</th>
211      <td colspan="10">[%- LxERP.t8('Uploaded on #1, size #2 kB', SELF.file.displayable_mtime, LxERP.format_amount(SELF.file.size / 1024, 2)) %]</td>
212     </tr>
213    [%- END %]
214
215   </table>
216
217   [% L.submit_tag('action_test', LxERP.t8('Test and preview')) %]
218   [% IF (SELF.import_status == 'tested') && SELF.num_importable %]
219    [% L.submit_tag('action_import', LxERP.t8('Import')) %]
220   [%- END %]
221
222  </form>
223
224  [%- IF SELF.import_status %]
225   [%- IF SELF.errors %]
226    [%- PROCESS 'csv_import/_errors.html' %]
227   [%- END %]
228
229   [%- PROCESS 'csv_import/_result.html' %]
230   [%- PROCESS 'csv_import/_preview.html' %]
231  [%- END %]
232
233  <script type="text/javascript">
234   <!--
235     $(document).ready(function() {
236       $('#action_save').click(function() {
237         if ($('#profile_name').attr('value') != '')
238           return true;
239         alert('[% LxERP.t8('Please enter a profile name.') %]');
240         return false;
241       })
242     });
243     -->
244  </script>
245 </body>