Revision 843de783
Von Kivitendo Admin vor mehr als 10 Jahren hinzugefügt
bin/mozilla/bankaccounts.pl | ||
---|---|---|
73 | 73 |
|
74 | 74 |
my $account = $form->{account} && (ref $form->{account} eq 'HASH') ? $form->{account} : { }; |
75 | 75 |
|
76 |
if (any { !$account->{$_} } qw(account_number bank_code iban bic)) { |
|
76 |
if (any { !$account->{$_} } qw(name account_number bank_code iban bic)) {
|
|
77 | 77 |
bank_account_display_form('account' => $account, |
78 |
'error' => $locale->text('You have to fill in at least an account number, the bank code, the IBAN and the BIC.')); |
|
78 |
'error' => $locale->text('You have to fill in at least a name, an account number, the bank code, the IBAN and the BIC.'));
|
|
79 | 79 |
|
80 | 80 |
$main::lxdebug->leave_sub(); |
81 | 81 |
return; |
... | ... | |
115 | 115 |
my $href = build_std_url('action=bank_account_list'); |
116 | 116 |
|
117 | 117 |
my %column_defs = ( |
118 |
'name' => { 'text' => $locale->text('Name'), }, |
|
118 | 119 |
'account_number' => { 'text' => $locale->text('Account number'), }, |
119 | 120 |
'bank_code' => { 'text' => $locale->text('Bank code'), }, |
120 | 121 |
'bank' => { 'text' => $locale->text('Bank'), }, |
... | ... | |
122 | 123 |
'iban' => { 'text' => $locale->text('IBAN'), }, |
123 | 124 |
); |
124 | 125 |
|
125 |
my @columns = qw(account_number bank bank_code bic iban); |
|
126 |
my @columns = qw(name account_number bank bank_code bic iban);
|
|
126 | 127 |
|
127 | 128 |
foreach my $name (@columns) { |
128 | 129 |
my $sortdir = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir}; |
Auch abrufbar als: Unified diff
Bankkonten einen Namen geben
Damit kann man seinen Bankkonten einfache Namen geben, wie z.B.
"Tagegeld", damit man bei der Auswahl nicht immer genau auf die
Kontonummer achten muß.
Bei der Bankkontenauswahl in Dropdowns ist die Beschriftung jetzt im
Format:
Name - Kontonummer, BLZ, Bank
Der nächste Schritt wäre wahrscheinlich IBAN statt Kontonummer und BLZ
zu benutzen.