Einkaufspreis bei Einkaufsauftrag aus Verkaufsauftrag 2
authorG. Richardson <information@lx-office-hosting.de>
Mon, 15 Feb 2010 09:12:14 +0000 (10:12 +0100)
committerG. Richardson <information@lx-office-hosting.de>
Mon, 15 Feb 2010 09:12:14 +0000 (10:12 +0100)
Nachkommastellenformatierung der Einkaufspreise berücksichtigen

bin/mozilla/oe.pl

index d8f4415..da09648 100644 (file)
@@ -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}"});
     };
   };