1 |
1 |
[%- USE LxERP -%][%- USE L -%][%- USE HTML -%]
|
2 |
|
[% SET style="width: 200px" %]
|
|
2 |
[% SET style="width: 400px" %]
|
3 |
3 |
<div id="miscellaneous">
|
4 |
|
<div class="listheading">[% LxERP.t8("Miscellaneous") %]</div>
|
5 |
|
|
6 |
4 |
<table>
|
|
5 |
<tr><td class="listheading" colspan="4">[% LxERP.t8("Company settings") %]</td></tr>
|
|
6 |
|
|
7 |
<tr>
|
|
8 |
<td align="right">[% LxERP.t8("Company name") %]</td>
|
|
9 |
<td>[% L.input_tag('defaults.company', SELF.defaults.company, style=style) %]</td>
|
|
10 |
</tr>
|
|
11 |
|
|
12 |
<tr>
|
|
13 |
<td align="right">[% LxERP.t8("Address") %]</td>
|
|
14 |
<td>[% L.textarea_tag('defaults.address', SELF.defaults.address, style=style, rows=4) %]</td>
|
|
15 |
</tr>
|
|
16 |
|
|
17 |
<tr>
|
|
18 |
<td align="right">[% LxERP.t8("Tax number") %]</td>
|
|
19 |
<td>[% L.input_tag('defaults.taxnumber', SELF.defaults.taxnumber, style=style) %]</td>
|
|
20 |
</tr>
|
|
21 |
|
|
22 |
<tr>
|
|
23 |
<td align="right">[% LxERP.t8("Tax ID number") %]</td>
|
|
24 |
<td>[% L.input_tag('defaults.co_ustid', SELF.defaults.co_ustid, style=style) %]</td>
|
|
25 |
</tr>
|
|
26 |
|
|
27 |
<tr>
|
|
28 |
<td align="right">[% LxERP.t8("SEPA creditor ID") %]</td>
|
|
29 |
<td>[% L.input_tag('defaults.sepa_creditor_id', SELF.defaults.sepa_creditor_id, style=style) %]</td>
|
|
30 |
</tr>
|
|
31 |
|
7 |
32 |
<tr>
|
8 |
33 |
<td align="right">[% LxERP.t8("Business Number") %]</td>
|
9 |
34 |
<td>[% L.input_tag('defaults.businessnumber', SELF.defaults.businessnumber, style=style) %]</td>
|
10 |
35 |
</tr>
|
11 |
36 |
|
|
37 |
<tr>
|
|
38 |
<td align="right">[% LxERP.t8("DUNS number") %]</td>
|
|
39 |
<td>[% L.input_tag('defaults.duns', SELF.defaults.duns, style=style) %]</td>
|
|
40 |
</tr>
|
|
41 |
|
|
42 |
<tr><td class="listheading" colspan="4">[% LxERP.t8("Language settings") %]</td></tr>
|
|
43 |
|
12 |
44 |
<tr>
|
13 |
45 |
<td align="right">[% LxERP.t8('Default Customer/Vendor Language') %]</td>
|
14 |
46 |
<td>[% L.select_tag('defaults.language_id', SELF.all_languages, title_key='description', default=SELF.defaults.language_id, with_empty=1, style=style) %]</td>
|
15 |
47 |
</tr>
|
16 |
|
</table>
|
17 |
48 |
|
18 |
|
<div class="listheading">[% LxERP.t8("Currencies") %]</div>
|
|
49 |
<tr><td class="listheading" colspan="4">[% LxERP.t8("Currencies") %]</td></tr>
|
19 |
50 |
|
20 |
|
<table>
|
21 |
51 |
<tr>
|
22 |
52 |
<th></th>
|
23 |
|
<th>[% LxERP.t8("Default currency") %]</th>
|
24 |
53 |
<th>[% LxERP.t8("Currency name") %]</th>
|
|
54 |
<th>[% LxERP.t8("Default currency") %]</th>
|
25 |
55 |
<th>[% LxERP.t8("Hints") %]</th>
|
26 |
56 |
</tr>
|
27 |
57 |
|
28 |
58 |
[% FOREACH currency = SELF.all_currencies %]
|
29 |
59 |
<tr>
|
30 |
60 |
<td align="right">[% IF loop.count == 1 %][% LxERP.t8("Currencies") %][% END %]</td>
|
|
61 |
<td>
|
|
62 |
[% L.input_tag("currencies[].name", currency.name, style=style) %]
|
|
63 |
</td>
|
31 |
64 |
<td align="center">
|
32 |
65 |
[% L.hidden_tag("currencies[+].id", currency.id) %]
|
33 |
66 |
[% L.radio_button_tag('defaults.currency_id', value=currency.id, id='defaults.currency_id_' _ currency.id, checked=(SELF.defaults.currency_id == currency.id)) %]
|
34 |
67 |
</td>
|
35 |
|
<td>
|
36 |
|
[% L.input_tag("currencies[].name", currency.name, style=style) %]
|
37 |
|
</td>
|
38 |
68 |
<td>[% IF loop.count == 1 %][% LxERP.t8("Edit the currency names in order to rename them.") %][%- END %]</td>
|
39 |
69 |
</tr>
|
40 |
70 |
[% END %]
|
41 |
71 |
|
42 |
72 |
<tr>
|
43 |
73 |
<td align="right">[% LxERP.t8("Add new currency") %]</td>
|
44 |
|
<td align="center">[% L.radio_button_tag('defaults.currency_id', value=-1, id='defaults.currency_id__1', checked=(SELF.defaults.currency_id == -1)) %]</td>
|
45 |
74 |
<td>[% L.input_tag("new_currency", FORM.new_currency, style=style) %]</td>
|
|
75 |
<td align="center">[% L.radio_button_tag('defaults.currency_id', value=-1, id='defaults.currency_id__1', checked=(SELF.defaults.currency_id == -1)) %]</td>
|
46 |
76 |
</tr>
|
47 |
|
</table>
|
48 |
77 |
|
49 |
|
<div class="listheading">[% LxERP.t8("Weight") %]</div>
|
|
78 |
<tr><td class="listheading" colspan="4">[% LxERP.t8("Weight") %]</td></tr>
|
50 |
79 |
|
51 |
|
<table>
|
52 |
80 |
<tr>
|
53 |
81 |
<td align="right">[% LxERP.t8("Weight unit") %]</td>
|
54 |
82 |
<td>[% L.select_tag('defaults.weightunit', SELF.all_weightunits, default=SELF.defaults.weightunit, value_key='name', title_key='name', style=style) %]</td>
|
... | ... | |
57 |
85 |
<tr>
|
58 |
86 |
<td align="right">[% LxERP.t8('Show weights') %]</td>
|
59 |
87 |
<td>[% L.yes_no_tag('defaults.show_weight', SELF.defaults.show_weight, style=style) %]</td>
|
60 |
|
<td>[% LxERP.t8('Show the weights of articles and the total weight in orders, invoices and delivery notes?') %]</td>
|
|
88 |
<td colspan="2">[% LxERP.t8('Show the weights of articles and the total weight in orders, invoices and delivery notes?') %]</td>
|
61 |
89 |
</tr>
|
62 |
90 |
</table>
|
63 |
91 |
</div>
|
Mandantenkonfiguration: Felder bearbeiten können, die zuvor nur in myconfig standen