Mandantenkonfiguration erweitert:Dienstleistungen NICHT automatisch Auslagern
[kivitendo-erp.git] / templates / webpages / client_config / _warehouse.html
1 [%- USE HTML -%][%- USE LxERP -%][%- USE L -%]
2 <div id="warehouse">
3  <table>
4   <tr>
5    <td align="right">[% LxERP.t8('Default Transfer') %]</td>
6    <td>
7     [% L.yes_no_tag('defaults.transfer_default', SELF.defaults.transfer_default) %]
8    </td>
9    <td>
10     [% LxERP.t8('Show Transfer via default') %]<br>
11    </td>
12   </tr>
13   <tr>
14    <td align="right">[% LxERP.t8('Default Transfer with services') %]</td>
15    <td>
16     [% L.yes_no_tag('defaults.transfer_default_services', SELF.defaults.transfer_default_services) %]
17    </td>
18    <td>
19     [% LxERP.t8('Transfer services via default') %]<br>
20    </td>
21   </tr>
22
23
24
25    <td align="right" nowrap="true">[% LxERP.t8('Default Warehouse') %]</td>
26    <td>
27     [% L.select_tag('defaults.warehouse_id', SELF.all_warehouses, id='warehouse_id', with_empty=1, default=SELF.defaults.warehouse_id, title_key='description',
28                     onchange="warehouse_selected(this.selectedIndex == 0 ? -1 : warehouses[this.selectedIndex - 1].id, -1)") %]
29    </td>
30    <td>
31     [% LxERP.t8('This is the default bin for parts') %]<br>
32     [% LxERP.t8('If configured this bin will be preselected for all new parts. Also this bin will be used as the master default bin, if default transfer out with master bin is activated.') %]<br>
33    </td>
34   </tr>
35   <tr>
36    <td align="right" nowrap="true">[% LxERP.t8('Default Bin') %]</td>
37    <td>[% L.select_tag('defaults.bin_id', [], id='bin_id', with_empty=1) %]</td>
38   </tr>
39   <tr>
40   <tr>
41    <td align="right">[% LxERP.t8('Default Transfer with Master Bin') %]</td>
42    <td>
43     [% L.yes_no_tag('defaults.transfer_default_use_master_default_bin', SELF.defaults.transfer_default_use_master_default_bin) %]
44    </td>
45    <td>
46     [% LxERP.t8('Use master default bin for Default Transfer, if no default bin for the part is configured') %]<br>
47    </td>
48   </tr>
49   <tr><td colspan="3"><hr /></td></tr>
50   <tr>
51    <td align="right">[% LxERP.t8('Default Transfer Out with negative inventory') %]</td>
52    <td>
53     [% L.yes_no_tag('defaults.transfer_default_ignore_onhand', SELF.defaults.transfer_default_ignore_onhand) %]
54    </td>
55    <td>
56     [% LxERP.t8('Default Transfer Out always succeed. The current part onhand is ignored and the inventory can have negative stocks (not recommended).') %]<br>
57    </td>
58   </tr>
59
60  <tr>
61    <td align="right" nowrap="true">[% LxERP.t8('Default Warehouse with ignoring on hand') %]</td>
62    <td>
63     [% L.select_tag('defaults.warehouse_id_ignore_onhand', SELF.all_warehouses, id='warehouse_id_ignore_onhand', with_empty=1, default=SELF.defaults.warehouse_id_ignore_onhand, title_key='description',
64                     onchange="warehouse_selected(this.selectedIndex == 0 ? -1 : warehouses[this.selectedIndex - 1].id, -1, 'bin_id_ignore_onhand')") %]
65    </td>
66    <td>
67     [% LxERP.t8('This is the default bin for ignoring onhand') %]<br>
68     [% LxERP.t8('If the default transfer out always succeed use this bin for negative stock quantity.') %]<br>
69    </td>
70   </tr>
71   <tr>
72    <td align="right" nowrap="true">[% LxERP.t8('Default Bin with ignoring onhand') %]</td>
73    <td>[% L.select_tag('defaults.bin_id_ignore_onhand', [], id='bin_id_ignore_onhand', with_empty=1) %]</td>
74   </tr>
75   <tr><td colspan="3"><hr /></td></tr>
76   <tr>
77   <tr>
78    <td align="right">[% LxERP.t8('Show Bestbefore') %]</td>
79    <td>
80     [% L.yes_no_tag('defaults.show_bestbefore', SELF.defaults.show_bestbefore) %]
81    </td>
82    <td>
83     [% LxERP.t8('Show fields used for the best before date?') %]<br>
84     [% LxERP.t8('ATTENTION! If you enabled this feature you can not simply turn it off again without taking care that best_before fields are emptied in the database.') %]<br>
85     [% LxERP.t8('This can be done with the following query:') %]<br>
86     <br>
87     UPDATE inventory SET bestbefore = NULL; <br>
88     <br>
89     [% LxERP.t8('Any stock contents containing a best before date will be impossible to stock out otherwise.') %]
90    </td>
91   </tr>
92  </table>
93 </div>