X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fcost_update.php;h=be6a19e64e898b0c4576d2a849bfce5fd31971c6;hb=5ac9ea61baac0cf298b07317051da51e781645b7;hp=157524dada10f9114924905bfb043d08853e6dda;hpb=53d942f2a0d20cce5e9c409c6485867ce0869e4d;p=fa-stable.git diff --git a/inventory/cost_update.php b/inventory/cost_update.php index 157524da..be6a19e6 100644 --- a/inventory/cost_update.php +++ b/inventory/cost_update.php @@ -19,17 +19,13 @@ include_once($path_to_root . "/includes/session.inc"); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/ui.inc"); include_once($path_to_root . "/includes/banking.inc"); -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 ($SysPrefs->use_popup_windows) + $js .= get_js_open_window(900, 500); +page(_($help_context = "Inventory Item Cost Update"), false, false, "", $js); //-------------------------------------------------------------------------------------- @@ -85,14 +81,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 +113,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') @@ -138,7 +133,4 @@ div_end(); submit_center('UpdateData', _("Update"), true, false, 'default'); end_form(); -if (!@$_GET['popup']) - end_page(@$_GET['popup'], false, false); - -?> +end_page();