From 25f4a73f4ee858e3dcd8373cb33b6fcac9c90617 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Thu, 12 Jan 2006 13:20:27 +0000 Subject: [PATCH] Fix fuer Bug 242, tax_$i Werte wurden nicht geparst. --- SL/AR.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SL/AR.pm b/SL/AR.pm index c2c81e630..e3e363191 100644 --- a/SL/AR.pm +++ b/SL/AR.pm @@ -74,6 +74,9 @@ sub post_transaction { 2); $form->{netamount} += $form->{"amount_$i"}; + + # parse tax_$i for later + $form->{"tax_$i"} = $form->parse_amount($myconfig, $form->{"tax_$i"}); } # this is for ar -- 2.20.1