Cleanup: removed all closing tags in php files.
[fa-stable.git] / inventory / inquiry / stock_status.php
index 331ea38321fc7290e7f22f166d3ebbafaaa20533..f5dde1309f6e7f8720d50e8f4515f26f0ec4676d 100644 (file)
@@ -9,16 +9,14 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
 ***********************************************************************/
-$page_security = 2;
-$path_to_root="../..";
+$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(_("Inventory Item Status"), true);
-} else {
-       page(_("Inventory Item Status"));
-}
 
 include_once($path_to_root . "/includes/date_functions.inc");
 include_once($path_to_root . "/includes/ui.inc");
@@ -33,13 +31,16 @@ if (list_updated('stock_id'))
 
 check_db_has_stock_items(_("There are no items defined in the system."));
 
-start_form(false, true);
+start_form();
 
 if (!isset($_POST['stock_id']))
        $_POST['stock_id'] = get_global_stock_item();
 
-echo "<center> " . _("Item:"). " ";
-stock_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>";
@@ -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();
 
-?>