Revision 4a095dc9
Von Udo Spallek vor etwa 19 Jahren hinzugefügt
bin/mozilla/io.pl | ||
---|---|---|
254 | 254 |
qq|<td><input name="description_$i" size=30 value="$form->{"description_$i"}"></td>|; |
255 | 255 |
} |
256 | 256 |
|
257 |
(my $qty_dec) = ($form->{"qty_$i"} =~ /\.(\d+)/); |
|
258 |
$qty_dec = length $qty_dec; |
|
259 |
|
|
257 | 260 |
$column_data{qty} = |
258 |
qq|<td align=right><input name="qty_$i" size=5 value=| |
|
259 |
. $form->format_amount(\%myconfig, $form->{"qty_$i"}, 0)
|
|
260 |
. qq|></td>|;
|
|
261 |
qq|<td align=right><input name="qty_$i" size=5 value=|.
|
|
262 |
$form->format_amount(\%myconfig, $form->{"qty_$i"}, $qty_dec)
|
|
263 |
.qq|></td>|;
|
|
261 | 264 |
$column_data{ship} = |
262 | 265 |
qq|<td align=right><input name="ship_$i" size=5 value=| |
263 | 266 |
. $form->format_amount(\%myconfig, $form->{"ship_$i"}) |
Auch abrufbar als: Unified diff
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