From: Philip Reetz Date: Wed, 25 Jan 2006 07:28:03 +0000 (+0000) Subject: Rabatt wurde fehlerhaft uebernommen beim Umwandeln von Angebot in Auftrag. Fixes... X-Git-Tag: release-2.4.0^2~358 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=8c99664a860b4aeef74c2311121134e8f01a69e2;p=kivitendo-erp.git Rabatt wurde fehlerhaft uebernommen beim Umwandeln von Angebot in Auftrag. Fixes Bug#270 --- diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index e05d0130a..b16352fd6 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -231,9 +231,10 @@ sub prepare_order { } for my $i (1 .. $form->{rowcount}) { - $form->{"discount_$i"} = - $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100); - + if ($form->{id}) { + $form->{"discount_$i"} = + $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100); + } ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/); $dec = length $dec; $decimalplaces = ($dec > 2) ? $dec : 2;