X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Freorder_level.php;h=6dfba5f0bdff8f36594c829434c97ff4db0ebb9c;hb=d93b5b3fa9986a43fc0d458e4a865894b84b9fa3;hp=bd517f251221a18e5a762835ad5c2177c36bc665;hpb=73c89ebb65f328e5d53f3a51b116e596403fa642;p=fa-stable.git diff --git a/inventory/reorder_level.php b/inventory/reorder_level.php index bd517f25..6dfba5f0 100644 --- a/inventory/reorder_level.php +++ b/inventory/reorder_level.php @@ -10,10 +10,11 @@ See the License here . ***********************************************************************/ $page_security = 'SA_REORDER'; -if (!@$_GET['popup']) - $path_to_root = ".."; -else + +if (@$_GET['page_level'] == 1) $path_to_root = "../.."; +else + $path_to_root = ".."; include_once($path_to_root . "/includes/session.inc"); include_once($path_to_root . "/includes/date_functions.inc"); @@ -21,8 +22,10 @@ include_once($path_to_root . "/includes/ui.inc"); include_once($path_to_root . "/includes/data_checks.inc"); include_once($path_to_root . "/inventory/includes/inventory_db.inc"); -if (!@$_GET['popup']) - page(_($help_context = "Reorder Levels")); +$js = ""; +if ($SysPrefs->use_popup_windows && $SysPrefs->use_popup_search) + $js .= get_js_open_window(900, 500); +page(_($help_context = "Reorder Levels"), false, false, "", $js); check_db_has_costable_items(_("There are no inventory items defined in the system (Purchased or manufactured items).")); @@ -37,13 +40,16 @@ if (list_updated('stock_id')) $Ajax->activate('reorders'); } //------------------------------------------------------------------------------------ -if (!@$_GET['popup']) - start_form(); + +$action = $_SERVER['PHP_SELF']; +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); @@ -60,7 +66,7 @@ div_end(); set_global_stock_item($_POST['stock_id']); div_start('reorders'); -start_table(TABLESTYLE, "width=30%"); +start_table(TABLESTYLE, "width='30%'"); $th = array(_("Location"), _("Quantity On Hand"), _("Re-Order Level")); table_header($th); @@ -70,12 +76,6 @@ $k=0; //row colour counter $result = get_loc_details($_POST['stock_id']); -if (@$_GET['popup']) -{ - hidden('_tabs_sel', get_post('_tabs_sel')); - hidden('popup', @$_GET['popup']); -} - while ($myrow = db_fetch($result)) { @@ -110,9 +110,5 @@ end_table(1); div_end(); submit_center('UpdateData', _("Update"), true, false, 'default'); -if (!@$_GET['popup']) -{ - end_form(); - end_page(@$_GET['popup'], false, false); -} -?> +end_form(); +end_page();