From: G. Richardson Date: Mon, 15 Feb 2010 09:12:14 +0000 (+0100) Subject: Einkaufspreis bei Einkaufsauftrag aus Verkaufsauftrag 2 X-Git-Tag: release-2.6.1beta1~54 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=87d99e7285f69f6f51596162ad8d7b744c48d517;p=kivitendo-erp.git Einkaufspreis bei Einkaufsauftrag aus Verkaufsauftrag 2 Nachkommastellenformatierung der Einkaufspreise berücksichtigen --- diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index d8f4415a4..da09648ca 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -1763,7 +1763,7 @@ sub poso { # if purchase_order was generated from sales_order, use lastcost_$i as sellprice_$i if ( $form->{sales_order_to_purchase_order} ) { for my $i (1 .. $form->{rowcount}) { - $form->{"sellprice_${i}"} = $form->parse_amount(\%myconfig, $form->{"lastcost_${i}"}); + $form->{"sellprice_${i}"} = $form->format_amount(\%myconfig,$form->{"lastcost_${i}"}); }; };