Optionen für Gewinnermittlung, Warenbuchungsmethode und Versteuerungsart in Mandanten...
[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  <tr>
20    <td align="right">[% 'Accounting method' | $T8 %]</td>
21    <td>[% L.select_tag('accounting_method', SELF.accounting_options, value_key => 'value', title_key => 'title', default => SELF.accounting_method) %]</td>
22    <td>[% 'This option controls the posting and calculation behavior for the accounting method.' | $T8 %]</td>
23  </tr>
24  <tr>
25    <td align="right">[% 'Inventory system' | $T8 %]</td>
26    <td>[% L.select_tag('inventory_system', SELF.inventory_options, value_key => 'value', title_key => 'title', default => SELF.inventory_system) %]</td>
27    <td>
28      [% 'This option controls the inventory system.' | $T8 %]<br>
29      [% 'ATTENTION! You can not simply change it from periodic to perpetual once you started posting.' | $T8 %]
30    </td>
31  </tr>
32  <tr>
33    <td align="right">[% 'Profit determination' | $T8 %]</td>
34    <td>[% L.select_tag('profit_determination', SELF.profit_options, value_key => 'value', title_key => 'title', default => SELF.profit_determination) %]</td>
35    <td>[% 'This option controls the method used for profit determination.' | $T8 %]</td>
36  </tr>
37
38  <tr> </tr>
39  <tr> </tr>
40
41  <tr class='listheading'>
42    <th colspan="3">[% 'DATEV check configuration' | $T8 %]</th>
43  </tr>
44  <tr>
45    <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>
46  </tr>
47  <tr>
48    <td align="right">[% 'Check on sales invoice' | $T8 %]</td>
49    <td>[% L.yes_no_tag('datev_check_on_sales_invoice', SELF.datev_check_on_sales_invoice) %]</td>
50    <td>[% 'Perform check when a sales invoice or a payment for a sales invoice is posted?' | $T8 %]</td>
51  </tr>
52  <tr>
53    <td align="right">[% 'Check on purchase invoice' | $T8 %]</td>
54    <td>[% L.yes_no_tag('datev_check_on_purchase_invoice', SELF.datev_check_on_purchase_invoice) %]</td>
55    <td>[% 'Perform check when a purchase invoice or a payment for a purchase invoice is posted?' | $T8 %]</td>
56  </tr>
57  <tr>
58    <td align="right">[% 'Check on ar transaction' | $T8 %]</td>
59    <td>[% L.yes_no_tag('datev_check_on_ar_transaction', SELF.datev_check_on_ar_transaction) %]</td>
60    <td>[% 'Perform check when an ar transaction is posted?' | $T8 %]</td>
61  </tr>
62  <tr>
63    <td align="right">[% 'Check on ap transaction' | $T8 %]</td>
64    <td>[% L.yes_no_tag('datev_check_on_ap_transaction', SELF.datev_check_on_ap_transaction) %]</td>
65    <td>[% 'Perform check when an ap transaction is posted?' | $T8 %]</td>
66  </tr>
67  <tr>
68    <td align="right">[% 'Check on gl transaction' | $T8 %]</td>
69    <td>[% L.yes_no_tag('datev_check_on_gl_transaction', SELF.datev_check_on_gl_transaction) %]</td>
70    <td>[% 'Perform check when a gl transaction is posted?' | $T8 %]</td>
71  </tr>
72
73  <tr> </tr>
74  <tr> </tr>
75
76  <tr class='listheading'>
77    <th colspan="3">[% 'Warehouse' | $T8 %]</th>
78  </tr>
79  <tr>
80    <td align="right">[% 'Show Bestbefore' | $T8 %]</td>
81    <td>
82      [% L.yes_no_tag('show_bestbefore', SELF.show_bestbefore) %]
83    </td>
84    <td>
85      [% 'Show fields used for the best before date?' | $T8 %]<br>
86      [% '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>
87      [% 'This can be done with the following query:' | $T8 %]<br>
88      <br>
89      UPDATE inventory SET bestbefore = NULL; <br>
90      <br>
91      [% 'Any stock contents containing a best before date will be impossible to stock out otherwise.' | $T8 %]
92    </td>
93  </tr>
94
95 </table>
96
97 <br>
98
99 [%- L.hidden_tag('action',  'ClientConfig/dispatch')  %]
100 [%- L.submit_tag('action_save',  LxERP.t8('Save'))  %]
101
102 </form>