X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=manufacturing%2Finquiry%2Fwhere_used_inquiry.php;h=e7958dca6ec1bb2ce0e889d355fb3f01a7ec8e20;hb=c09be0dad6b05131e240349a375af7a4b7bf3444;hp=d7f8877de6a875d3fde4daf96dd08c0ba29b1793;hpb=089cd98e0008223e0418389a0f3cdd4b7e7f5bac;p=fa-stable.git diff --git a/manufacturing/inquiry/where_used_inquiry.php b/manufacturing/inquiry/where_used_inquiry.php index d7f8877d..e7958dca 100644 --- a/manufacturing/inquiry/where_used_inquiry.php +++ b/manufacturing/inquiry/where_used_inquiry.php @@ -8,7 +8,6 @@ page(_("Inventory Item Where Used Inquiry")); //include($path_to_root . "/includes/date_functions.inc"); include($path_to_root . "/includes/ui.inc"); -include($path_to_root . "/includes/data_checks.inc"); check_db_has_stock_items(_("There are no items defined in the system.")); @@ -19,25 +18,29 @@ if (!isset($_POST['stock_id'])) echo "
" . _("Select an item to display its parent item(s).") . " "; stock_items_list('stock_id', $_POST['stock_id'], false, true); -echo "
"; +echo "
"; set_global_stock_item($_POST['stock_id']); -if (isset($_POST['stock_id'])) +if (isset($_POST['_stock_id_update'])) + $Ajax->activate('usage_table'); + +if (isset($_POST['stock_id'])) { $sql = "SELECT ".TB_PREF."bom.*,".TB_PREF."stock_master.description,".TB_PREF."workcentres.name As WorkCentreName, ".TB_PREF."locations.location_name FROM ".TB_PREF."bom, ".TB_PREF."stock_master, ".TB_PREF."workcentres, ".TB_PREF."locations - WHERE ".TB_PREF."bom.parent = ".TB_PREF."stock_master.stock_id AND CAST(".TB_PREF."bom.workcentre_added AS UNSIGNED) = ".TB_PREF."workcentres.id + WHERE ".TB_PREF."bom.parent = ".TB_PREF."stock_master.stock_id AND ".TB_PREF."bom.workcentre_added = ".TB_PREF."workcentres.id AND ".TB_PREF."bom.loc_code = ".TB_PREF."locations.loc_code AND ".TB_PREF."bom.component='" . $_POST['stock_id'] . "'"; $result = db_query($sql,"No parent items were returned"); - if (db_num_rows($result) == 0) + div_start('usage_table'); + if (db_num_rows($result) == 0) { display_note(_("The selected item is not used in any BOMs.")); - } - else + } + else { start_table("$table_style width=80%"); @@ -46,7 +49,7 @@ if (isset($_POST['stock_id'])) table_header($th); $k = $j = 0; - while ($myrow = db_fetch($result)) + while ($myrow = db_fetch($result)) { alt_table_row_color($k); @@ -56,9 +59,9 @@ if (isset($_POST['stock_id'])) label_cell("" . $myrow["parent"]. " - " . $myrow["description"]. ""); label_cell($myrow["WorkCentreName"]); label_cell($myrow["location_name"]); - label_cell($myrow["quantity"]); + qty_cell($myrow["quantity"], false, get_qty_dec($_POST['stock_id'])); end_row(); - + $j++; If ($j == 12) { @@ -70,6 +73,7 @@ if (isset($_POST['stock_id'])) end_table(); } + div_end(); } end_form();