X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Finquiry%2Fstock_movements.php;h=e9c05c49126a4fb98d04c5acc82fa1245f2eaa89;hb=1eb1440489a2ec9c1ff51473232daac941e727bb;hp=47b1ad7cc471d6899385395f1ffbfc3d4d7c6215;hpb=98d30c9a3e2f7af94530d1c0fdf000a93ab57e04;p=fa-stable.git diff --git a/inventory/inquiry/stock_movements.php b/inventory/inquiry/stock_movements.php index 47b1ad7c..e9c05c49 100644 --- a/inventory/inquiry/stock_movements.php +++ b/inventory/inquiry/stock_movements.php @@ -1,6 +1,14 @@ . +***********************************************************************/ $page_security = 2; $path_to_root="../.."; include_once($path_to_root . "/includes/session.inc"); @@ -19,6 +27,8 @@ if ($use_date_picker) page(_("Inventory Item Movement"), false, false, "", $js); //------------------------------------------------------------------------------------------------ +check_db_has_stock_items(_("There are no items defined in the system.")); + if(get_post('ShowMoves')) { $Ajax->activate('doc_tbl'); @@ -63,7 +73,7 @@ $result = db_query($sql, "could not query stock moves"); check_db_error("The stock movements for the selected criteria could not be retrieved",$sql); div_start('doc_tbl'); -start_table("$table_style width=70%"); +start_table($table_style); $th = array(_("Type"), _("#"), _("Reference"), _("Date"), _("Detail"), _("Quantity In"), _("Quantity Out"), _("Quantity On Hand")); @@ -173,16 +183,12 @@ while ($myrow = db_fetch($result)) } //end of while loop -// 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=5"); - qty_cell($total_in, false, $dec); - qty_cell($total_out, false, $dec); - qty_cell($after_qty, false, $dec); - end_row(); -//} +start_row("class='inquirybg'"); +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); div_end();