Revision 67c216d4
Von Cem Aydin vor fast 3 Jahren hinzugefügt
SL/Controller/SimpleSystemSetting.pm | ||
---|---|---|
34 | 34 |
{ method => 'iban', title => t8('IBAN'), }, |
35 | 35 |
{ method => 'bank', title => t8('Bank'), }, |
36 | 36 |
{ method => 'bank_code', title => t8('Bank code'), }, |
37 |
{ method => 'bank_account_id', title => t8('Bank Account Id Number (Swiss)'), }, |
|
37 | 38 |
{ method => 'bic', title => t8('BIC'), }, |
38 | 39 |
{ title => t8('Use for Factur-X/ZUGFeRD'), formatter => sub { $_[0]->use_for_zugferd ? t8('yes') : t8('no') } }, |
40 |
{ title => t8('Use for Swiss QR-Bill'), formatter => sub { $_[0]->use_for_qrbill ? t8('yes') : t8('no') } }, |
|
39 | 41 |
{ method => 'reconciliation_starting_date_as_date', title => t8('Date'), align => 'right' }, |
40 | 42 |
{ method => 'reconciliation_starting_balance_as_number', title => t8('Balance'), align => 'right' }, |
41 | 43 |
], |
templates/webpages/simple_system_setting/_bank_account_form.html | ||
---|---|---|
27 | 27 |
<th align="right">[% LxERP.t8('Bank code') %]</th> |
28 | 28 |
<td>[%- L.input_tag("object.bank_code", SELF.object.bank_code, style=style) %]</td> |
29 | 29 |
</tr> |
30 |
<tr> |
|
31 |
<th align="right">[% LxERP.t8('Bank Account Id Number (Swiss)') %]</th> |
|
32 |
<td>[%- L.input_tag("object.bank_account_id", SELF.object.bank_account_id, style=style) %]</td> |
|
33 |
</tr> |
|
30 | 34 |
<tr> |
31 | 35 |
<th align="right">[% LxERP.t8('Chart') %]</th> |
32 | 36 |
<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> |
... | ... | |
35 | 39 |
<th align="right">[% LxERP.t8('Use for Factur-X/ZUGFeRD') %]</th> |
36 | 40 |
<td>[% L.checkbox_tag('object.use_for_zugferd', checked = SELF.object.use_for_zugferd, for_submit=1) %]</td> |
37 | 41 |
</tr> |
42 |
<tr> |
|
43 |
<th align="right">[% LxERP.t8('Use for Swiss QR-Bill') %]</th> |
|
44 |
<td>[% L.checkbox_tag('object.use_for_qrbill', checked = SELF.object.use_for_qrbill, for_submit=1) %]</td> |
|
45 |
</tr> |
|
38 | 46 |
<tr> |
39 | 47 |
<th align="right">[% LxERP.t8('Obsolete') %]</th> |
40 | 48 |
<td>[% L.checkbox_tag('object.obsolete', checked = SELF.object.obsolete, for_submit=1) %]</td> |
Auch abrufbar als: Unified diff
Swiss QR-Bill: Controller für BankAccount Datenfelder