Cleanup in popup lists related files.
[fa-stable.git] / inventory / inquiry / stock_list.php
index 3aa9ec69467e15d4a6b3b6cda333b96553d09760..22884885081aadf82a9fcc8ae54da7bd7aa4e874 100644 (file)
@@ -18,6 +18,7 @@ $page_security = "SA_ITEM";
 $path_to_root = "../..";
 include_once($path_to_root . "/includes/session.inc");
 include_once($path_to_root . "/includes/ui.inc");
+include_once($path_to_root . "/inventory/includes/db/items_db.inc");
 
 $mode = get_company_pref('no_item_list');
 if ($mode != 0)
@@ -27,18 +28,10 @@ else
 
 page(_($help_context = "Items"), true, false, "", $js);
 
-if (isset($SysPrefs->max_rows_in_search))
-       $limit = $SysPrefs->max_rows_in_search;
-else
-       $limit = 10;
-
-// Activate Ajax on form submit
 if(get_post("search")) {
   $Ajax->activate("item_tbl");
 }
 
-// BEGIN: Filter form. Use query string so the client_id will not disappear
-// after ajax form post.
 start_form(false, false, $_SERVER['PHP_SELF'] . "?" . $_SERVER['QUERY_STRING']);
 
 start_table(TABLESTYLE_NOBORDER);
@@ -53,70 +46,19 @@ end_row();
 end_table();
 
 end_form();
-// END: Filter form
 
-// BEGIN: Link to add new item
-// hyperlink_params($path_to_root . "/inventory/manage/items.php", _("Add new"), "popup=1");
-// END: Link to add new item
-
-// BEGIN: Item list
 div_start("item_tbl");
-
 start_table(TABLESTYLE);
 
 $th = array("", _("Item Code"), _("Description"), _("Category"));
-
 table_header($th);
 
-// Query based on function sales_items_list in includes/ui/ui_lists.inc.
-$sql = "SELECT COUNT(i.item_code) AS kit, i.item_code, i.description, c.description category
-  FROM ".TB_PREF."stock_master s, ".TB_PREF."item_codes i
-  LEFT JOIN ".TB_PREF."stock_category c
-    ON i.category_id=c.category_id
-  WHERE i.stock_id=s.stock_id
-    AND !i.inactive AND !s.inactive
-    AND (  i.item_code LIKE " . db_escape("%" . get_post("description"). "%") . " OR 
-         i.description LIKE " . db_escape("%" . get_post("description"). "%") . " OR 
-         c.description LIKE " . db_escape("%" . get_post("description"). "%") . ") ";
-
-$type = "";
-if (isset($_GET['type'])) {
-  $type = $_GET['type'];
-}
-
-switch ($type) {
-  case "sales":
-    $sql .= " AND !s.no_sale AND mb_flag <> 'F'";
-    break;
-  case "manufactured":
-    $sql .= " AND mb_flag = 'M'";
-    break;
-  case "purchasable":
-    $sql .= " AND NOT no_purchase AND mb_flag <> 'F' AND i.item_code=i.stock_id";
-    break;
-  case "costable":
-    $sql .= " AND mb_flag <> 'D' AND mb_flag <> 'F' AND  i.item_code=i.stock_id";
-    break;
-  case "component":
-       $parent = $_GET['parent'];
-    $sql .= " AND  i.item_code=i.stock_id AND i.stock_id <> '$parent' AND mb_flag <> 'F' ";
-    break;
-  case "kits":
-       $sql .= " AND !i.is_foreign AND i.item_code!=i.stock_id AND mb_flag <> 'F'";
-       break;
-  case "all":
-    $sql .= " AND mb_flag <> 'F' AND i.item_code=i.stock_id";
-    // NOTHING TO DO.
-    break;
-}
-
-$sql .= " GROUP BY i.item_code ORDER BY i.description LIMIT 0, $limit"; // We only display 10 items.
-
-$result = db_query($sql, "Failed in retreiving item list.");
-
-$k = 0; //row colour counter
+$k = 0;
 $name = $_GET["client_id"];
-while ($myrow = db_fetch_assoc($result)) {
+$result = get_items_search(get_post("description"), @$_GET['type']);
+
+while ($myrow = db_fetch_assoc($result))
+{
        alt_table_row_color($k);
        $value = $myrow['item_code'];
        if ($mode != 0) {
@@ -135,6 +77,4 @@ while ($myrow = db_fetch_assoc($result)) {
 end_table(1);
 
 div_end();
-// END: Item list
-
 end_page(true);