X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Finquiry%2Fstock_movements.php;h=944cb437b3c95ae1b501f8bfa20de6002a553080;hb=c76c9607be58ce1d344f117556ac97da0dfcf218;hp=3f4332c578434e9d32a14d66bf2d71f9d2ee75e5;hpb=d67d5295b9342c011697ce4df325197e29898588;p=fa-stable.git diff --git a/inventory/inquiry/stock_movements.php b/inventory/inquiry/stock_movements.php index 3f4332c5..944cb437 100644 --- a/inventory/inquiry/stock_movements.php +++ b/inventory/inquiry/stock_movements.php @@ -76,8 +76,10 @@ if (!isset($before_qty_row[0])) } start_row("class='inquirybg'"); -label_cell(""._("Quantity on hand before") . " " . $_POST['AfterDate']."", "align=center colspan=7"); -qty_cell($before_qty); +label_cell(""._("Quantity on hand before") . " " . $_POST['AfterDate']."", "align=center colspan=5"); +label_cell(" ", "colspan=2"); +$dec = get_qty_dec($_POST['stock_id']); +qty_cell($before_qty, false, $dec); end_row(); $j = 1; @@ -97,12 +99,12 @@ while ($myrow = db_fetch($result)) if ($myrow["qty"] > 0) { - $quantity_formatted = number_format2($myrow["qty"],user_qty_dec()); + $quantity_formatted = number_format2($myrow["qty"], $dec); $total_in += $myrow["qty"]; } else { - $quantity_formatted = number_format2(-$myrow["qty"],user_qty_dec()); + $quantity_formatted = number_format2(-$myrow["qty"], $dec); $total_out += -$myrow["qty"]; } $after_qty += $myrow["qty"]; @@ -153,7 +155,7 @@ while ($myrow = db_fetch($result)) label_cell((($myrow["qty"] >= 0) ? $quantity_formatted : ""), "nowrap align=right"); label_cell((($myrow["qty"] < 0) ? $quantity_formatted : ""), "nowrap align=right"); - label_cell(number_format2($after_qty,user_qty_dec()), "nowrap align=right"); + qty_cell($after_qty, false, $dec); end_row(); $j++; If ($j == 12) @@ -165,13 +167,16 @@ while ($myrow = db_fetch($result)) } //end of while loop -if ($total_in != 0 || $total_out != 0) -{ +// 2008-06-14. Always write this. +//if ($total_in != 0 || $total_out != 0) +//{ start_row("class='inquirybg'"); - label_cell(""._("Quantity on hand after") . " " . $_POST['BeforeDate']."", "align=center colspan=7"); - qty_cell($after_qty); + label_cell(""._("Quantity on hand after") . " " . $_POST['BeforeDate']."", "align=center colspan=5"); + qty_cell($total_in, false, $dec); + qty_cell($total_out, false, $dec); + qty_cell($after_qty, false, $dec); end_row(); -} +//} end_table(1);