X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Finquiry%2Fstock_status.php;h=b83c6038e4c63d6f448986d25f2798d1039f2421;hb=534d4b6a6b5e771f3b61e0fc65afd856760a6408;hp=9d4c4b99fcb8acea868327ee053b27ae8384e832;hpb=575fa4304beb3cd570a0352d52ee6c6aeb3864f7;p=fa-stable.git diff --git a/inventory/inquiry/stock_status.php b/inventory/inquiry/stock_status.php index 9d4c4b99..b83c6038 100644 --- a/inventory/inquiry/stock_status.php +++ b/inventory/inquiry/stock_status.php @@ -13,22 +13,21 @@ $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")); - } -} +$js = ""; +if ($SysPrefs->use_popup_windows && $SysPrefs->use_popup_search) + $js .= get_js_open_window(900, 500); + if (isset($_GET['stock_id'])) $_POST['stock_id'] = $_GET['stock_id']; + +page(_($help_context = "Inventory Item Status"), isset($_GET['stock_id']), false, "", $js); + 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"); include_once($path_to_root . "/includes/data_checks.inc"); include_once($path_to_root . "/inventory/includes/inventory_db.inc"); +include_once($path_to_root . "/includes/db/manufacturing_db.inc"); if (list_updated('stock_id')) $Ajax->activate('status_tbl'); @@ -36,15 +35,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(); -echo "
" . _("Item:"). " "; -if (!@$_GET['popup']) +if (!$page_nested) +{ + echo "
" . _("Item:"). " "; echo stock_costable_items_list('stock_id', $_POST['stock_id'], false, true); +} echo "
"; echo "
"; @@ -120,10 +120,6 @@ 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(); -?>