X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Finquiry%2Fstock_status.php;h=331ea38321fc7290e7f22f166d3ebbafaaa20533;hb=939337a739e521fc7d69ab30a7d89177b51a3bb3;hp=ae0764567c14fbde263f5cf1f7caa619755d4cbf;hpb=c09be0dad6b05131e240349a375af7a4b7bf3444;p=fa-stable.git diff --git a/inventory/inquiry/stock_status.php b/inventory/inquiry/stock_status.php index ae076456..331ea383 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,7 +27,7 @@ include_once($path_to_root . "/includes/data_checks.inc"); include_once($path_to_root . "/inventory/includes/inventory_db.inc"); -if (isset($_POST['_stock_id_update'])) +if (list_updated('stock_id')) $Ajax->activate('status_tbl'); //---------------------------------------------------------------------------------------------------- @@ -40,15 +49,15 @@ 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; } $loc_details = get_loc_details($_POST['stock_id']); -div_start('status_tbl'); start_table($table_style); if ($kitset_or_service == true) @@ -70,46 +79,15 @@ while ($myrow = db_fetch($loc_details)) alt_table_row_color($k); - $sql = "SELECT Sum(".TB_PREF."sales_order_details.quantity-".TB_PREF."sales_order_details.qty_sent) AS DEM - FROM ".TB_PREF."sales_order_details, ".TB_PREF."sales_orders - WHERE ".TB_PREF."sales_orders.order_no = ".TB_PREF."sales_order_details.order_no - AND ".TB_PREF."sales_orders.from_stk_loc='" . $myrow["loc_code"] . "' - AND ".TB_PREF."sales_order_details.qty_sent < ".TB_PREF."sales_order_details.quantity - AND ".TB_PREF."sales_order_details.stk_code='" . $_POST['stock_id'] . "'"; - - $demand_result = db_query($sql,"Could not retreive demand for item"); - - if (db_num_rows($demand_result) == 1) - { - $demand_row = db_fetch_row($demand_result); - $demand_qty = $demand_row[0]; - } - else - { - $demand_qty =0; - } - + $demand_qty = get_demand_qty($_POST['stock_id'], $myrow["loc_code"]); + $demand_qty += get_demand_asm_qty($_POST['stock_id'], $myrow["loc_code"]); $qoh = get_qoh_on_date($_POST['stock_id'], $myrow["loc_code"]); if ($kitset_or_service == false) { - $sql = "SELECT Sum(".TB_PREF."purch_order_details.quantity_ordered - ".TB_PREF."purch_order_details.quantity_received) AS qoo - FROM ".TB_PREF."purch_order_details INNER JOIN ".TB_PREF."purch_orders ON ".TB_PREF."purch_order_details.order_no=".TB_PREF."purch_orders.order_no - WHERE ".TB_PREF."purch_orders.into_stock_location='" . $myrow["loc_code"] . "' - AND ".TB_PREF."purch_order_details.item_code='" . $_POST['stock_id'] . "'"; - $qoo_result = db_query($sql,"could not receive quantity on order for item"); - - if (db_num_rows($qoo_result) == 1) - { - $qoo_row = db_fetch_row($qoo_result); - $qoo = $qoo_row[0]; - } - else - { - $qoo = 0; - } - + $qoo = get_on_porder_qty($_POST['stock_id'], $myrow["loc_code"]); + $qoo += get_on_worder_qty($_POST['stock_id'], $myrow["loc_code"]); label_cell($myrow["location_name"]); qty_cell($qoh, false, $dec); qty_cell($myrow["reorder_level"], false, $dec);