Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision ffdbec6e

Von Hans P. Schlaepfer vor mehr als 4 Jahren hinzugefügt

  • ID ffdbec6e3e145bd3561765621272c0f50d0f9671
  • Vorgänger a6eb59c0
  • Nachfolger 6a85c2e9

Neues Design 2019 Standard-Code templates/webpages/simple_system_setting/_bank_account_form.html

Unterschiede anzeigen:

templates/webpages/simple_system_setting/_bank_account_form.html
[% USE L %]
[% USE P %]
[% SET style="width: 400px" %]
<div class="wrapper">
<table>
<tr>
<th align="right">[% LxERP.t8('Description') %]</th>
<td>[%- L.input_tag("object.name", SELF.object.name, style=style, "data-validate"="required", "data-title"=LxERP.t8("Description")) %]</td>
</tr>
<tr>
<th align="right">[% LxERP.t8('IBAN') %]</th>
<td>[%- L.input_tag("object.iban", SELF.object.iban, style=style, "data-validate"="required", "data-title"=LxERP.t8("IBAN")) %]</td>
</tr>
<tr>
<th align="right">[% LxERP.t8('Bank') %]</th>
<td>[%- L.input_tag("object.bank", SELF.object.bank, style=style) %]</td>
</tr>
<tr>
<th align="right">[% LxERP.t8('Account number') %]</th>
<td>[%- L.input_tag("object.account_number", SELF.object.account_number, style=style) %]</td>
</tr>
<tr>
<th align="right">[% LxERP.t8('BIC') %]</th>
<td>[%- L.input_tag("object.bic", SELF.object.bic, style=style) %]</td>
</tr>
<tr>
<th align="right">[% LxERP.t8('Bank code') %]</th>
<td>[%- L.input_tag("object.bank_code", SELF.object.bank_code, style=style) %]</td>
</tr>
<tr>
<th align="right">[% LxERP.t8('Chart') %]</th>
<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>
</tr>
<tr>
<th align="right">[% LxERP.t8('Use for ZUGFeRD') %]</th>
<td>[% L.checkbox_tag('object.use_for_zugferd', checked = SELF.object.use_for_zugferd, for_submit=1) %]</td>
</tr>
<tr>
<th align="right">[% LxERP.t8('Obsolete') %]</th>
<td>[% L.checkbox_tag('object.obsolete', checked = SELF.object.obsolete, for_submit=1) %]</td>
</tr>
<tr>
<td align="left">[% LxERP.t8('Reconciliation') %]:</td>
<td></td>
</tr>
<tr>
<th align="right">[% LxERP.t8('Starting date') %]</th>
<td>[% L.date_tag('object.reconciliation_starting_date', SELF.object.reconciliation_starting_date) %]</td>
</tr>
<tr>
<th align="right">[% LxERP.t8('Starting balance') %]</th>
<td>[%- L.input_tag('object.reconciliation_starting_balance_as_number', SELF.object.reconciliation_starting_balance_as_number) %]</td>
</tr>
<table class="tbl-horizontal">
<caption>[% 'Bank account' | $T8 %]</caption>
<tbody>
<tr>
<th>[% LxERP.t8('Description') %]</th>
<td>[% L.input_tag("object.name", SELF.object.name, class='wi-wider', "data-validate"="required", "data-title"=LxERP.t8("Description")) %]</td>
</tr>
<tr>
<th>[% LxERP.t8('IBAN') %]</th>
<td>[% L.input_tag("object.iban", SELF.object.iban, class='wi-wider', "data-validate"="required", "data-title"=LxERP.t8("IBAN")) %]</td>
</tr>
<tr>
<th>[% LxERP.t8('Bank') %]</th>
<td>[% L.input_tag("object.bank", SELF.object.bank, class='wi-wider') %]</td>
</tr>
<tr>
<th>[% LxERP.t8('Account number') %]</th>
<td>[% L.input_tag("object.account_number", SELF.object.account_number, class='wi-wider') %]</td>
</tr>
<tr>
<th>[% LxERP.t8('BIC') %]</th>
<td>[% L.input_tag("object.bic", SELF.object.bic, class='wi-wider') %]</td>
</tr>
<tr>
<th>[% LxERP.t8('Bank code') %]</th>
<td>[% L.input_tag("object.bank_code", SELF.object.bank_code, class='wi-wider') %]</td>
</tr>
<tr>
<th>[% LxERP.t8('Chart') %]</th>
<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>
</tr>
<tr>
<th>[% LxERP.t8('Use for ZUGFeRD') %]</th>
<td>[% L.checkbox_tag('object.use_for_zugferd', checked = SELF.object.use_for_zugferd, for_submit=1) %]</td>
</tr>
<tr>
<th>[% LxERP.t8('Obsolete') %]</th>
<td>[% L.checkbox_tag('object.obsolete', checked = SELF.object.obsolete, for_submit=1) %]</td>
</tr>
<tr>
<th class="caption" colspan="2">[% LxERP.t8('Reconciliation') %]: </th>
</tr>
<tr>
<th>[% LxERP.t8('Starting date') %]</th>
<td>[% L.date_tag('object.reconciliation_starting_date', SELF.object.reconciliation_starting_date, class="wi-small date") %]</td>
</tr>
<tr>
<th>[% LxERP.t8('Starting balance') %]</th>
<td>[% L.input_tag('object.reconciliation_starting_balance_as_number', SELF.object.reconciliation_starting_balance_as_number, class="wi-small numeric") %]</td>
</tr>
</tbody>
</table>
</div><!-- /.wrapper -->

Auch abrufbar als: Unified diff