From: Niclas Zimmermann Date: Tue, 18 Sep 2012 15:24:36 +0000 (+0200) Subject: Wechselkurs im Zahlungsausgang X-Git-Tag: release-3.0.0beta1~234 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=3b9aee06c8b0246729a9ecabe642739304da95e2;p=kivitendo-erp.git Wechselkurs im Zahlungsausgang Im Zahlungsausgang wurde die Eingabe eines Wechselkurses ignoriert. --- diff --git a/bin/mozilla/cp.pl b/bin/mozilla/cp.pl index 885c88e62..a8caa526b 100644 --- a/bin/mozilla/cp.pl +++ b/bin/mozilla/cp.pl @@ -346,6 +346,9 @@ sub update { } } + if (!$form->{forex}) { # read exchangerate from input field (not hidden) + $form->{exchangerate} = $form->parse_amount(\%myconfig, $form->{exchangerate}); + } $form->{forex} = $form->check_exchangerate( \%myconfig, $form->{currency}, $form->{datepaid}, $buysell); $form->{exchangerate} = $form->{forex} if $form->{forex};