Falscher EK-Preis in Stammdaten-Berichte-Waren
authorNiclas Zimmermann <niclas@lx-office-hosting.de>
Thu, 11 Oct 2012 09:47:32 +0000 (11:47 +0200)
committerNiclas Zimmermann <niclas@lx-office-hosting.de>
Thu, 11 Oct 2012 09:47:32 +0000 (11:47 +0200)
Behebt Bug #2019

Durch ein format_amount mit Argument -2 kam es dazu, dass EK-Preise
falsch angezeigt wurden.

bin/mozilla/ic.pl

index 3324551..5edc385 100644 (file)
@@ -1331,11 +1331,11 @@ sub generate_report {
     $row->{description}->{link} = $edit_link;
 
     foreach (qw(sellprice listprice lastcost)) {
-      $row->{$_}{data}            = $form->format_amount(\%myconfig, $ref->{$_}, -2);
+      $row->{$_}{data}            = $form->format_amount(\%myconfig, $ref->{$_}, 2);
       $row->{"linetotal$_"}{data} = $form->format_amount(\%myconfig, $ref->{onhand} * $ref->{$_}, 2);
     }
     foreach ( @pricegroup_columns ) {
-      $row->{$_}{data}            = $form->format_amount(\%myconfig, $ref->{"$_"}, -2);
+      $row->{$_}{data}            = $form->format_amount(\%myconfig, $ref->{"$_"}, 2);
     };