From: Moritz Bunkus Date: Fri, 11 Jan 2008 08:20:56 +0000 (+0000) Subject: creditlimit und creditremaining werden nicht mehr formatiert übergeben, sondern unfor... X-Git-Tag: release-2.6.0beta1~356 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=df870c64916661b7670b34e4e47d6c28f5d961ee;p=kivitendo-erp.git creditlimit und creditremaining werden nicht mehr formatiert übergeben, sondern unformatiert. --- diff --git a/bin/mozilla/oe.pl b/bin/mozilla/oe.pl index de1722e60..cb875d1c2 100644 --- a/bin/mozilla/oe.pl +++ b/bin/mozilla/oe.pl @@ -545,7 +545,7 @@ sub update { set_headings($form->{"id"} ? "edit" : "add"); - map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate creditlimit creditremaining) unless $recursive_call; + map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } qw(exchangerate) unless $recursive_call; $form->{update} = 1; $payment_id = $form->{payment_id} if $form->{payment_id}; @@ -1579,9 +1579,6 @@ sub invoice { map { $form->{"select$_"} = "" } ($form->{vc}, currency); - map { $form->{$_} = $form->parse_amount(\%myconfig, $form->{$_}) } - qw(creditlimit creditremaining); - $currency = $form->{currency}; &invoice_links; @@ -1951,9 +1948,6 @@ sub poso { qw(partnumber description unit); } - map { $form->{$_} = $form->format_amount(\%myconfig, $form->{$_}, 0, "0") } - qw(creditlimit creditremaining); - &update; $lxdebug->leave_sub();