Option für Datev-Check 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">[% 'DATEV check configuration' | $T8 %]</th>
25  </tr>
26  <tr>
27    <td colspan="3">[% 'It is possible to make a quick DATEV export everytime you post a record to ensure things work nicely with their data requirements. This will result in a slight overhead though you can enable this for each type of record independantly.' | $T8 %]</td>
28  </tr>
29  <tr>
30    <td align="right">[% 'Check on sales invoice' | $T8 %]</td>
31    <td>[% L.yes_no_tag('datev_check_on_sales_invoice', SELF.datev_check_on_sales_invoice) %]</td>
32    <td>[% 'Perform check when a sales invoice or a payment for a sales invoice is posted?' | $T8 %]</td>
33  </tr>
34  <tr>
35    <td align="right">[% 'Check on purchase invoice' | $T8 %]</td>
36    <td>[% L.yes_no_tag('datev_check_on_purchase_invoice', SELF.datev_check_on_purchase_invoice) %]</td>
37    <td>[% 'Perform check when a purchase invoice or a payment for a purchase invoice is posted?' | $T8 %]</td>
38  </tr>
39  <tr>
40    <td align="right">[% 'Check on ar transaction' | $T8 %]</td>
41    <td>[% L.yes_no_tag('datev_check_on_ar_transaction', SELF.datev_check_on_ar_transaction) %]</td>
42    <td>[% 'Perform check when an ar transaction is posted?' | $T8 %]</td>
43  </tr>
44  <tr>
45    <td align="right">[% 'Check on ap transaction' | $T8 %]</td>
46    <td>[% L.yes_no_tag('datev_check_on_ap_transaction', SELF.datev_check_on_ap_transaction) %]</td>
47    <td>[% 'Perform check when an ap transaction is posted?' | $T8 %]</td>
48  </tr>
49  <tr>
50    <td align="right">[% 'Check on gl transaction' | $T8 %]</td>
51    <td>[% L.yes_no_tag('datev_check_on_gl_transaction', SELF.datev_check_on_gl_transaction) %]</td>
52    <td>[% 'Perform check when a gl transaction is posted?' | $T8 %]</td>
53  </tr>
54
55  <tr> </tr>
56  <tr> </tr>
57
58  <tr class='listheading'>
59    <th colspan="3">[% 'Warehouse' | $T8 %]</th>
60  </tr>
61  <tr>
62    <td align="right">[% 'Show Bestbefore' | $T8 %]</td>
63    <td>
64      [% L.yes_no_tag('show_bestbefore', SELF.show_bestbefore) %]
65    </td>
66    <td>
67      [% 'Show fields used for the best before date?' | $T8 %]<br>
68      [% '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>
69      [% 'This can be done with the following query:' | $T8 %]<br>
70      <br>
71      UPDATE inventory SET bestbefore = NULL; <br>
72      <br>
73      [% 'Any stock contents containing a best before date will be impossible to stock out otherwise.' | $T8 %]
74    </td>
75  </tr>
76
77 </table>
78
79 <br>
80
81 [%- L.hidden_tag('action',  'ClientConfig/dispatch')  %]
82 [%- L.submit_tag('action_save',  LxERP.t8('Save'))  %]
83
84 </form>