Option für Mindesthaltbarkeitsdatum in Mandantenkonfiguration verschoben.
[kivitendo-erp.git] / templates / webpages / client_config / form.html
1 [%- USE T8 %][%- USE L %][% USE LxERP %]
2
3 <h1>[% title | html %]</h1>
4
5 [% PROCESS 'common/flash.html' %]
6
7 <form action='controller.pl' method='POST'>
8
9 <table>
10
11  <tr class='listheading'>
12    <th colspan="3">[% 'Posting Configuration' | $T8 %]</th>
13  </tr>
14  <tr>
15    <td align="right">[% 'Payments Changeable' | $T8 %]</td>
16    <td>[% L.select_tag('payments_changeable', SELF.payment_options, value_key => 'value', title_key => 'title', default => SELF.payments_changeable) %]</td>
17    <td>[% 'Should payments be and when should they be changeable after posting?' | $T8 %]</td>
18  </tr>
19
20  <tr> </tr>
21  <tr> </tr>
22
23  <tr class='listheading'>
24    <th colspan="3">[% 'Warehouse' | $T8 %]</th>
25  </tr>
26  <tr>
27    <td align="right">[% 'Show Bestbefore' | $T8 %]</td>
28    <td>
29      [% L.yes_no_tag('show_bestbefore', SELF.show_bestbefore) %]
30    </td>
31    <td>
32      [% 'Show fields used for the best before date?' | $T8 %]<br>
33      [% '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.' | $T8 %]<br>
34      [% 'This can be done with the following query:' | $T8 %]<br>
35      <br>
36      UPDATE inventory SET bestbefore = NULL; <br>
37      <br>
38      [% 'Any stock contents containing a best before date will be impossible to stock out otherwise.' | $T8 %]
39    </td>
40  </tr>
41
42 </table>
43
44 <br>
45
46 [%- L.hidden_tag('action',  'ClientConfig/dispatch')  %]
47 [%- L.submit_tag('action_save',  LxERP.t8('Save'))  %]
48
49 </form>