*** empty log message ***
[fa-stable.git] / reporting / rep107.php
index 7baef1a4daadcb783c316f9f3a6aca3f6684494c..1288e5173e6a0fa90192d049ee7b7c606978bd90 100644 (file)
@@ -39,7 +39,7 @@ function print_invoices()
                $from = 0;
        if ($to == null)
                $to = 0;
-       $dec =user_price_dec();
+       $dec = user_price_dec();
 
        $fno = explode("-", $from);
        $tno = explode("-", $to);
@@ -104,10 +104,11 @@ function print_invoices()
                        $SubTotal = 0;
                        while ($myrow2=db_fetch($result))
                        {
-                       $Net = $sign * ((1 - $myrow2["discount_percent"]) * $myrow2["unit_price"] * $myrow2["quantity"]);
-                       $SubTotal += $Net;
+                               $Net = round($sign * ((1 - $myrow2["discount_percent"]) * $myrow2["unit_price"] * $myrow2["quantity"]),
+                                  user_price_dec());
+                               $SubTotal += $Net;
                        $DisplayPrice = number_format2($myrow2["unit_price"],$dec);
-                       $DisplayQty = number_format2($sign*$myrow2["quantity"],user_qty_dec());
+                       $DisplayQty = number_format2($sign*$myrow2["quantity"],get_qty_dec($myrow2['stock_id']));
                        $DisplayNet = number_format2($Net,$dec);
                        if ($myrow2["discount_percent"]==0)
                                        $DisplayDiscount ="";
@@ -158,7 +159,7 @@ function print_invoices()
                while ($tax_item = db_fetch($tax_items))
                {
                        $DisplayTax = number_format2($sign*$tax_item['amount'], $dec);
-                       
+
                        if ($tax_item['included_in_price'])
                        {
                                        $rep->TextCol(3, 7, $doc_Included . " " . $tax_item['tax_type_name'] .