From 55909313a211bf8825dfe3626e40ecbd154cd375 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bernd=20Ble=C3=9Fmann?= Date: Wed, 9 Oct 2013 14:42:41 +0200 Subject: [PATCH] Einkaufspreis nicht formatieren bei Erzeugen eines Lieferantenauftrags aus Kundenauftrag Ist vermutlich kaputt gegangen, als der EK editierbar in die Auftragsmaske kam und somit dort schon formatiert drin stand. Fixt #2333. --- 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 3a35b8906..15bdfa4fb 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -1798,7 +1798,7 @@ sub poso { # also reset discounts if ( $form->{sales_order_to_purchase_order} ) { for my $i (1 .. $form->{rowcount}) { - $form->{"sellprice_${i}"} = $form->format_amount(\%myconfig,$form->{"lastcost_${i}"}); + $form->{"sellprice_${i}"} = $form->{"lastcost_${i}"}; $form->{"discount_${i}"} = 0; }; }; -- 2.20.1