{
$_POST['stock_id'] = $_GET['stock_id'];
}
+if (list_updated('stock_id'))
+ $Ajax->activate('_page_body');
start_form(false, true);
-echo "<center> " . _("Item:") . " ";
-//stock_bom_items_list('stock_id', $_POST['stock_id'], false, true);
-stock_bom_items_list('stock_id', null, 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();