X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Finquiry%2Fstock_status.php;h=f409307517172f8e9ca7cadbdd996f775a59715e;hb=9145a040396e901eda3fa154dcfaaa66004e568c;hp=ee0e58716551cc5cfc0164cde0222a841ce91995;hpb=d2cc0860eccf02eaefcd90731ac3af141a841529;p=fa-stable.git diff --git a/inventory/inquiry/stock_status.php b/inventory/inquiry/stock_status.php index ee0e5871..f4093075 100644 --- a/inventory/inquiry/stock_status.php +++ b/inventory/inquiry/stock_status.php @@ -13,19 +13,17 @@ $page_security = 'SA_ITEMSSTATVIEW'; $path_to_root = "../.."; include_once($path_to_root . "/includes/session.inc"); -if (isset($_GET['stock_id'])){ +page(_($help_context = "Inventory Item Status"), @$_GET['popup']); + +if (isset($_GET['stock_id'])) $_POST['stock_id'] = $_GET['stock_id']; - page(_($help_context = "Inventory Item Status"), true); -} else { - page(_($help_context = "Inventory Item Status")); -} 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'); @@ -38,8 +36,11 @@ start_form(); if (!isset($_POST['stock_id'])) $_POST['stock_id'] = get_global_stock_item(); -echo "
" . _("Item:"). " "; -stock_items_list('stock_id', $_POST['stock_id'], false, true); +if (!$page_nested) +{ + echo "
" . _("Item:"). " "; + echo stock_costable_items_list('stock_id', $_POST['stock_id'], false, true); +} echo "
"; echo "
"; @@ -58,7 +59,7 @@ if (is_service($mb_flag)) $loc_details = get_loc_details($_POST['stock_id']); -start_table($table_style); +start_table(TABLESTYLE); if ($kitset_or_service == true) { @@ -118,4 +119,3 @@ div_end(); end_form(); end_page(); -?>