Revision d34ee913
Von Moritz Bunkus vor etwa 14 Jahren hinzugefügt
bin/mozilla/ar.pl | ||
---|---|---|
$form->{exchangerate} = $form->{forex} if $form->{forex};
|
||
|
||
# format amounts
|
||
$form->{exchangerate} =
|
||
$form->format_amount(\%myconfig, $form->{exchangerate});
|
||
|
||
if ($form->{exchangerate} == 0) {
|
||
$form->{exchangerate} = "";
|
||
}
|
||
|
||
$form->{creditlimit} =
|
||
$form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
|
||
$form->{creditremaining} =
|
||
$form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
|
||
$form->{exchangerate} = $form->{exchangerate} ? $form->format_amount(\%myconfig, $form->{exchangerate}) : '';
|
||
$form->{creditlimit} = $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0");
|
||
$form->{creditremaining} = $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0");
|
||
|
||
$exchangerate = qq|
|
||
<input type=hidden name=forex value=$form->{forex}>
|
Auch abrufbar als: Unified diff
Debitorenbuchungen: Nicht auf den bereits formatierten Wechselkurs prüfen.
Fix für Bug 1554.