From 3b9aee06c8b0246729a9ecabe642739304da95e2 Mon Sep 17 00:00:00 2001 From: Niclas Zimmermann Date: Tue, 18 Sep 2012 17:24:36 +0200 Subject: [PATCH] Wechselkurs im Zahlungsausgang Im Zahlungsausgang wurde die Eingabe eines Wechselkurses ignoriert. --- bin/mozilla/cp.pl | 3 +++ 1 file changed, 3 insertions(+) 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}; -- 2.20.1