From: Moritz Bunkus Date: Mon, 5 Feb 2007 12:06:27 +0000 (+0000) Subject: Beim Schließen mehrerer Aufträge nicht nochmal die Werte parsen -- das geschieht... X-Git-Tag: release-2.4.2~150 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=e48dce4564ae92a79c429ddc934320be91eda16a;p=kivitendo-erp.git Beim Schließen mehrerer Aufträge nicht nochmal die Werte parsen -- das geschieht bereits in den .pls. Fix für Bug 529. --- diff --git a/SL/OE.pm b/SL/OE.pm index e12369ead..916d41bda 100644 --- a/SL/OE.pm +++ b/SL/OE.pm @@ -532,27 +532,6 @@ sub close_orders { my ($self, $myconfig, $form) = @_; - for my $i (1 .. $form->{rowcount}) { - - map { - $form->{"${_}_$i"} = - $form->parse_amount($myconfig, $form->{"${_}_$i"}) - } qw(qty ship); - if ($delete_oe_id) { - $form->{"orderitems_id_$i"} = ""; - } - - if ($form->{"qty_$i"}) { - - # set values to 0 if nothing entered - $form->{"discount_$i"} = - $form->parse_amount($myconfig, $form->{"discount_$i"}); - - $form->{"sellprice_$i"} = - $form->parse_amount($myconfig, $form->{"sellprice_$i"}); - } - } - # get ids from $form map { push @ids, $form->{"ordnumber_$_"} if $form->{"ordnumber_$_"} } (1 .. $form->{rowcount});