Revision 56f92e7f
Von Martin Helmling martin.helmling@octosoft.eu vor fast 9 Jahren hinzugefügt
bin/mozilla/ap.pl | ||
---|---|---|
# currencies
|
||
$form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
|
||
|
||
$form->{selectcurrency} = "";
|
||
map { my $quoted = H($_); $form->{selectcurrency} .= "<option value=\"${quoted}\">${quoted}\n" } $form->get_all_currencies(\%myconfig);
|
||
|
||
# vendors
|
bin/mozilla/ar.pl | ||
---|---|---|
# currencies
|
||
$form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
|
||
|
||
$form->{selectcurrency} = "";
|
||
map { $form->{selectcurrency} .= "<option>$_\n" } $form->get_all_currencies(\%myconfig);
|
||
|
||
# customers
|
Auch abrufbar als: Unified diff
Endloses Aneinanderhängen von Währungen unterbinden
Bei mehrfachem "Erneuern" werden alle Währungen nocheinmals angehängt.
Dies wird nun unterbunden