X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=manufacturing%2Fmanage%2Fbom_edit.php;h=84f60733f7d2a1b4e84874414efeb8b516abc525;hb=ab2c3a8ffecec2997c29b5a907d5b632c1b64af2;hp=3d71cbd4dd40d9b61c31aa7caf378c98bf73d1ea;hpb=f9451becdadf75c6e4feb459123f813100acb052;p=fa-stable.git diff --git a/manufacturing/manage/bom_edit.php b/manufacturing/manage/bom_edit.php index 3d71cbd4..84f60733 100644 --- a/manufacturing/manage/bom_edit.php +++ b/manufacturing/manage/bom_edit.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security = 9; $path_to_root="../.."; include_once($path_to_root . "/includes/session.inc"); @@ -20,6 +29,39 @@ simple_page_mode(true); $selected_component = $selected_id; //-------------------------------------------------------------------------------------------------- +//if (isset($_GET["NewItem"])) +//{ +// $_POST['stock_id'] = $_GET["NewItem"]; +//} +if (isset($_GET['stock_id'])) +{ + $_POST['stock_id'] = $_GET['stock_id']; + $selected_parent = $_GET['stock_id']; +} + +/* selected_parent could come from a post or a get */ +/*if (isset($_GET["selected_parent"])) +{ + $selected_parent = $_GET["selected_parent"]; +} +else if (isset($_POST["selected_parent"])) +{ + $selected_parent = $_POST["selected_parent"]; +} +*/ +/* selected_component could also come from a post or a get */ +/*if (isset($_GET["selected_component"])) +{ + $selected_component = $_GET["selected_component"]; +} +else +{ + $selected_component = get_post("selected_component", -1); +} +*/ + +//-------------------------------------------------------------------------------------------------- + function check_for_recursive_bom($ultimate_parent, $component_to_check) { @@ -75,7 +117,7 @@ div_start('bom'); qty_cell($myrow["quantity"], false, get_qty_dec($myrow["component"])); label_cell($myrow["units"]); edit_button_cell("Edit".$myrow['id'], _("Edit")); - edit_button_cell("Delete".$myrow['id'], _("Delete")); + delete_button_cell("Delete".$myrow['id'], _("Delete")); end_row(); } //END WHILE LIST LOOP @@ -174,17 +216,17 @@ if ($Mode == 'RESET') start_form(false, true); echo "
" . _("Select a manufacturable item:") . " "; -stock_bom_items_list('selected_parent', null, false, true); +stock_bom_items_list('stock_id', null, false, true); echo "

"; end_form(); -if (isset($_POST['_selected_parent_update'])) +if (isset($_POST['_stock_id_update'])) $Ajax->activate('_page_body'); //-------------------------------------------------------------------------------------------------- -if (get_post('selected_parent') != '') +if (get_post('stock_id') != '') { //Parent Item selected so display bom or edit component - $selected_parent = $_POST['selected_parent']; + $selected_parent = $_POST['stock_id']; if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') on_submit($selected_parent, $selected_id); //-------------------------------------------------------------------------------------- @@ -230,7 +272,7 @@ start_form(); echo ""; end_row(); } - hidden('selected_parent', $selected_parent); + hidden('stock_id', $selected_parent); locations_list_row(_("Location to Draw From:"), 'loc_code', null); workcenter_list_row(_("Work Centre Added:"), 'workcentre_added', null);