From: Stephan Köhler Date: Fri, 30 Dec 2005 12:35:00 +0000 (+0000) Subject: Merge von 705 aus unstable: format_amount X-Git-Tag: release-2.2.0~62 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=cf3bfc270056e67b6ce0d5d152f0d7718ddb81f1;p=kivitendo-erp.git Merge von 705 aus unstable: format_amount Workaround für Rundungsfehler, die da heraus entstehen, dass keine $places beim Aufruf von $form->format_amount angegeben ist. Lösung: Es wird auf die Anzahl der Stellen gerundet, die eingegeben wurde. --- diff --git a/SL/Form.pm b/SL/Form.pm index a0fa96a2c..c5a30bf78 100644 --- a/SL/Form.pm +++ b/SL/Form.pm @@ -519,6 +519,12 @@ sub format_amount { $main::lxdebug->enter_sub(); my ($self, $myconfig, $amount, $places, $dash) = @_; + + #Workaround for $format_amount calls without $places + if (!defined $places){ + (my $dec) = ($amount =~ /\.(\d+)/); + $places = length $dec; + } if ($places =~ /\d/) { $amount = $self->round_amount($amount, $places);