Merged changes form main trunk since 2.1RC
[fa-stable.git] / manufacturing / inquiry / bom_cost_inquiry.php
index cedfe23b0bb3e7628195947fb0751ec689bd3fe5..4f62c5bf36ff024776c2a677d15e9d478e3d3d41 100644 (file)
@@ -15,6 +15,7 @@ include_once($path_to_root . "/includes/session.inc");
 
 page(_("Costed Bill Of Material Inquiry"));
 
+include_once($path_to_root . "/manufacturing/includes/manufacturing_ui.inc");
 include_once($path_to_root . "/includes/manufacturing.inc");
 include_once($path_to_root . "/includes/ui.inc");
 include_once($path_to_root . "/includes/banking.inc");
@@ -26,22 +27,22 @@ if (isset($_GET['stock_id']))
 {
        $_POST['stock_id'] = $_GET['stock_id'];
 } 
+if (list_updated('stock_id'))
+               $Ajax->activate('_page_body');
 
 start_form();
-echo "<center> " . _("Item:") . " ";   
-stock_bom_items_list('stock_id', $_POST['stock_id'], false, true);
-
-echo "<hr>";
-
-if ($_POST['stock_id'] != "")
-{
-       echo "<center>" . _("All Costs Are In:") . " " . get_company_currency() . "<br><br>";
+    start_table("class='tablestyle_noborder'");
+       start_row();
+       echo '<td>';
+       stock_bom_items_list('stock_id', null, false, true);
+       echo '</td>';
+       end_table();
+       
+       echo "<hr>";
+
+       display_heading(_("All Costs Are In:") . " " . get_company_currency());
        display_bom($_POST['stock_id']);
-} 
-else 
-{ //no item entered
-       echo "<p>" ._("Enter an item code above, to view the costed bill of material for.") . "</p>";
-}      
+
 end_form();
 
 end_page();