Cleanup: removed all closing tags in php files.
[fa-stable.git] / inventory / inquiry / stock_status.php
index 459d75cd48d23592c00307ec35da885af54e056e..f5dde1309f6e7f8720d50e8f4515f26f0ec4676d 100644 (file)
@@ -13,12 +13,10 @@ $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");
@@ -38,8 +36,11 @@ start_form();
 if (!isset($_POST['stock_id']))
        $_POST['stock_id'] = get_global_stock_item();
 
-echo "<center> " . _("Item:"). " ";
-echo stock_costable_items_list('stock_id', $_POST['stock_id'], false, true);
+if (!$page_nested)
+{
+       echo "<center> " . _("Item:"). " ";
+       echo stock_costable_items_list('stock_id', $_POST['stock_id'], false, true);
+}
 echo "<br>";
 
 echo "<hr></center>";
@@ -118,4 +119,3 @@ div_end();
 end_form();
 end_page();
 
-?>