Langtext-Dialog: Größe prozentual zum Hauptfenster einstellbar pro Benutzer
[kivitendo-erp.git] / templates / webpages / csv_import / _form_inventories.html
1 [% USE LxERP %]
2 [% USE L %]
3 <tr>
4  <th align="right" valign="top">[%- LxERP.t8('Warehouse') %]/[%- LxERP.t8('Bin') %]:</th>
5  <td colspan="2" valign="top">
6   [% L.input_tag('settings.warehouse', SELF.profile.get('warehouse'), style = 'width: 300px') %]
7   <br>
8   [% opts = [ [ 'never', LxERP.t8('Do not set this warehouse') ],[ 'missing', LxERP.t8('Apply to transfers without warehouse') ], [ 'all', LxERP.t8('Apply to all transfers') ] ] %]
9   [% L.select_tag('settings.apply_warehouse', opts, default = SELF.profile.get('apply_warehouse'), style = 'width: 300px') %]
10  </td>
11  <td colspan="8" valign="top">
12   [% L.input_tag('settings.bin', SELF.profile.get('bin'), style = 'width: 300px') %]
13   <br>
14   [% opts = [ [ 'never', LxERP.t8('Do not set this bin') ], [ 'missing', LxERP.t8('Apply to transfers without bin') ], [ 'all', LxERP.t8('Apply to all transfers') ] ] %]
15   [% L.select_tag('settings.apply_bin', opts, default = SELF.profile.get('apply_bin'), style = 'width: 300px') %]
16  </td>
17 </tr>
18
19 <tr>
20 </tr>
21
22 <tr>
23  <th align="right" valign="top">[%- LxERP.t8('Comment') %]:</th>
24  <td colspan="10" valign="top">
25   [% L.input_tag('settings.comment', SELF.profile.get('comment'), style = 'width: 300px') %]
26   <br>
27   [% opts = [ [ 'never', LxERP.t8('Do not set this comment') ], [ 'missing', LxERP.t8('Apply to transfers without comment') ], [ 'all', LxERP.t8('Apply to all transfers') ] ] %]
28   [% L.select_tag('settings.apply_comment', opts, default = SELF.profile.get('apply_comment'), style = 'width: 300px') %]
29  </td>
30 </tr>