Revision d34ee913
Von Moritz Bunkus vor fast 14 Jahren hinzugefügt
bin/mozilla/ar.pl | ||
---|---|---|
271 | 271 |
$form->{exchangerate} = $form->{forex} if $form->{forex}; |
272 | 272 |
|
273 | 273 |
# format amounts |
274 |
$form->{exchangerate} = |
|
275 |
$form->format_amount(\%myconfig, $form->{exchangerate}); |
|
276 |
|
|
277 |
if ($form->{exchangerate} == 0) { |
|
278 |
$form->{exchangerate} = ""; |
|
279 |
} |
|
280 |
|
|
281 |
$form->{creditlimit} = |
|
282 |
$form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0"); |
|
283 |
$form->{creditremaining} = |
|
284 |
$form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0"); |
|
274 |
$form->{exchangerate} = $form->{exchangerate} ? $form->format_amount(\%myconfig, $form->{exchangerate}) : ''; |
|
275 |
$form->{creditlimit} = $form->format_amount(\%myconfig, $form->{creditlimit}, 0, "0"); |
|
276 |
$form->{creditremaining} = $form->format_amount(\%myconfig, $form->{creditremaining}, 0, "0"); |
|
285 | 277 |
|
286 | 278 |
$exchangerate = qq| |
287 | 279 |
<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.