! -> Note
$ -> Affected files
+14-Jun-2008 Joe
+# Minor annoying layout bug in stock movements.
+$ /inventory/inquiry/stock_movements.php
+
14-Jun-2008 Joe Hunt
! The Customer Branch Sales Account now overrides the Item Sales Accounts if a Sales Account is here.
Can now be set to 'Use Item Sales Accounts', which is the first choice in list and default.
}
start_row("class='inquirybg'");
-label_cell("<b>"._("Quantity on hand before") . " " . $_POST['AfterDate']."</b>", "align=center colspan=7");
+label_cell("<b>"._("Quantity on hand before") . " " . $_POST['AfterDate']."</b>", "align=center colspan=5");
+label_cell(" ", "colspan=2");
qty_cell($before_qty);
end_row();
}
//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("<b>"._("Quantity on hand after") . " " . $_POST['BeforeDate']."</b>", "align=center colspan=7");
+ label_cell("<b>"._("Quantity on hand after") . " " . $_POST['BeforeDate']."</b>", "align=center colspan=5");
+ qty_cell($total_in);
+ qty_cell($total_out);
qty_cell($after_qty);
end_row();
-}
+//}
end_table(1);