X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/29269e9981bc1fd95b32052790688e83a01204df..46bc75c8:/templates/webpages/csv_import/form.html diff --git a/templates/webpages/csv_import/form.html b/templates/webpages/csv_import/form.html index 56e307255..e835ed505 100644 --- a/templates/webpages/csv_import/form.html +++ b/templates/webpages/csv_import/form.html @@ -45,11 +45,59 @@
| [%- LxERP.t8('Number format') %]: | +[%- LxERP.t8('Number Format') %]: | [% SET options = L.options_for_select([ '1.000,00', '1000,00', '1,000.00', '1000.00' ], default => SELF.profile.get('numberformat')) %] [% L.select_tag('settings.numberformat', options, style => 'width: 300px') %] @@ -112,9 +160,9 @@ | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| [%- LxERP.t8('Check for duplicates') %]: | - [% opts = [ [ 'no_check', LxERP.t8('Do not check for duplicates') ], + [% opts = [ [ 'no_check', LxERP.t8('Do not check for duplicates') ], [ 'check_csv', LxERP.t8('Discard duplicate entries in CSV file') ], - [ 'check_db', LxERP.t8('Discard entries with duplicates in database and CSV file') ] ] %] + [ 'check_db', LxERP.t8('Discard entries with duplicates in database or CSV file') ] ] %] [% L.select_tag('settings.duplicates', L.options_for_select(opts, default => SELF.profile.get('duplicates')), style => 'width: 300px') %] | ||||||||||
| [%- LxERP.t8('Preview Mode') %]: | ++ [% L.radio_button_tag('settings.full_preview', value=2, checked=SELF.profile.get('full_preview')==2, label=LxERP.t8('Full Preview')) %] + [% L.radio_button_tag('settings.full_preview', value=1, checked=SELF.profile.get('full_preview')==1, label=LxERP.t8('Only Warnings and Errors')) %] + [% L.radio_button_tag('settings.full_preview', value=0, checked=!SELF.profile.get('full_preview'), label=LxERP.t8('First 20 Lines')) %] + | +||||||||||
| [%- LxERP.t8('Import file') %]: | [% L.input_tag('file', '', type => 'file', accept => '*') %] | @@ -139,10 +196,22 @@||||||||||