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