X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fcost_update.php;h=8abab67198a3ccec976d9ea4c0a1c4d8a8e73f77;hb=0d191c7bff92b9a9bbc44dab48855477edb99ebf;hp=30e73c0c7066477744e630e5d08b742880c04f79;hpb=fa43a9c974d05b77517a0d8e3e510ef4a088632e;p=fa-stable.git diff --git a/inventory/cost_update.php b/inventory/cost_update.php index 30e73c0c..8abab671 100644 --- a/inventory/cost_update.php +++ b/inventory/cost_update.php @@ -23,13 +23,10 @@ include_once($path_to_root . "/includes/manufacturing.inc"); include_once($path_to_root . "/includes/data_checks.inc"); include_once($path_to_root . "/inventory/includes/inventory_db.inc"); -if (!@$_GET['popup']) -{ - $js = ""; - if ($use_popup_windows) - $js .= get_js_open_window(900, 500); - page(_($help_context = "Inventory Item Cost Update"), false, false, "", $js); -} +$js = ""; +if ($use_popup_windows) + $js .= get_js_open_window(900, 500); +page(_($help_context = "Inventory Item Cost Update"), false, false, "", $js); //-------------------------------------------------------------------------------------- @@ -85,14 +82,14 @@ if (list_updated('stock_id')) //----------------------------------------------------------------------------------------- $action = $_SERVER['PHP_SELF']; -if (@$_GET['popup']) +if ($page_nested) $action .= "?stock_id=".get_post('stock_id'); start_form(false, false, $action); if (!isset($_POST['stock_id'])) $_POST['stock_id'] = get_global_stock_item(); -if (!@$_GET['popup']) +if (!$page_nested) { echo "
" . _("Item:"). " "; //echo stock_costable_items_list('stock_id', $_POST['stock_id'], false, true); @@ -117,9 +114,8 @@ $_POST['overhead_cost'] = price_decimal_format($myrow["overhead_cost"], $dec3); amount_row(_("Standard Material Cost Per Unit"), "material_cost", null, "class='tableheader2'", null, $dec1); -if (@$_GET['popup']) +if ($page_nested) { - hidden('_tabs_sel', get_post('_tabs_sel')); hidden('popup', @$_GET['popup']); } if ($myrow["mb_flag"]=='M') @@ -139,4 +135,3 @@ submit_center('UpdateData', _("Update"), true, false, 'default'); end_form(); end_page(); -?>