Revision 8bf516b7
Von Hans P. Schlaepfer vor fast 5 Jahren hinzugefügt
templates/webpages/simple_system_setting/_bank_account_form.html | ||
---|---|---|
3 | 3 |
[% USE L %] |
4 | 4 |
[% USE P %] |
5 | 5 |
|
6 |
[% SET style="width: 400px" %]
|
|
6 |
<div class="wrapper">
|
|
7 | 7 |
|
8 |
<table> |
|
9 |
<tr> |
|
10 |
<th align="right">[% LxERP.t8('Description') %]</th> |
|
11 |
<td>[%- L.input_tag("object.name", SELF.object.name, style=style, "data-validate"="required", "data-title"=LxERP.t8("Description")) %]</td> |
|
12 |
</tr> |
|
13 |
<tr> |
|
14 |
<th align="right">[% LxERP.t8('IBAN') %]</th> |
|
15 |
<td>[%- L.input_tag("object.iban", SELF.object.iban, style=style, "data-validate"="required", "data-title"=LxERP.t8("IBAN")) %]</td> |
|
16 |
</tr> |
|
17 |
<tr> |
|
18 |
<th align="right">[% LxERP.t8('Bank') %]</th> |
|
19 |
<td>[%- L.input_tag("object.bank", SELF.object.bank, style=style) %]</td> |
|
20 |
</tr> |
|
21 |
<tr> |
|
22 |
<th align="right">[% LxERP.t8('Account number') %]</th> |
|
23 |
<td>[%- L.input_tag("object.account_number", SELF.object.account_number, style=style) %]</td> |
|
24 |
</tr> |
|
25 |
<tr> |
|
26 |
<th align="right">[% LxERP.t8('BIC') %]</th> |
|
27 |
<td>[%- L.input_tag("object.bic", SELF.object.bic, style=style) %]</td> |
|
28 |
</tr> |
|
29 |
<tr> |
|
30 |
<th align="right">[% LxERP.t8('Bank code') %]</th> |
|
31 |
<td>[%- L.input_tag("object.bank_code", SELF.object.bank_code, style=style) %]</td> |
|
32 |
</tr> |
|
33 |
<tr> |
|
34 |
<th align="right">[% LxERP.t8('Chart') %]</th> |
|
35 |
<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> |
|
36 |
</tr> |
|
37 |
<tr> |
|
38 |
<th align="right">[% LxERP.t8('Obsolete') %]</th> |
|
39 |
<td>[% L.checkbox_tag('object.obsolete', checked = SELF.object.obsolete, for_submit=1) %]</td> |
|
40 |
</tr> |
|
41 |
<tr> |
|
42 |
<td align="left">[% LxERP.t8('Reconciliation') %]:</td> |
|
43 |
<td></td> |
|
44 |
</tr> |
|
45 |
<tr> |
|
46 |
<th align="right">[% LxERP.t8('Starting date') %]</th> |
|
47 |
<td>[% L.date_tag('object.reconciliation_starting_date', SELF.object.reconciliation_starting_date) %]</td> |
|
48 |
</tr> |
|
49 |
<tr> |
|
50 |
<th align="right">[% LxERP.t8('Starting balance') %]</th> |
|
51 |
<td>[%- L.input_tag('object.reconciliation_starting_balance_as_number', SELF.object.reconciliation_starting_balance_as_number) %]</td> |
|
52 |
</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> |
|
53 | 55 |
</table> |
56 |
|
|
57 |
</div><!-- /.wrapper --> |
Auch abrufbar als: Unified diff
Neues Design 2019 Standard-Code templates/webpages/simple_system_setting/_bank_account_form.html