Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 624b8446

Von Hans Peter Schlaepfer vor mehr als 3 Jahren hinzugefügt

  • ID 624b8446085b5ac0b238ea46757343c6410f0357
  • Vorgänger 345f6dc5
  • Nachfolger 5bbebf12

Design 4.0: Aenderungen in templates/webpages/csv_import/..

Unterschiede anzeigen:

templates/webpages/csv_import/form.html
2 2
[% USE LxERP %]
3 3
[% USE L %]
4 4
[% USE T8 %]
5
 <h1>[% FORM.title %]</h1>
6 5

  
7
 [%- INCLUDE 'common/flash.html' %]
6
<h1>[% FORM.title %]</h1>
8 7

  
9
 <form method="post" action="controller.pl" enctype="multipart/form-data" id="form">
10
  [% L.hidden_tag('form_sent', '1') %]
11
  [% L.hidden_tag('action', 'CsvImport/dispatch') %]
12
  [% L.hidden_tag('profile.type', SELF.profile.type) %]
13
  [% L.hidden_tag('tmp_profile_id', SELF.profile.id) %]
8
[% INCLUDE 'common/flash.html' %]
14 9

  
15
 [%- IF SELF.profile.get('dont_edit_profile') %]
10
<form method="post" action="controller.pl" enctype="multipart/form-data" id="form">
11
[% L.hidden_tag('form_sent', '1') %]
12
[% L.hidden_tag('action', 'CsvImport/dispatch') %]
13
[% L.hidden_tag('profile.type', SELF.profile.type) %]
14
[% L.hidden_tag('tmp_profile_id', SELF.profile.id) %]
15

  
16
[% IF SELF.profile.get('dont_edit_profile') %]
16 17
  [% L.hidden_tag('force_profile', 1) %]
17 18
  [% L.hidden_tag('profile.id', SELF.profile.id) %]
18
 [%- ELSE %][%# IF SELF.profile.get('dont_edit_profile') %]
19
  <h2>[%- LxERP.t8('Import profiles') %]</h2>
20 19

  
21
  <table>
22
   [%- IF SELF.profile.id %]
20
[% ELSE %]
21

  
22
<div class="wrapper">
23

  
24
<table class="tbl-horizontal">
25
  <caption>[% LxERP.t8('Import profiles') %]</caption>
26
  <colgroup><col class="wi-mediumsmall"><col class="wi-wide"></colgroup>
27
  <tbody>
28
    [% IF SELF.profile.id %]
23 29
    <tr>
24
     <th align="right">[%- LxERP.t8('Current profile') %]:</th>
25
     <td>[%- HTML.escape(SELF.profile.name) %]</td>
30
      <th>[% LxERP.t8('Current profile') %]:</th>
31
      <td><h3>[% HTML.escape(SELF.profile.name) %]</h3></td>
26 32
    </tr>
27
   [%- END %][%# IF SELF.profile.id %]
28

  
29
   [%- IF SELF.all_profiles.size %]
33
    [% END %]
34
    [% IF SELF.all_profiles.size %]
35
    <tr>
36
      <th>[% LxERP.t8('Existing profiles') %]:</th>
37
      <td>
38
        [% L.select_tag('profile.id', SELF.all_profiles, title_key = 'name', default = SELF.profile.id, style = 'width: 300px') %] <br>
39
        [% L.submit_tag('action_new', LxERP.t8('Load profile')) %]
40
        [% L.submit_tag('action_destroy', LxERP.t8('Delete profile'), confirm => LxERP.t8('Do you really want to delete this object?')) %]
41
      </td>
42
    </tr>
43
    [% END %]
30 44
    <tr>
31
     <th align="right">[%- LxERP.t8('Existing profiles') %]:</th>
32
     <td>
33
      [% L.select_tag('profile.id', SELF.all_profiles, title_key = 'name', default = SELF.profile.id, style = 'width: 300px') %]
34
     </td>
35
     <td>
36
      [% L.submit_tag('action_new', LxERP.t8('Load profile')) %]
37
      [% L.submit_tag('action_destroy', LxERP.t8('Delete profile'), confirm => LxERP.t8('Do you really want to delete this object?')) %]
38
     </td>
45
      <th>[% LxERP.t8('Save settings as') %]:</th>
46
      <td>
47
        [% L.input_tag('profile.name', '', style => 'width: 300px') %]<br>
48
        [% L.checkbox_tag('profile.is_default', label => LxERP.t8('Make default profile')) %]<br>
49
        <div class="buttons below">[% L.submit_tag('action_save', LxERP.t8('Save profile'), class='below') %]</div>
50
      </td>
39 51
    </tr>
40
   [%- END %][%# IF SELF.all_profiles.size %]
52
  </tbody>
53
</table>
41 54

  
42
   <tr>
43
    <th align="right" valign="top">[%- LxERP.t8('Save settings as') %]:</th>
44
    <td valign="top">
45
     [% L.input_tag('profile.name', '', style => 'width: 300px') %]
46
     <br>
47
     [% L.checkbox_tag('profile.is_default', label => LxERP.t8('Make default profile')) %]
48
    </td>
49
    <td valign="top">[% L.submit_tag('action_save', LxERP.t8('Save profile')) %]</td>
50
   </tr>
51
  </table>
55
</div><!-- /.wrapper -->
52 56

  
53
  <hr>
57
<div class="wrapper">
54 58

  
55
  <h2>[%- LxERP.t8('Help on column names') %]</h2>
59
<div class="col wi-verywide">
56 60

  
57
  <div class="help_toggle">
58
   <a href="#" onClick="javascript:$('.help_toggle').toggle()">[% LxERP.t8("Show help text") %]</a>
59
  </div>
61
<h3 class="caption">[% LxERP.t8('Settings') %][% IF SELF.profile.id %] [% 'for Profile' | $T8 %]«[% HTML.escape(SELF.profile.name) %][% END %]</h3>
60 62

  
61
  <div class="help_toggle" style="display:none">
62
   <p><a href="#" onClick="javascript:$('.help_toggle').toggle()">[% LxERP.t8("Hide help text") %]</a></p>
63

  
64
   [%- IF SELF.worker.is_multiplexed %]
65
     <table>
66
       <tr class="listheading">
67
         [%- FOREACH p = SELF.worker.profile %]
68
           <th>[%- p.row_ident %]</th>
69
         [%- END %][%# FOREACH SELF.worker.profile %]
70
       </tr>
71
       <tr style="vertical-align:top">
72
         [%- FOREACH p = SELF.worker.profile %]
73
           [% SET ri = p.row_ident %]
74
         <td>
75
           <table>
76
             <tr class="listheading">
77
               <th>[%- LxERP.t8('Column name') %]</th>
78
               <th>[%- LxERP.t8('Meaning') %]</th>
79
             </tr>
80

  
81
             [%- FOREACH row = SELF.displayable_columns.$ri %]
82
             <tr class="listrow[% loop.count % 2 %]">
83
               <td>[%- HTML.escape(row.name) %]</td>
84
               <td>[%- HTML.escape(row.description) %]</td>
85
             </tr>
86
             [%- END %][%# FOREACH SELF.displayable_columns.$ri %]
87
           </table>
88
         </td>
89
         [%- END %][%# FOREACH SELF.worker.profile %]
90
       </tr>
91
     </table>
92
   [%- ELSE %][%# IF SELF.worker.is_multiplexed %]
93
     <table>
94
       <tr class="listheading">
95
         <th>[%- LxERP.t8('Column name') %]</th>
96
         <th>[%- LxERP.t8('Meaning') %]</th>
97
       </tr>
98

  
99
       [%- FOREACH row = SELF.displayable_columns %]
100
       <tr class="listrow[% loop.count % 2 %]">
101
         <td>[%- HTML.escape(row.name) %]</td>
102
         <td>[%- HTML.escape(row.description) %]</td>
103
       </tr>
104
       [%- END %][%# FOREACH SELF.displayable_columns %]
105
     </table>
106
   [%- END %][%# SELF.worker.is_multiplexed %]
107

  
108
[%- IF SELF.type == 'contacts' %]
109
   <p>
110
    [%- LxERP.t8("You can update existing contacts by providing the 'cp_id' column with their database IDs. Otherwise: ") %]
111
    [%- LxERP.t8('At least one of the columns #1, customer, customernumber, customer_gln, vendor, vendornumber, vendor_gln (depending on the target table) is required for matching the entry to an existing customer or vendor.', 'cp_cv_id') %]
112
   </p>
113

  
114
[%- ELSIF SELF.type == 'addresses' %]
115
   <p>
116
    [%- LxERP.t8('At least one of the columns #1, customer, customernumber, customer_gln, vendor, vendornumber, vendor_gln (depending on the target table) is required for matching the entry to an existing customer or vendor.', 'trans_id') %]
117
   </p>
118

  
119
[%- ELSIF SELF.type == 'parts' %]
120
   <p>
121
    [1]:
122
    [% 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.') %]
123
    [% 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).') %]
124
    [% LxERP.t8('The items are imported accoring do their number "X" regardless of the column order inside the file.') %]
125
    [% LxERP.t8('The column "make_X" can contain either a vendor\'s database ID, a vendor number or a vendor\'s name.') %]
126
   </p>
63
[% BLOCK panel_1 %]
64
<table class="tbl-horizontal">
65
  <colgroup><col class="wi-mediumsmall"><col class="wi-wide"></colgroup>
66
  <tbody>
67
    <tr>
68
      <th>[% LxERP.t8('Number Format') %]:</th>
69
      <td>[% L.select_tag('settings.numberformat', ['1.000,00', '1000,00', '1,000.00', '1000.00', "1'000.00"], default = SELF.profile.get('numberformat'), class='wi-normal') %]</td>
70
    </tr>
71
    <tr>
72
      <th>[% LxERP.t8('Charset') %]:</th>
73
      <td>[% L.select_tag('settings.charset', SELF.all_charsets, default = SELF.profile.get('charset'), class='wi-normal') %]</td>
74
    </tr>
75
    <tr>
76
      <th>[% LxERP.t8('Separator') %]:</th>
77
      <td>
78
      [% SET custom_sep_char = SELF.sep_char %]
79
      [% FOREACH entry = SELF.all_sep_chars %]
80
        [% IF SELF.sep_char == entry.first %] [% SET custom_sep_char = '' %] [% END %]
81
        [% L.radio_button_tag('sep_char', value => entry.first, label => entry.last, checked => SELF.sep_char == entry.first) %]<br>
82
      [% END %]
83
      [% L.radio_button_tag('sep_char', value => 'custom', checked => custom_sep_char != '') %]
84
      [% L.input_tag('custom_sep_char', custom_sep_char, size => 3, maxlength => 1) %]
85
      </td>
86
    </tr>
87
    <tr>
88
      <th>[% LxERP.t8('Quote character') %]:</th>
89
      <td>
90
        [% SET custom_quote_char = SELF.quote_char %]
91
        [% FOREACH entry = SELF.all_quote_chars %]
92
          [% IF SELF.quote_char == entry.first %] [% SET custom_quote_char = '' %] [% END %]
93
          [% L.radio_button_tag('quote_char', value => entry.first, label => entry.last, checked => SELF.quote_char == entry.first) %]<br>
94
        [% END %]
95
        [% L.radio_button_tag('quote_char', value => 'custom', checked => custom_quote_char != '') %]
96
        [% L.input_tag('custom_quote_char', custom_quote_char, size => 3, maxlength => 1) %]
97
      </td>
98
    </tr>
99
    <tr>
100
      <th>[% LxERP.t8('Escape character') %]:</th>
101
      <td>
102
        [% SET custom_escape_char = SELF.escape_char %]
103
        [% FOREACH entry = SELF.all_escape_chars %]
104
          [% IF SELF.escape_char == entry.first %] [% SET custom_escape_char = '' %] [% END %]
105
          [% L.radio_button_tag('escape_char', value => entry.first, label => entry.last, checked => SELF.escape_char == entry.first) %]<br>
106
        [% END %]
107
        [% L.radio_button_tag('escape_char', value => 'custom', checked => custom_escape_char != '') %]
108
        [% L.input_tag('custom_escape_char', custom_escape_char, size => 3, maxlength => 1) %]
109
      </td>
110
    </tr>
111
    [% duplicate_fields = SELF.worker.get_duplicate_check_fields() %]
112
    [% IF ( duplicate_fields.size ) %]
113
      <tr>
114
        <th>[% LxERP.t8('Check for duplicates') %]:</th>
115
        <td>
116
        [% FOREACH key = duplicate_fields.keys %]
117
          [% IF (SELF.profile.get('duplicates_'_ key) || (duplicate_fields.$key.default && !FORM.form_sent)) %] [% SET chckd=' checked' %]
118
          [% ELSE %] [% SET chckd='' %]
119
          [% END %]
120
          <input type="checkbox" name="settings.duplicates_[% key | html %]" id="settings.duplicates_[% key | html %]" value="1"[% chckd %]>
121
          <label for="settings.duplicates_[% key | html %]">[% duplicate_fields.$key.label | html %]</label><br>
122
        [% END %]
123
        </td>
124
      </tr>
125
      <tr>
126
        <th></th>
127
        <td>
128
          [% opts = [ [ 'no_check',  LxERP.t8('Do not check for duplicates') ],
129
                      [ 'check_csv', LxERP.t8('Discard duplicate entries in CSV file') ],
130
                      [ 'check_db',  LxERP.t8('Discard entries with duplicates in database or CSV file') ] ] %]
131
          [% L.select_tag('settings.duplicates', opts, default = SELF.profile.get('duplicates'), style = 'width: 300px') %]
132
        </td>
133
      </tr>
134
    [% END %]
135
    [% IF SELF.type == 'parts' %]
136
      [% INCLUDE 'csv_import/_form_parts.html' %]
137
    [% ELSIF SELF.type == 'customers_vendors' %]
138
      [% INCLUDE 'csv_import/_form_customers_vendors.html' %]
139
    [% ELSIF SELF.type == 'contacts' %]
140
      [% INCLUDE 'csv_import/_form_contacts.html' %]
141
    [% ELSIF SELF.type == 'inventories' %]
142
      [% INCLUDE 'csv_import/_form_inventories.html' %]
143
    [% ELSIF SELF.type == 'orders' %]
144
      [% INCLUDE 'csv_import/_form_orders.html' %]
145
    [% ELSIF SELF.type == 'delivery_orders' %]
146
      [% INCLUDE 'csv_import/_form_delivery_orders.html' %]
147
    [% ELSIF SELF.type == 'ar_transactions' %]
148
      [% INCLUDE 'csv_import/_form_artransactions.html' %]
149
    [% ELSIF SELF.type == 'bank_transactions' %]
150
      [% INCLUDE 'csv_import/_form_banktransactions.html' %]
151
    [% END %]
152
    <tr>
153
      <th>[% LxERP.t8('Preview Mode') %]:</th>
154
      <td>
155
        [% L.radio_button_tag('settings.full_preview', value=0, checked=!SELF.profile.get('full_preview'), label=LxERP.t8('Full Preview')) %]
156
        [% L.radio_button_tag('settings.full_preview', value=1, checked=SELF.profile.get('full_preview')==1, label=LxERP.t8('Only Lines with Notes or Errors')) %]
157
        [% L.radio_button_tag('settings.full_preview', value=2, checked=SELF.profile.get('full_preview')==2,   label=LxERP.t8('First 20 Lines')) %]
158
      </td>
159
    </tr>
160
    <tr>
161
      <th>[% LxERP.t8('Import file') %]:</th>
162
      <td>[% L.input_tag('file', '', type => 'file', accept => '*') %]</td>
163
    </tr>
164
    [% IF SELF.file.exists %]
165
      <tr>
166
        <th>[% LxERP.t8('Existing file on server') %]:</th>
167
        <td>[% LxERP.t8('Uploaded on #1, size #2 kB', SELF.file.displayable_mtime, LxERP.format_amount(SELF.file.size / 1024, 2)) %]</td>
168
      </tr>
169
    [% END %]
170
  </tbody>
171
</table>
172
[% END # panel_1 %]
173

  
174
[%
175
  INCLUDE 'common/toggle_panel.html'
176
  block_name    = 'panel_1'
177
  toggle_class  = 'toggle_panel_1'
178
  button_closed = LxERP.t8("Show settings")
179
  button_open   = LxERP.t8("Hide settings")
180
%]
181

  
182
</div><!-- /.col -->
183
<div class="col wi-verywide">
184

  
185
[% UNLESS SELF.worker.is_multiplexed %]
186

  
187
<h3>[% 'Mappings (csv_import)' | $T8 %]</h3>
188

  
189
[% BLOCK panel_2 %]
190
<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>
191
<table id="csv_import_mappings" class="tbl-list">
192
  <thead>
193
    <tr>
194
      <th>[% 'Action' | $T8 %]</th>
195
      <th>[% 'Text in CSV File' | $T8 %]</th>
196
      <th>[% 'Known Column' | $T8 %]</th>
197
    </tr>
198
  </thead>
199
  <tbody>
200
    <tr id="mapping_empty" style="display:none">
201
      <td colspan="3">[% 'There is nothing here yet (csv_import)' | $T8 %]</td>
202
    </tr>
203
    [% FOREACH row = SELF.mappings %]
204
      [% PROCESS 'csv_import/_mapping_item.html', item=row IF row.from %]
205
    [% END %]
206
    [% PROCESS 'csv_import/_mapping_item.html', item={} %]
207
  </tbody>
208
</table>
209
<div class="button">
210
  <input type="button" id="add_empty_mapping_line" value="[% 'Add empty line (csv_import)' | $T8 %]">
211
  <input type="button" id="add_mapping_from_upload" value="[% 'Add headers from last uploaded file (csv_import)' | $T8 %]">
212
</div>
213
[% END # panel_2 %]
214

  
215
[%
216
  #INCLUDE 'common/toggle_panel.html'
217
  block_name    = 'panel_2'
218
  toggle_class  = 'toggle_panel_2'
219
  button_closed = LxERP.t8("Show mappings (csv_import)")
220
  button_open   = LxERP.t8("Hide mappings (csv_import)s")
221
%]
222

  
223
[% END # UNLESS SELF.worker.is_multiplexed %]
224

  
225
[% IF SELF.deferred %]
226
  <div id="results">
227
    [% PROCESS 'csv_import/_deferred_results.html' %]
228
  </div>
229
[% END %]
230

  
231

  
232
<h3 class="caption">[% LxERP.t8('Help on column names') %]</h3>
233

  
234
[% BLOCK panel_3 %]
235
  [% IF SELF.worker.is_multiplexed %]
236
    <table>
237
      <tbody>
238
        <tr>
239
          [% FOREACH p = SELF.worker.profile %]
240
            <th>[% p.row_ident %]</th>
241
          [% END %]
242
        </tr>
243
        <tr>
244
          [% FOREACH p = SELF.worker.profile %]
245
            [% SET ri = p.row_ident %]
246
            <td>
247
              <table class="tbl-list">
248
                <thead>
249
                  <tr>
250
                    <th>[% LxERP.t8('Column name') %]</th>
251
                    <th>[% LxERP.t8('Meaning') %]</th>
252
                  </tr>
253
                </thead>
254
                <tbody>
255
                  [% FOREACH row = SELF.displayable_columns.$ri %]
256
                    <tr>
257
                      <td>[% HTML.escape(row.name) %]</td>
258
                      <td>[% HTML.escape(row.description) %]</td>
259
                    </tr>
260
                  [% END %]
261
                </tbody>
262
              </table>
263
            </td>
264
          [% END %]
265
        </tr>
266
      </tbody>
267
    </table>
268
  [% ELSE %]
269
    <table class="tbl-list">
270
      <thead>
271
        <tr>
272
          <th>[% LxERP.t8('Column name') %]</th>
273
          <th>[% LxERP.t8('Meaning') %]</th>
274
        </tr>
275
      </thead>
276
      <tbody>
277
        [% FOREACH row = SELF.displayable_columns %]
278
        <tr>
279
          <td>[% HTML.escape(row.name) %]</td>
280
          <td>[% HTML.escape(row.description) %]</td>
281
        </tr>
282
        [% END %]
283
      </tbody>
284
    </table>
285
  [% END %]
286
  [% IF SELF.type == 'contacts' %]
287
    <p>
288
      [% LxERP.t8("You can update existing contacts by providing the 'cp_id' column with their database IDs. Otherwise: ") %]
289
      [% LxERP.t8('At least one of the columns #1, customer, customernumber, customer_gln, vendor, vendornumber, vendor_gln (depending on the target table) is required for matching the entry to an existing customer or vendor.', 'cp_cv_id') %]
290
    </p>
291
  [% ELSIF SELF.type == 'addresses' %]
292
    <p>[% LxERP.t8('At least one of the columns #1, customer, customernumber, customer_gln, vendor, vendornumber, vendor_gln (depending on the target table) is required for matching the entry to an existing customer or vendor.', 'trans_id') %]</p>
293
  [% ELSIF SELF.type == 'parts' %]
294
    <p>
295
      [1]:
296
      [% 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.') %]
297
      [% 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).') %]
298
      [% LxERP.t8('The items are imported accoring do their number "X" regardless of the column order inside the file.') %]
299
      [% LxERP.t8('The column "make_X" can contain either a vendor\'s database ID, a vendor number or a vendor\'s name.') %]
300
    </p>
301
    <p>
302
      [2]:
303
      [% 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.') %]
304
    </p>
127 305
    <p>
128
    [2]:
129
    [% 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.') %]
130
   </p>
131
   <p>
132
    [3]:
133
    [% LxERP.t8("If the article type is set to 'mixed' then a column called 'part_type' or called 'pclass' must be present.") %]
134
    [% LxERP.t8("Type can be either 'part', 'service' or 'assembly'.") %]
135
    [%- LxERP.t8("If column 'pclass' is present the article type is then irrelevant or used as default ") %]
136
    [% 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") %]
137
   </p>
138

  
139
[%- ELSIF SELF.type == 'inventories' %]
140
   <p>
141
    [%- 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.') %]
142
   </p>
143

  
144
[%- ELSIF SELF.type == 'orders' OR SELF.type == 'delivery_orders' OR SELF.type == 'ar_transactions' %]
145
   <p>
146
    [1]:
147
    [% 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.') %]
148
   </p>
149
   [%- IF SELF.type == 'orders' OR SELF.type == 'ar_transactions' %]
306
      [3]:
307
      [% LxERP.t8("If the article type is set to 'mixed' then a column called 'part_type' or called 'pclass' must be present.") %]
308
      [% LxERP.t8("Type can be either 'part', 'service' or 'assembly'.") %]
309
      [% LxERP.t8("If column 'pclass' is present the article type is then irrelevant or used as default ") %]
310
      [% 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") %]
311
    </p>
312
  [% ELSIF SELF.type == 'inventories' %]
313
    <p>[% 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.') %]</p>
314
  [% ELSIF SELF.type == 'orders' OR SELF.type == 'delivery_orders' OR SELF.type == 'ar_transactions' %]
150 315
    <p>
151
     [2]:
152
     [%- LxERP.t8('Amount and net amount are calculated by kivitendo. "verify_amount" and "verify_netamount" can be used for sanity checks.') %]<br>
153
     [%- LxERP.t8('If amounts differ more than "Maximal amount difference" (see settings), this item is marked as invalid.') %]<br>
316
      [1]:
317
      [% 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.') %]
154 318
    </p>
155
   [%- END %]
156
[%- END %][%# IF SELF.type == … %]
319
    <p>
320
    [% IF SELF.type == 'orders' OR SELF.type == 'ar_transactions' %]
321
      <p>
322
        [2]:
323
        [% LxERP.t8('Amount and net amount are calculated by kivitendo. "verify_amount" and "verify_netamount" can be used for sanity checks.') %]<br>
324
        [% LxERP.t8('If amounts differ more than "Maximal amount difference" (see settings), this item is marked as invalid.') %]<br>
325
      </p>
326
    [% END %]
327
  [% END %][%# IF SELF.type == … %]
328
  <p>[% L.submit_tag('action_download_sample', LxERP.t8('Download sample file')) %]</p>
329
[% END # panel_3 %]
157 330

  
158
   <p>
159
    [%- L.submit_tag('action_download_sample', LxERP.t8('Download sample file')) %]
160
   </p>
331
[%
332
  #INCLUDE 'common/toggle_panel.html'
333
  block_name    = 'panel_3'
334
  toggle_class  = 'toggle_panel_3'
335
  button_closed = LxERP.t8("Show help text")
336
  button_open   = LxERP.t8("Hide help text")
337
%]
161 338

  
162
  </div>
163 339

  
164
  <hr>
340
</div><!-- /.col -->
165 341

  
166
  <h2>[%- LxERP.t8('Settings') %]</h2>
342
[% END %]<!-- # /ELSE SELF.profile.get('dont_edit_profile') -->
167 343

  
168
  <div class="settings_toggle"[% UNLESS SELF.deferred || SELF.import_status %] style="display:none"[% END %]>
169
   <a href="#" onClick="javascript:$('.settings_toggle').toggle()">[% LxERP.t8("Show settings") %]</a>
170
  </div>
171 344

  
172
  <div class="settings_toggle"[% IF SELF.deferred || SELF.import_status %] style="display:none"[% END %]>
173
   <p><a href="#" onClick="javascript:$('.settings_toggle').toggle()">[% LxERP.t8("Hide settings") %]</a></p>
174

  
175
  <table>
176
   <tr>
177
    <th align="right">[%- LxERP.t8('Number Format') %]:</th>
178
    <td colspan="10">
179
     [% 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') %]
180
    </td>
181
   </tr>
182

  
183
   <tr>
184
    <th align="right">[%- LxERP.t8('Charset') %]:</th>
185
    <td colspan="10">[% L.select_tag('settings.charset', SELF.all_charsets, default = SELF.profile.get('charset'), style = 'width: 300px') %]</td>
186
   </tr>
187

  
188
   <tr>
189
    <th align="right">[%- LxERP.t8('Separator') %]:</th>
190
    [% SET custom_sep_char = SELF.sep_char %]
191
    [% FOREACH entry = SELF.all_sep_chars %]
192
     <td>
193
      [% IF SELF.sep_char == entry.first %] [% SET custom_sep_char = '' %] [%- END %]
194
      [% L.radio_button_tag('sep_char', value => entry.first, label => entry.last, checked => SELF.sep_char == entry.first) %]
195
     </td>
196
    [%- END %][%# FOREACH SELF.all_sep_chars %]
197

  
198
    <td>
199
     [% L.radio_button_tag('sep_char', value => 'custom', checked => custom_sep_char != '') %]
200
     [% L.input_tag('custom_sep_char', custom_sep_char, size => 3, maxlength => 1) %]
201
    </td>
202
   </tr>
203

  
204
   <tr>
205
    <th align="right">[%- LxERP.t8('Quote character') %]:</th>
206
    [% SET custom_quote_char = SELF.quote_char %]
207
    [% FOREACH entry = SELF.all_quote_chars %]
208
     <td>
209
      [% IF SELF.quote_char == entry.first %] [% SET custom_quote_char = '' %] [%- END %]
210
      [% L.radio_button_tag('quote_char', value => entry.first, label => entry.last, checked => SELF.quote_char == entry.first) %]
211
     </td>
212
    [%- END %][%# FOREACH SELF.all_quote_chars %]
213

  
214
    <td>
215
     [% L.radio_button_tag('quote_char', value => 'custom', checked => custom_quote_char != '') %]
216
     [% L.input_tag('custom_quote_char', custom_quote_char, size => 3, maxlength => 1) %]
217
    </td>
218
   </tr>
219

  
220
   <tr>
221
    <th align="right">[%- LxERP.t8('Escape character') %]:</th>
222
    [% SET custom_escape_char = SELF.escape_char %]
223
    [% FOREACH entry = SELF.all_escape_chars %]
224
     <td>
225
      [% IF SELF.escape_char == entry.first %] [% SET custom_escape_char = '' %] [%- END %]
226
      [% L.radio_button_tag('escape_char', value => entry.first, label => entry.last, checked => SELF.escape_char == entry.first) %]
227
     </td>
228
    [%- END %][%# FOREACH SELF.all_escape_chars %]
229

  
230
    <td>
231
     [% L.radio_button_tag('escape_char', value => 'custom', checked => custom_escape_char != '') %]
232
     [% L.input_tag('custom_escape_char', custom_escape_char, size => 3, maxlength => 1) %]
233
    </td>
234
   </tr>
235

  
236
   [% duplicate_fields = SELF.worker.get_duplicate_check_fields() %]
237
   [% IF ( duplicate_fields.size ) %]
238
     <tr>
239
       <th align="right">[%- LxERP.t8('Check for duplicates') %]:</th>
240

  
241
       <td colspan=10>
242
         [% FOREACH key = duplicate_fields.keys %]
243
           <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 %]>
244
           <label for="settings.duplicates_[% key | html %]">[% duplicate_fields.$key.label | html %]</label>
245
         [% END %][%# FOREACH duplicate_fields.keys %]
246
       </td>
247
     </tr>
248

  
249
     <tr>
250
       <th align="right"></th>
251

  
252
       <td colspan=10>
253
         [% opts = [ [ 'no_check',  LxERP.t8('Do not check for duplicates') ],
254
                     [ 'check_csv', LxERP.t8('Discard duplicate entries in CSV file') ],
255
                     [ 'check_db',  LxERP.t8('Discard entries with duplicates in database or CSV file') ] ] %]
256
         [% L.select_tag('settings.duplicates', opts, default = SELF.profile.get('duplicates'), style = 'width: 300px') %]
257
       </td>
258
     </tr>
259
   [% END %][%# IF duplicate_fields.size %]
260

  
261
[%- IF SELF.type == 'parts' %]
262
 [%- INCLUDE 'csv_import/_form_parts.html' %]
263
[%- ELSIF SELF.type == 'customers_vendors' %]
264
 [%- INCLUDE 'csv_import/_form_customers_vendors.html' %]
265
[%- ELSIF SELF.type == 'contacts' %]
266
 [%- INCLUDE 'csv_import/_form_contacts.html' %]
267
[%- ELSIF SELF.type == 'inventories' %]
268
 [%- INCLUDE 'csv_import/_form_inventories.html' %]
269
[%- ELSIF SELF.type == 'orders' %]
270
 [%- INCLUDE 'csv_import/_form_orders.html' %]
271
[%- ELSIF SELF.type == 'delivery_orders' %]
272
 [%- INCLUDE 'csv_import/_form_delivery_orders.html' %]
273
[%- ELSIF SELF.type == 'ar_transactions' %]
274
 [%- INCLUDE 'csv_import/_form_artransactions.html' %]
275
[%- ELSIF SELF.type == 'bank_transactions' %]
276
 [%- INCLUDE 'csv_import/_form_banktransactions.html' %]
277
[%- END %]
278

  
279
   <tr>
280
    <th align="right">[%- LxERP.t8('Preview Mode') %]:</th>
281
    <td colspan="10">
282
      [% L.radio_button_tag('settings.full_preview', value=0, checked=!SELF.profile.get('full_preview'),   label=LxERP.t8('Full Preview')) %]
283
      [% L.radio_button_tag('settings.full_preview', value=1, checked=SELF.profile.get('full_preview')==1, label=LxERP.t8('Only Lines with Notes or Errors')) %]
284
      [% L.radio_button_tag('settings.full_preview', value=2, checked=SELF.profile.get('full_preview')==2, label=LxERP.t8('First 20 Lines')) %]
285
    </td>
286
   </tr>
287

  
288
   <tr>
289
    <th align="right">[%- LxERP.t8('Import file') %]:</th>
290
    <td colspan="10">[% L.input_tag('file', '', type => 'file', accept => '*') %]</td>
291
   </tr>
292

  
293
   [%- IF SELF.file.exists %]
294
    <tr>
295
     <th align="right">[%- LxERP.t8('Existing file on server') %]:</th>
296
     <td colspan="10">[%- LxERP.t8('Uploaded on #1, size #2 kB', SELF.file.displayable_mtime, LxERP.format_amount(SELF.file.size / 1024, 2)) %]</td>
297
    </tr>
298
   [%- END %][%# IF SELF.file.exists %]
299 345

  
300
  </table>
346
</form>
301 347

  
302
  </div>
303
  <hr>
348
<div class="col wi-wide">
304 349

  
305
[%- UNLESS SELF.worker.is_multiplexed %]
306
  <h2>[% 'Mappings (csv_import)' | $T8 %]</h2>
307 350

  
308
  <div class="mappings_toggle"[% UNLESS SELF.deferred || SELF.import_status %] style="display:none"[% END %]>
309
   <a href="#" onClick="javascript:$('.mappings_toggle').toggle()">[% LxERP.t8("Show mappings (csv_import)") %]</a>
310
  </div>
311
  <div class="mappings_toggle"[% IF SELF.deferred || SELF.import_status %] style="display:none"[% END %]>
312
   <p><a href="#" onClick="javascript:$('.mappings_toggle').toggle()">[% LxERP.t8("Hide mappings (csv_import)") %]</a></p>
313

  
314
    <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>
315

  
316
  <table id="csv_import_mappings">
317
   <tr class=listheading>
318
    <th></th>
319
    <th>[% 'Text in CSV File' | $T8 %]</th>
320
    <th>[% 'Known Column' | $T8 %]</th>
321
   </tr>
322
   <tr id='mapping_empty' style='display:none'>
323
    <td colspan=3>[% 'There is nothing here yet (csv_import)' | $T8 %]</td>
324
   </tr>
325
[%- FOREACH row = SELF.mappings %]
326
   [% PROCESS 'csv_import/_mapping_item.html', item=row IF row.from %]
327
[%- END %][%# FOREACH SELF.mappings %]
328
   [% PROCESS 'csv_import/_mapping_item.html', item={} %]
329
  </table>
330

  
331
  <input type=button id='add_empty_mapping_line' value='[% 'Add empty line (csv_import)' | $T8 %]'>
332
  <input type=button id='add_mapping_from_upload' value='[% 'Add headers from last uploaded file (csv_import)' | $T8 %]'>
333 351

  
334
  </div>
335
  <hr>
336
[%- END %][%# UNLESS SELF.worker.is_multiplexed %]
337
[%- END %][%# IF SELF.profile.get('dont_edit_profile') %]
338
 </form>
339 352

  
340
 <div id='results'>
341
 [%- IF SELF.deferred %]
342
   [%- PROCESS 'csv_import/_deferred_results.html' %]
343
 [%- END %][%# IF SELF.deferred %]
344
 </div>
353
</div><!-- /.col -->
354

  
355
</div><!-- /.wrapper -->
345 356

  
346 357

  
347
 <script type="text/javascript">
358
<script type="text/javascript">
348 359
  <!--
349 360
    $(document).ready(function() {
350 361
      $('#action_save').click(function() {
......
362 373
      $('#csv_import_mappings').on('click', '.remove_line', function(){ $(this).closest('tr').remove(); if (1==$('#csv_import_mappings tr:visible').length) $('#mapping_empty').show() });
363 374
    });
364 375
    -->
365
 </script>
376
</script>

Auch abrufbar als: Unified diff