X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Finquiry%2Fstock_status.php;h=146422fa6bfc5772fa8a924b0f364314901806e9;hb=8e299fb1bbc9113b4efdcb6973239041129c47cf;hp=b6965d2961c78602852f29db014ef7ac9d65eb5b;hpb=fc194525b79ba5818c6adfb95f805714236768c1;p=fa-stable.git diff --git a/inventory/inquiry/stock_status.php b/inventory/inquiry/stock_status.php index b6965d29..146422fa 100644 --- a/inventory/inquiry/stock_status.php +++ b/inventory/inquiry/stock_status.php @@ -13,16 +13,11 @@ $page_security = 'SA_ITEMSSTATVIEW'; $path_to_root = "../.."; include_once($path_to_root . "/includes/session.inc"); -if (!@$_GET['popup']) -{ - if (isset($_GET['stock_id'])){ - page(_($help_context = "Inventory Item Status"), true); - } else { - page(_($help_context = "Inventory Item Status")); - } -} +page(_($help_context = "Inventory Item Status")); + if (isset($_GET['stock_id'])) $_POST['stock_id'] = $_GET['stock_id']; + include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/ui.inc"); include_once($path_to_root . "/includes/manufacturing.inc"); @@ -36,17 +31,16 @@ if (list_updated('stock_id')) check_db_has_stock_items(_("There are no items defined in the system.")); -if (!@$_GET['popup']) - start_form(); +start_form(); 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); -} +} echo "
"; echo "
"; @@ -122,10 +116,7 @@ while ($myrow = db_fetch($loc_details)) end_table(); div_end(); -if (!@$_GET['popup']) -{ - end_form(); - end_page(@$_GET['popup'], false, false); -} +end_form(); +end_page(); ?>