Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision ce8306e0

Von Moritz Bunkus vor mehr als 11 Jahren hinzugefügt

  • ID ce8306e07de8e24ffab52feeeb311468f81e1d70
  • Vorgänger 6af007ae
  • Nachfolger 87714c0a

Mandantenkonfiguration: Felder bearbeiten können, die zuvor nur in myconfig standen

Unterschiede anzeigen:

templates/webpages/client_config/_datev_check_configuration.html
1 1
[%- USE LxERP -%][%- USE L -%]
2 2
<div id="datev_check_configuration">
3
 <div class='listheading'>[% LxERP.t8('DATEV check configuration') %]</div>
4

  
5 3
 <table>
6 4
  <tr>
7 5
   <td colspan="3">[% LxERP.t8('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.') %]</td>
templates/webpages/client_config/_default_accounts.html
1 1
[%- USE HTML -%][%- USE LxERP -%][%- USE L -%][%- USE T8 -%]
2 2
[% SET style="width: 600px" %]
3 3
<div id="default_accounts">
4
 <div class='listheading'>[% LxERP.t8('Default Accounts') %]</div>
5

  
6 4
 <table>
7 5
  <tr>
8 6
   <td align="right">[% LxERP.t8("Inventory Account") %]</td>
templates/webpages/client_config/_miscellaneous.html
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>
templates/webpages/client_config/_orders_deleteable.html
1 1
[%- USE LxERP -%][%- USE L -%]
2 2
<div id="orders_deleteable">
3
 <div class='listheading'>[% LxERP.t8('Orders / Delivery Orders deleteable') %]</div>
4

  
5 3
 <table>
6 4
  <tr>
7 5
   <td align="right">[% LxERP.t8('Sales Orders deleteable') %]</td>
templates/webpages/client_config/_posting_configuration.html
1 1
[%- USE L -%][%- USE LxERP -%]
2 2
<div id="posting_configuration">
3
 <div class="listheading">[% LxERP.t8('Posting Configuration') %]</div>
4

  
5 3
 <table>
6 4
  <tr>
7 5
   <td align="right">[% LxERP.t8('Sales invoices changeable') %]</td>
templates/webpages/client_config/_ranges_of_numbers.html
1 1
[%- USE LxERP -%][%- USE L -%][%- USE HTML -%]
2 2
<div id="ranges_of_numbers">
3
 <div class='listheading'>[% LxERP.t8('Ranges of numbers') %]</div>
4

  
5 3
 <table>
6 4
  <tr>
7 5
   <td align="right" nowrap>[% LxERP.t8('Last Invoice Number') %]</td>
templates/webpages/client_config/_warehouse.html
1 1
[%- USE HTML -%][%- USE LxERP -%][%- USE L -%]
2 2
<div id="warehouse">
3
 <div class='listheading'>[% LxERP.t8('Warehouse') %]</div>
4

  
5 3
 <table>
6 4
  <tr>
7 5
   <td align="right">[% LxERP.t8('Default Transfer') %]</td>

Auch abrufbar als: Unified diff