X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=manufacturing%2Fmanage%2Fbom_edit.php;h=45aaab40b2eb9d3d24867820d30535dd20593491;hb=11e485e4a7c5f12c9424713b7330815a9cc5e4ae;hp=84f60733f7d2a1b4e84874414efeb8b516abc525;hpb=a5242af68e65661edb7175412444dce536a7f311;p=fa-stable.git diff --git a/manufacturing/manage/bom_edit.php b/manufacturing/manage/bom_edit.php index 84f60733..45aaab40 100644 --- a/manufacturing/manage/bom_edit.php +++ b/manufacturing/manage/bom_edit.php @@ -9,8 +9,8 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -$page_security = 9; -$path_to_root="../.."; +$page_security = 'SA_BOM'; +$path_to_root = "../.."; include_once($path_to_root . "/includes/session.inc"); page(_("Bill Of Materials")); @@ -213,15 +213,17 @@ if ($Mode == 'RESET') //-------------------------------------------------------------------------------------------------- -start_form(false, true); +start_form(); -echo "
" . _("Select a manufacturable item:") . " "; -stock_bom_items_list('stock_id', null, false, true); -echo "

"; +start_form(false, true); +start_table("class='tablestyle_noborder'"); +stock_manufactured_items_list_row(_("Select a manufacturable item:"), 'stock_id', null, false, true); +if (list_updated('stock_id')) + $Ajax->activate('_page_body'); +end_table(); +br(); end_form(); -if (isset($_POST['_stock_id_update'])) - $Ajax->activate('_page_body'); //-------------------------------------------------------------------------------------------------- if (get_post('stock_id') != '') @@ -233,10 +235,8 @@ if (get_post('stock_id') != '') start_form(); display_bom_items($selected_parent); -//end_form(); //-------------------------------------------------------------------------------------- echo '
'; -// start_form(false, true); start_table($table_style2); @@ -252,6 +252,7 @@ start_form(); $myrow = db_fetch($result); $_POST['loc_code'] = $myrow["loc_code"]; + $_POST['component'] = $myrow["component"]; // by Tom Moulton $_POST['workcentre_added'] = $myrow["workcentre_added"]; $_POST['quantity'] = number_format2($myrow["quantity"], get_qty_dec($myrow["component"])); label_row(_("Component:"), $myrow["component"] . " - " . $myrow["description"]); @@ -281,7 +282,7 @@ start_form(); qty_row(_("Quantity:"), 'quantity', null, null, null, $dec); end_table(1); - submit_add_or_update_center($selected_id == -1, '', true); + submit_add_or_update_center($selected_id == -1, '', 'both'); end_form(); } // ----------------------------------------------------------------------------------