From 4a095dc9476ab88c6479e501219e6a2048142dad Mon Sep 17 00:00:00 2001 From: Udo Spallek Date: Fri, 18 Nov 2005 00:57:58 +0000 Subject: [PATCH] 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 --- bin/mozilla/io.pl | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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"}) -- 2.20.1