Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision d4239609

Von Hans Peter Schlaepfer vor mehr als 4 Jahren hinzugefügt

  • ID d42396099d13d99ba32435267e82dddea4c1aae4
  • Vorgänger 988d8487
  • Nachfolger 96f21f5c

Neues kivitendo Design Aenderungen in templates/webpages/simple_system_settings/..

Unterschiede anzeigen:

templates/webpages/simple_system_setting/_bank_account_form.html
1
[%- USE HTML -%][%- USE LxERP -%][%- USE L -%][%- USE P -%]
1
[% USE HTML %]
2
[% USE LxERP %]
3
[% USE L %]
4
[% USE P %]
2 5

  
3
[% SET style="width: 400px" %]
6
<div class="wrapper">
4 7

  
5
<table>
6
 <tr>
7
  <th align="right">[% LxERP.t8('Description') %]</th>
8
  <td>[%- L.input_tag("object.name", SELF.object.name, style=style, "data-validate"="required", "data-title"=LxERP.t8("Description")) %]</td>
9
 </tr>
10
 <tr>
11
  <th align="right">[% LxERP.t8('IBAN') %]</th>
12
  <td>[%- L.input_tag("object.iban", SELF.object.iban, style=style, "data-validate"="required", "data-title"=LxERP.t8("IBAN")) %]</td>
13
 </tr>
14
 <tr>
15
  <th align="right">[% LxERP.t8('Bank') %]</th>
16
  <td>[%- L.input_tag("object.bank", SELF.object.bank, style=style) %]</td>
17
 </tr>
18
 <tr>
19
  <th align="right">[% LxERP.t8('Account number') %]</th>
20
  <td>[%- L.input_tag("object.account_number", SELF.object.account_number, style=style) %]</td>
21
 </tr>
22
 <tr>
23
  <th align="right">[% LxERP.t8('BIC') %]</th>
24
  <td>[%- L.input_tag("object.bic", SELF.object.bic, style=style) %]</td>
25
 </tr>
26
 <tr>
27
  <th align="right">[% LxERP.t8('Bank code') %]</th>
28
  <td>[%- L.input_tag("object.bank_code", SELF.object.bank_code, style=style) %]</td>
29
 </tr>
30
 <tr>
31
  <th align="right">[% LxERP.t8('Chart') %]</th>
32
  <td>[% P.chart.picker('object.chart_id', SELF.object.chart_id, type='AR_paid,AP_paid', category='A,L,Q', choose=1, style=style, "data-validate"="required", "data-title"=LxERP.t8("Chart")) %]</td>
33
 </tr>
34
 <tr>
35
  <th align="right">[% LxERP.t8('Obsolete') %]</th>
36
  <td>[% L.checkbox_tag('object.obsolete', checked = SELF.object.obsolete, for_submit=1) %]</td>
37
 </tr>
38
 <tr>
39
  <td align="left">[% LxERP.t8('Reconciliation') %]:</td>
40
  <td></td>
41
 </tr>
42
 <tr>
43
  <th align="right">[% LxERP.t8('Starting date') %]</th>
44
  <td>[% L.date_tag('object.reconciliation_starting_date', SELF.object.reconciliation_starting_date) %]</td>
45
 </tr>
46
 <tr>
47
  <th align="right">[% LxERP.t8('Starting balance') %]</th>
48
  <td>[%- L.input_tag('object.reconciliation_starting_balance_as_number', SELF.object.reconciliation_starting_balance_as_number) %]</td>
49
 </tr>
8
<table class="tbl-horizontal">
9
  <caption>[% 'Bank account' | $T8 %]</caption>
10
  <tbody>
11
    <tr>
12
      <th>[% LxERP.t8('Description') %]</th>
13
      <td>[% L.input_tag("object.name", SELF.object.name, class='wi-wider', "data-validate"="required", "data-title"=LxERP.t8("Description")) %]</td>
14
    </tr>
15
    <tr>
16
      <th>[% LxERP.t8('IBAN') %]</th>
17
      <td>[% L.input_tag("object.iban", SELF.object.iban, class='wi-wider', "data-validate"="required", "data-title"=LxERP.t8("IBAN")) %]</td>
18
    </tr>
19
    <tr>
20
      <th>[% LxERP.t8('Bank') %]</th>
21
      <td>[% L.input_tag("object.bank", SELF.object.bank, class='wi-wider') %]</td>
22
    </tr>
23
    <tr>
24
      <th>[% LxERP.t8('Account number') %]</th>
25
      <td>[% L.input_tag("object.account_number", SELF.object.account_number, class='wi-wider') %]</td>
26
    </tr>
27
    <tr>
28
      <th>[% LxERP.t8('BIC') %]</th>
29
      <td>[% L.input_tag("object.bic", SELF.object.bic, class='wi-wider') %]</td>
30
    </tr>
31
    <tr>
32
      <th>[% LxERP.t8('Bank code') %]</th>
33
      <td>[% L.input_tag("object.bank_code", SELF.object.bank_code, class='wi-wider') %]</td>
34
    </tr>
35
    <tr>
36
      <th>[% LxERP.t8('Chart') %]</th>
37
      <td>[% P.chart.picker("object.chart_id", SELF.object.chart_id, type='AR_paid,AP_paid', category='A,L,Q', choose=1, class='wi-wider', "data-validate"="required", "data-title"=LxERP.t8("Chart")) %]</td>
38
    </tr>
39
    <tr>
40
      <th>[% LxERP.t8('Obsolete') %]</th>
41
      <td>[% L.checkbox_tag('object.obsolete', checked = SELF.object.obsolete, for_submit=1) %]</td>
42
    </tr>
43
    <tr>
44
      <th class="caption" colspan="2">[% LxERP.t8('Reconciliation') %]: </th>
45
    </tr>
46
    <tr>
47
      <th>[% LxERP.t8('Starting date') %]</th>
48
      <td>[% L.date_tag('object.reconciliation_starting_date', SELF.object.reconciliation_starting_date, class="wi-small date") %]</td>
49
    </tr>
50
    <tr>
51
      <th>[% LxERP.t8('Starting balance') %]</th>
52
      <td>[% L.input_tag('object.reconciliation_starting_balance_as_number', SELF.object.reconciliation_starting_balance_as_number, class="wi-small numeric") %]</td>
53
    </tr>
54
  </tbody>
50 55
</table>
56

  
57
</div><!-- /.wrapper -->

Auch abrufbar als: Unified diff