Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / templates / webpages / csv_import / _form_customers_vendors.html
1 [% USE LxERP %]
2 [% USE L %]
3
4 <tr>
5  <th align="right">[%- LxERP.t8('Target table') %]:</th>
6  <td colspan="10">
7   [% opts = [ [ 'customer', LxERP.t8('Customers') ], [ 'vendor', LxERP.t8('Vendors') ] ] %]
8   [% L.select_tag('settings.table', opts, default = SELF.profile.get('table'), style = 'width: 300px') %]
9  </td>
10 </tr>
11
12 <tr>
13  <th align="right">[%- LxERP.t8('Existing customers/vendors with same customer/vendor number') %]:</th>
14  <td colspan="10">
15   [% opts = [ [ 'update_existing', LxERP.t8('Update properties of existing entries') ], [ 'insert_new', LxERP.t8('Insert with new customer/vendor number') ], [ 'skip', LxERP.t8('Skip entry') ] ] %]
16   [% L.select_tag('settings.update_policy', opts, default = SELF.profile.get('update_policy'), style = 'width: 300px') %]
17  </td>
18 </tr>
19
20 <tr>
21  <th align="right" valign="top">[%- LxERP.t8('Default taxzone') %]:</th>
22  <td colspan="10" valign="top">
23   [% L.select_tag('settings.default_taxzone', SELF.all_taxzones, default = SELF.profile.get('default_taxzone'), title_key = 'description', style => 'width: 300px') %]
24  </td>
25 </tr>
26