Revision f8d30ef9
Von Waldemar Toews vor fast 8 Jahren hinzugefügt
bin/mozilla/sepa.pl | ||
---|---|---|
34 | 34 |
$form->error($locale->text('You have not added bank accounts yet.')); |
35 | 35 |
} |
36 | 36 |
|
37 |
my $show_empty = scalar @{ $bank_accounts } > 1; |
|
37 | 38 |
my $invoices = SL::SEPA->retrieve_open_invoices(vc => $vc); |
38 | 39 |
|
39 | 40 |
if (!scalar @{ $invoices }) { |
... | ... | |
71 | 72 |
{ 'INVOICES' => $invoices, |
72 | 73 |
'BANK_ACCOUNTS' => $bank_accounts, |
73 | 74 |
'vc' => $vc, |
75 |
'show_empty' => $show_empty, |
|
74 | 76 |
}); |
75 | 77 |
|
76 | 78 |
$main::lxdebug->leave_sub(); |
templates/webpages/sepa/bank_transfer_add.html | ||
---|---|---|
24 | 24 |
[% L.select_tag('bank_account', |
25 | 25 |
BANK_ACCOUNTS, |
26 | 26 |
title_key='displayable_name', |
27 |
with_empty=0,
|
|
27 |
with_empty=show_empty,
|
|
28 | 28 |
style='width:450px', |
29 | 29 |
) %] |
30 | 30 |
</p> |
Auch abrufbar als: Unified diff
SEPA Buchungen mit mehreren, eigenen Bankkonten.
Vor dem Laden der Maske prüfen, ob es mehrere Bankkonten gibt, dann
leeren Element einfügen. Prüfung für Bankkonten und die Erweiterung für
ComboBox eingebaut.