Mandantenkonfiguration vereinfacht & in mehrere Dateien gespalten und in Tab-Dialog...
[kivitendo-erp.git] / templates / webpages / client_config / _posting_configuration.html
1 [%- USE L -%][%- USE LxERP -%]
2 <div id="posting_configuration">
3  <div class="listheading">[% LxERP.t8('Posting Configuration') %]</div>
4
5  <table>
6   <tr>
7    <td align="right">[% LxERP.t8('Sales invoices changeable') %]</td>
8    <td>[% L.select_tag('defaults.is_changeable', SELF.posting_options, value_key = 'value', title_key = 'title', default = SELF.defaults.is_changeable) %]</td>
9    <td>[% LxERP.t8('Should sales invoices be and when should they be changeable or deleteable after posting?') %]</td>
10   </tr>
11   <tr>
12    <td align="right">[% LxERP.t8('Purchase invoices changeable') %]</td>
13    <td>[% L.select_tag('defaults.ir_changeable', SELF.posting_options, value_key = 'value', title_key = 'title', default = SELF.defaults.ir_changeable) %]</td>
14    <td>[% LxERP.t8('Should purchase invoices be and when should they be deleteable after posting?') %]</td>
15   </tr>
16   <tr>
17    <td align="right">[% LxERP.t8('AR transactions changeable') %]</td>
18    <td>[% L.select_tag('defaults.ar_changeable', SELF.posting_options, value_key = 'value', title_key = 'title', default = SELF.defaults.ar_changeable) %]</td>
19    <td>[% LxERP.t8('Should ar transactions be and when should they be changeable or deleteable after posting?') %]</td>
20   </tr>
21   <tr>
22    <td align="right">[% LxERP.t8('AP transactions changeable') %]</td>
23    <td>[% L.select_tag('defaults.ap_changeable', SELF.posting_options, value_key = 'value', title_key = 'title', default = SELF.defaults.ap_changeable) %]</td>
24    <td>[% LxERP.t8('Should ap transactions be and when should they be changeable or deleteable after posting?') %]</td>
25   </tr>
26   <tr>
27    <td align="right">[% LxERP.t8('GL transactions changeable') %]</td>
28    <td>[% L.select_tag('defaults.gl_changeable', SELF.posting_options, value_key = 'value', title_key = 'title', default = SELF.defaults.gl_changeable) %]</td>
29    <td>[% LxERP.t8('Should gl transactions be and when should they be changeable or deleteable after posting?') %]</td>
30   </tr>
31
32   <tr> </tr>
33   <tr> </tr>
34
35   <tr>
36    <td align="right">[% LxERP.t8('Payments Changeable') %]</td>
37    <td>[% L.select_tag('defaults.payments_changeable', SELF.payment_options, value_key = 'value', title_key = 'title', default = SELF.defaults.payments_changeable) %]</td>
38    <td>[% LxERP.t8('Should payments be and when should they be changeable after posting?') %]</td>
39   </tr>
40
41   <tr> </tr>
42   <tr> </tr>
43
44   <tr>
45    <td align="right">[% LxERP.t8('Show "mark as paid" in sales invoices') %]</td>
46    <td>[% L.yes_no_tag('defaults.is_show_mark_as_paid', SELF.defaults.is_show_mark_as_paid) %]</td>
47    <td>[% LxERP.t8('Should the "mark as paid" button showed on sales invoices?') %]</td>
48   </tr>
49   <tr>
50    <td align="right">[% LxERP.t8('Show "mark as paid" in purchase invoices') %]</td>
51    <td>[% L.yes_no_tag('defaults.ir_show_mark_as_paid', SELF.defaults.ir_show_mark_as_paid) %]</td>
52    <td>[% LxERP.t8('Should the "mark as paid" button showed in purchase invoices?') %]</td>
53   </tr>
54   <tr>
55    <td align="right">[% LxERP.t8('Show "mark as paid" in ar transactions') %]</td>
56    <td>[% L.yes_no_tag('defaults.ar_show_mark_as_paid', SELF.defaults.ar_show_mark_as_paid) %]</td>
57    <td>[% LxERP.t8('Should the "mark as paid" button showed in ar transactions?') %]</td>
58   </tr>
59   <tr>
60    <td align="right">[% LxERP.t8('Show "mark as paid" in ap transactions') %]</td>
61    <td>[% L.yes_no_tag('defaults.ap_show_mark_as_paid', SELF.defaults.ap_show_mark_as_paid) %]</td>
62    <td>[% LxERP.t8('Should the "mark as paid" button showed in ap transactions?') %]</td>
63   </tr>
64
65   <tr> </tr>
66   <tr> </tr>
67
68   <tr>
69    <td align="right">[% LxERP.t8('Accounting method') %]</td>
70    <td>[% L.select_tag('defaults.accounting_method', SELF.accounting_options, value_key = 'value', title_key = 'title', default = SELF.defaults.accounting_method) %]</td>
71    <td>[% LxERP.t8('This option controls the posting and calculation behavior for the accounting method.') %]</td>
72   </tr>
73   <tr>
74    <td align="right">[% LxERP.t8('Inventory system') %]</td>
75    <td>[% L.select_tag('defaults.inventory_system', SELF.inventory_options, value_key = 'value', title_key = 'title', default = SELF.defaults.inventory_system) %]</td>
76    <td>
77     [% LxERP.t8('This option controls the inventory system.') %]<br>
78     [% LxERP.t8('ATTENTION! You can not simply change it from periodic to perpetual once you started posting.') %]
79    </td>
80   </tr>
81   <tr>
82    <td align="right">[% LxERP.t8('Profit determination') %]</td>
83    <td>[% L.select_tag('defaults.profit_determination', SELF.profit_options, value_key = 'value', title_key = 'title', default = SELF.defaults.profit_determination) %]</td>
84    <td>[% LxERP.t8('This option controls the method used for profit determination.') %]</td>
85   </tr>
86  </table>
87 </div>