From 87d99e7285f69f6f51596162ad8d7b744c48d517 Mon Sep 17 00:00:00 2001 From: "G. Richardson" Date: Mon, 15 Feb 2010 10:12:14 +0100 Subject: [PATCH] Einkaufspreis bei Einkaufsauftrag aus Verkaufsauftrag 2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Nachkommastellenformatierung der Einkaufspreise berücksichtigen --- bin/mozilla/oe.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}"}); }; }; -- 2.20.1