X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Freorder_level.php;h=8eca2ef19a629c473162ed111f43569d3da2bc97;hb=f821f29324e963437132a3f6fa7c57fcef5c5f0e;hp=e2ace58ab33402975313a827e146e14092ca6544;hpb=5d3fcb9c57e586c20651594edf91a2dccb08df00;p=fa-stable.git diff --git a/inventory/reorder_level.php b/inventory/reorder_level.php index e2ace58a..8eca2ef1 100644 --- a/inventory/reorder_level.php +++ b/inventory/reorder_level.php @@ -21,8 +21,7 @@ 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")); +page(_($help_context = "Reorder Levels")); check_db_has_costable_items(_("There are no inventory items defined in the system (Purchased or manufactured items).")); @@ -39,14 +38,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); @@ -63,7 +62,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); @@ -73,8 +72,10 @@ $k=0; //row colour counter $result = get_loc_details($_POST['stock_id']); -if (@$_GET['popup']) - hidden('_tabs_sel', get_post('_tabs_sel')); +if ($page_nested) +{ + hidden('popup', @$_GET['popup']); +} while ($myrow = db_fetch($result)) { @@ -111,7 +112,4 @@ div_end(); submit_center('UpdateData', _("Update"), true, false, 'default'); end_form(); -if (!@$_GET['popup']) - end_page(@$_GET['popup'], false, false); - -?> +end_page();