Merged bugfixes upto [0000072] (version 2.0.3).
[fa-stable.git] / manufacturing / inquiry / where_used_inquiry.php
index c68b42dfe43ecd3fdca0d3f8e08b4e67119b33f5..5abcc70e00c325aaf51d6caef61daaa58c10f5cc 100644 (file)
@@ -18,11 +18,14 @@ if (!isset($_POST['stock_id']))
 
 echo "<center>" . _("Select an item to display its parent item(s).") . "&nbsp;";
 stock_items_list('stock_id', $_POST['stock_id'], false, true);
-echo "<hr><center>";
+echo "<hr></center>";
 
 set_global_stock_item($_POST['stock_id']);
 
-if (isset($_POST['stock_id'])) 
+if (list_updated('stock_id')) 
+       $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
@@ -32,11 +35,12 @@ if (isset($_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%");
@@ -45,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);
@@ -55,9 +59,9 @@ if (isset($_POST['stock_id']))
                label_cell("<a href='$select_item'>" . $myrow["parent"]. " - " . $myrow["description"]. "</a>");
                label_cell($myrow["WorkCentreName"]);
                label_cell($myrow["location_name"]);
-               label_cell(qty_format($myrow["quantity"]));
+               qty_cell($myrow["quantity"], false, get_qty_dec($_POST['stock_id']));
                        end_row();
-                       
+
                $j++;
                If ($j == 12)
                {
@@ -69,6 +73,7 @@ if (isset($_POST['stock_id']))
 
         end_table();
        }
+       div_end();
 }
 
 end_form();