X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Finquiry%2Fstock_status.php;h=8707396520864b407b3803a7fddc31998195bad8;hb=850b2dc645b7e16d6b2f5a5e10cac03d8956180c;hp=e9ffcf60f7b367338a9585aca92aebe10f0356d0;hpb=ccc6ec0bcb632b559ee068effa0b61f5b1b6276f;p=fa-stable.git diff --git a/inventory/inquiry/stock_status.php b/inventory/inquiry/stock_status.php index e9ffcf60..87073965 100644 --- a/inventory/inquiry/stock_status.php +++ b/inventory/inquiry/stock_status.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security = 2; $path_to_root="../.."; include_once($path_to_root . "/includes/session.inc"); @@ -18,11 +27,13 @@ include_once($path_to_root . "/includes/data_checks.inc"); include_once($path_to_root . "/inventory/includes/inventory_db.inc"); +if (list_updated('stock_id')) + $Ajax->activate('status_tbl'); //---------------------------------------------------------------------------------------------------- check_db_has_stock_items(_("There are no items defined in the system.")); -start_form(false, true); +start_form(); if (!isset($_POST['stock_id'])) $_POST['stock_id'] = get_global_stock_item(); @@ -31,16 +42,17 @@ echo "
" . _("Item:"). " "; stock_items_list('stock_id', $_POST['stock_id'], false, true); echo "
"; -echo "
"; +echo "
"; set_global_stock_item($_POST['stock_id']); $mb_flag = get_mb_flag($_POST['stock_id']); $kitset_or_service = false; +div_start('status_tbl'); if (is_service($mb_flag)) { - display_note(_("This is a service and cannot have a stock holding, only the total quantity on outstanding sales orders is shown.")); + display_note(_("This is a service and cannot have a stock holding, only the total quantity on outstanding sales orders is shown."), 0, 1); $kitset_or_service = true; } @@ -51,17 +63,18 @@ start_table($table_style); if ($kitset_or_service == true) { $th = array(_("Location"), _("Demand")); -} -else +} +else { $th = array(_("Location"), _("Quantity On Hand"), _("Re-Order Level"), _("Demand"), _("Available"), _("On Order")); } table_header($th); +$dec = get_qty_dec($_POST['stock_id']); $j = 1; $k = 0; //row colour counter -while ($myrow = db_fetch($loc_details)) +while ($myrow = db_fetch($loc_details)) { alt_table_row_color($k); @@ -79,8 +92,8 @@ while ($myrow = db_fetch($loc_details)) { $demand_row = db_fetch_row($demand_result); $demand_qty = $demand_row[0]; - } - else + } + else { $demand_qty =0; } @@ -100,39 +113,39 @@ while ($myrow = db_fetch($loc_details)) { $qoo_row = db_fetch_row($qoo_result); $qoo = $qoo_row[0]; - } - else + } + else { $qoo = 0; } label_cell($myrow["location_name"]); - qty_cell($qoh); - qty_cell($myrow["reorder_level"]); - qty_cell($demand_qty); - qty_cell($qoh - $demand_qty); - qty_cell($qoo); + qty_cell($qoh, false, $dec); + qty_cell($myrow["reorder_level"], false, $dec); + qty_cell($demand_qty, false, $dec); + qty_cell($qoh - $demand_qty, false, $dec); + qty_cell($qoo, false, $dec); end_row(); - } - else + } + else { /* It must be a service or kitset part */ label_cell($myrow["location_name"]); - qty_cell($demand_qty); + qty_cell($demand_qty, false, $dec); end_row(); } $j++; If ($j == 12) { - $j = 1; + $j = 1; table_header($th); } } end_table(); - +div_end(); end_form(); end_page();