Empty password is forbidden when creating new user account.
[fa-stable.git] / inventory / inquiry / stock_status.php
index 9b16d753396a44c634f5771061adcbce1292540a..b6965d2961c78602852f29db014ef7ac9d65eb5b 100644 (file)
@@ -1,16 +1,28 @@
 <?php
-
-$page_security = 2;
-$path_to_root="../..";
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
+$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(_("Inventory Item Status"), true);
-} else {
-       page(_("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");
@@ -18,122 +30,102 @@ include_once($path_to_root . "/includes/data_checks.inc");
 
 include_once($path_to_root . "/inventory/includes/inventory_db.inc");
 
+if (list_updated('stock_id')) 
+       $Ajax->activate('status_tbl');
 //----------------------------------------------------------------------------------------------------
 
 check_db_has_stock_items(_("There are no items defined in the system."));
 
-start_form(false, true);
+if (!@$_GET['popup'])
+       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 (!@$_GET['popup'])
+{
+       echo "<center> " . _("Item:"). " ";
+       echo stock_costable_items_list('stock_id', $_POST['stock_id'], false, true);
+}      
 echo "<br>";
 
-echo "<hr>";
+echo "<hr></center>";
 
 set_global_stock_item($_POST['stock_id']);
 
 $mb_flag = get_mb_flag($_POST['stock_id']);
 $kitset_or_service = false;
 
+div_start('status_tbl');
 if (is_service($mb_flag))
 {
-       display_note(_("This is a service and cannot have a stock holding, only the total quantity on outstanding sales orders is shown."));
+       display_note(_("This is a service and cannot have a stock holding, only the total quantity on outstanding sales orders is shown."), 0, 1);
        $kitset_or_service = true;
 }
 
 $loc_details = get_loc_details($_POST['stock_id']);
 
-start_table($table_style);
+start_table(TABLESTYLE);
 
 if ($kitset_or_service == true)
 {
        $th = array(_("Location"), _("Demand"));
-} 
-else 
+}
+else
 {
        $th = array(_("Location"), _("Quantity On Hand"), _("Re-Order Level"),
                _("Demand"), _("Available"), _("On Order"));
 }
 table_header($th);
+$dec = get_qty_dec($_POST['stock_id']);
 $j = 1;
 $k = 0; //row colour counter
 
-while ($myrow = db_fetch($loc_details)) 
+while ($myrow = db_fetch($loc_details))
 {
 
        alt_table_row_color($k);
 
-       $sql = "SELECT Sum(".TB_PREF."sales_order_details.quantity-".TB_PREF."sales_order_details.qty_invoiced) AS DEM
-               FROM ".TB_PREF."sales_order_details, ".TB_PREF."sales_orders
-               WHERE ".TB_PREF."sales_orders.order_no = ".TB_PREF."sales_order_details.order_no
-               AND ".TB_PREF."sales_orders.from_stk_loc='" . $myrow["loc_code"] . "'
-               AND ".TB_PREF."sales_order_details.qty_invoiced < ".TB_PREF."sales_order_details.quantity
-               AND ".TB_PREF."sales_order_details.stk_code='" . $_POST['stock_id'] . "'";
-
-       $demand_result = db_query($sql,"Could not retreive demand for item");
-
-       if (db_num_rows($demand_result) == 1)
-       {
-         $demand_row = db_fetch_row($demand_result);
-         $demand_qty =  $demand_row[0];
-       } 
-       else 
-       {
-         $demand_qty =0;
-       }
-
+       $demand_qty = get_demand_qty($_POST['stock_id'], $myrow["loc_code"]);
+       $demand_qty += get_demand_asm_qty($_POST['stock_id'], $myrow["loc_code"]);
 
        $qoh = get_qoh_on_date($_POST['stock_id'], $myrow["loc_code"]);
 
        if ($kitset_or_service == false)
        {
-               $sql = "SELECT Sum(".TB_PREF."purch_order_details.quantity_ordered - ".TB_PREF."purch_order_details.quantity_received) AS qoo
-                       FROM ".TB_PREF."purch_order_details INNER JOIN ".TB_PREF."purch_orders ON ".TB_PREF."purch_order_details.order_no=".TB_PREF."purch_orders.order_no
-                       WHERE ".TB_PREF."purch_orders.into_stock_location='" . $myrow["loc_code"] . "'
-                       AND ".TB_PREF."purch_order_details.item_code='" . $_POST['stock_id'] . "'";
-               $qoo_result = db_query($sql,"could not receive quantity on order for item");
-
-               if (db_num_rows($qoo_result) == 1)
-               {
-               $qoo_row = db_fetch_row($qoo_result);
-               $qoo =  $qoo_row[0];
-               } 
-               else 
-               {
-                       $qoo = 0;
-               }
-
+               $qoo = get_on_porder_qty($_POST['stock_id'], $myrow["loc_code"]);
+               $qoo += get_on_worder_qty($_POST['stock_id'], $myrow["loc_code"]);
                label_cell($myrow["location_name"]);
-               qty_cell($qoh);
-        qty_cell($myrow["reorder_level"]);
-        qty_cell($demand_qty);
-        qty_cell($qoh - $demand_qty);
-        qty_cell($qoo);
+               qty_cell($qoh, false, $dec);
+        qty_cell($myrow["reorder_level"], false, $dec);
+        qty_cell($demand_qty, false, $dec);
+        qty_cell($qoh - $demand_qty, false, $dec);
+        qty_cell($qoo, false, $dec);
         end_row();
 
-       } 
-       else 
+       }
+       else
        {
        /* It must be a service or kitset part */
                label_cell($myrow["location_name"]);
-               qty_cell($demand_qty);
+               qty_cell($demand_qty, false, $dec);
                end_row();
 
        }
        $j++;
        If ($j == 12)
        {
-               $j = 1; 
+               $j = 1;
                table_header($th);
        }
 }
 
 end_table();
-
-end_form();
-end_page();
+div_end();
+if (!@$_GET['popup'])
+{
+       end_form();
+       end_page(@$_GET['popup'], false, false);
+}      
 
 ?>