Revision 09a8d687
Von Niclas Zimmermann vor etwa 12 Jahren hinzugefügt
bin/mozilla/ic.pl | ||
---|---|---|
1331 | 1331 |
$row->{description}->{link} = $edit_link; |
1332 | 1332 |
|
1333 | 1333 |
foreach (qw(sellprice listprice lastcost)) { |
1334 |
$row->{$_}{data} = $form->format_amount(\%myconfig, $ref->{$_}, -2);
|
|
1334 |
$row->{$_}{data} = $form->format_amount(\%myconfig, $ref->{$_}, 2); |
|
1335 | 1335 |
$row->{"linetotal$_"}{data} = $form->format_amount(\%myconfig, $ref->{onhand} * $ref->{$_}, 2); |
1336 | 1336 |
} |
1337 | 1337 |
foreach ( @pricegroup_columns ) { |
1338 |
$row->{$_}{data} = $form->format_amount(\%myconfig, $ref->{"$_"}, -2);
|
|
1338 |
$row->{$_}{data} = $form->format_amount(\%myconfig, $ref->{"$_"}, 2); |
|
1339 | 1339 |
}; |
1340 | 1340 |
|
1341 | 1341 |
|
Auch abrufbar als: Unified diff
Falscher EK-Preis in Stammdaten-Berichte-Waren
Behebt Bug #2019
Durch ein format_amount mit Argument -2 kam es dazu, dass EK-Preise
falsch angezeigt wurden.