Standard-Buchungsgruppe in CSV-Import-Profil via ID speichern
[kivitendo-erp.git] / templates / webpages / csv_import / _form_parts.html
1 [% USE LxERP %]
2 [% USE L %]
3 <tr>
4  <th align="right">[%- LxERP.t8('Parts with existing part numbers') %]:</th>
5  <td colspan="10">
6   [% opts = [ [ 'update_prices', LxERP.t8('Update prices of existing entries') ], [ 'insert_new', LxERP.t8('Insert with new part number') ] ] %]
7   [% L.select_tag('settings.article_number_policy', L.options_for_select(opts, default => SELF.profile.get('article_number_policy')), style => 'width: 300px') %]
8  </td>
9 </tr>
10
11 <tr>
12  <th align="right">[%- LxERP.t8('Sellprice significant places') %]:</th>
13  <td colspan="10">
14   [% L.select_tag('settings.sellprice_places', L.options_for_select([ 0, 1, 2, 3, 4, 5 ], default => SELF.profile.get('sellprice_places')), style => 'width: 300px') %]
15  </td>
16 </tr>
17
18 <tr>
19  <th align="right">[%- LxERP.t8('Sellprice adjustment') %]:</th>
20  <td colspan="10">
21   [% L.input_tag('settings.sellprice_adjustment', LxERP.format_amount(SELF.profile.get('sellprice_adjustment')), size => "5") %]
22   [% opts = [ [ 'percent', LxERP.t8('percental') ], [ 'absolute', LxERP.t8('absolute') ] ] %]
23   [% L.select_tag('settings.sellprice_adjustment_type', L.options_for_select(opts, default => SELF.profile.get('sellprice_adjustment_type'))) %]
24  </td>
25 </tr>
26
27 <tr>
28  <th align="right">[%- LxERP.t8('Separator for part groups') %]:</th>
29  <td colspan="10">
30   [% L.input_tag('settings.part_group_sep_char', SELF.profile.get('part_group_sep_char'), size => 5) %]
31  </td>
32 </tr>
33
34 <tr>
35  <th align="right">[%- LxERP.t8('Mark as shop article if column missing') %]:</th>
36  <td colspan="10">
37   [% opts = [ [ '1', LxERP.t8('yes') ], [ '0', LxERP.t8('no') ] ] %]
38   [% L.select_tag('settings.shoparticle_if_missing', L.options_for_select(opts, default => SELF.profile.get('shoparticle_if_missing')), style => 'width: 300px') %]
39  </td>
40 </tr>
41
42 <tr>
43  <th align="right">[%- LxERP.t8('Type') %]:</th>
44  <td colspan="10">
45   [% opts = [ [ 'part', LxERP.t8('Parts') ], [ 'service', LxERP.t8('Services') ], [ 'mixed', LxERP.t8('Mixed (requires column "type")') ] ] %]
46   [% L.select_tag('settings.parts_type', L.options_for_select(opts, default => SELF.profile.get('parts_type')), style => 'width: 300px') %]
47  </td>
48 </tr>
49
50 <tr>
51  <th align="right" valign="top">[%- LxERP.t8('Default buchungsgruppe') %]:</th>
52  <td colspan="10" valign="top">
53   [% opts = L.options_for_select(SELF.all_buchungsgruppen, title => 'description', default => SELF.profile.get('default_buchungsgruppe')) %]
54   [% L.select_tag('settings.default_buchungsgruppe', opts, style => 'width: 300px') %]
55   <br>
56   [% opts = [ [ 'never', LxERP.t8('Do not set default buchungsgruppe') ], [ 'all', LxERP.t8('Apply to all parts') ], [ 'missing', LxERP.t8('Apply to parts without buchungsgruppe') ] ] %]
57   [% L.select_tag('settings.apply_buchungsgruppe', L.options_for_select(opts, default => SELF.profile.get('apply_buchungsgruppe')), style => 'width: 300px') %]
58  </td>
59 </tr>