From: Udo Spallek Date: Fri, 18 Nov 2005 00:57:58 +0000 (+0000) Subject: Bugfix: Angebot (Auch bei Rechnung): Menge mit Kommastelle, z.B 6,876, beim X-Git-Tag: release-2.4.0^2~447 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=4a095dc9476ab88c6479e501219e6a2048142dad;p=kivitendo-erp.git Bugfix: Angebot (Auch bei Rechnung): Menge mit Kommastelle, z.B 6,876, beim Erneuern wird die Menge gerundet und ohne Nachkommastelle angezeigt. In der Vorgaengerversion ging das noch. Der Positions-Preis wird korrekt berechnet, nur die Anzeige der Menge scheint das Problem zu sein --- diff --git a/bin/mozilla/io.pl b/bin/mozilla/io.pl index 0fe78fd2a..c0ab3dc9a 100644 --- a/bin/mozilla/io.pl +++ b/bin/mozilla/io.pl @@ -254,10 +254,13 @@ sub display_row { qq||; } + (my $qty_dec) = ($form->{"qty_$i"} =~ /\.(\d+)/); + $qty_dec = length $qty_dec; + $column_data{qty} = - qq|format_amount(\%myconfig, $form->{"qty_$i"}, 0) - . qq|>|; + qq|format_amount(\%myconfig, $form->{"qty_$i"}, $qty_dec) + .qq|>|; $column_data{ship} = qq|format_amount(\%myconfig, $form->{"ship_$i"})