From 19be3a57dbffa4a66be9f1cffdf5fc2a18332567 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Fri, 5 Jan 2007 09:49:52 +0000 Subject: [PATCH] =?utf8?q?Umwandlung=20von=20Kunden-=20in=20Lieferantenauf?= =?utf8?q?tag=20und=20umgekehrt:=20prepare=5Forder=20erwartet,=20dass=20di?= =?utf8?q?e=20Zahlen=20bereits=20geparst=20sind.=20Fix=20f=C3=BCr=20Bug=20?= =?utf8?q?476.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- bin/mozilla/oe.pl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index b99127866..72093443d 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -2481,6 +2481,13 @@ sub poso { map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued customer vendor creditlimit creditremaining discount tradediscount oldinvtotal); + for $i (1 .. $form->{rowcount}) { + map({ $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, + $form->{"${_}_${i}"}) + if ($form->{"${_}_${i}"}) } + qw(ship qty sellprice listprice basefactor)); + } + &order_links; &prepare_order; -- 2.20.1