Removed unneeded double forms in scripts with db_pager. Missing $_POST variables.
[fa-stable.git] / dimensions / inquiry / search_dimensions.php
index 6f689ec94002d5ae7c4b86f71536f3f53641985e..1c63c2fc89171f7019a3accdedcf2db29378ec06 100644 (file)
@@ -1,8 +1,18 @@
 <?php
-
-$page_security = 2;
+/**********************************************************************
+    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_DIMTRANSVIEW';
 $path_to_root="../..";
 
+include($path_to_root . "/includes/db_pager.inc");
 include_once($path_to_root . "/includes/session.inc");
 
 include_once($path_to_root . "/includes/date_functions.inc");
@@ -43,7 +53,6 @@ if (get_post('SearchOrders'))
 //             $Ajax->addFocus(true, 'OrderNumber');
                set_focus('OrderNumber');
        } else
-//             $Ajax->addFocus(true, 'StockLocation');
                set_focus('type_');
 
        $Ajax->activate('dim_table');
@@ -56,7 +65,7 @@ if (isset($_GET["stock_id"]))
 
 //--------------------------------------------------------------------------------------
 
-start_form(false, true, $_SERVER['PHP_SELF'] ."?outstanding_only=" . $outstanding_only . SID);
+start_form(false, false, $_SERVER['PHP_SELF'] ."?outstanding_only=$outstanding_only");
 
 start_table("class='tablestyle_noborder'");
 start_row();
@@ -76,20 +85,61 @@ if (!$outstanding_only)
 else
        $_POST['OpenOnly'] = 1;
 
-submit_cells('SearchOrders', _("Search"), '', '', true);
+submit_cells('SearchOrders', _("Search"), '', '', 'default');
 
 end_row();
 end_table();
 
-end_form();
-
 $dim = get_company_pref('use_dimension');
 
-$sql = "SELECT * FROM ".TB_PREF."dimensions WHERE id > 0";
+function view_link($row) 
+{
+       return get_dimensions_trans_view_str(ST_DIMENSION, $row["id"]);
+}
+
+function is_closed($row)
+{
+       return $row['closed'] ? _('Yes') : _('No');
+}
+
+function sum_dimension($row) 
+{
+       $sql = "SELECT SUM(amount) FROM ".TB_PREF."gl_trans WHERE tran_date >= '" .
+               date2sql($_POST['FromDate']) . "' AND
+               tran_date <= '" . date2sql($_POST['ToDate']) . "' AND (dimension_id = " .
+               $row['id']." OR dimension2_id = " .$row['id'].")";
+       $res = db_query($sql, "Sum of transactions could not be calculated");
+       $row = db_fetch_row($res);
+
+       return $row[0];
+}
+
+function is_overdue($row)
+{
+       return date_diff2(Today(), sql2date($row["due_date"]), "d") > 0;
+}
+
+function edit_link($row)
+{
+       //return $row["closed"] ?  '' :
+       //      pager_link(_("Edit"),
+       //              "/dimensions/dimension_entry.php?trans_no=" . $row["id"], ICON_EDIT);
+       return pager_link(_("Edit"),
+                       "/dimensions/dimension_entry.php?trans_no=" . $row["id"], ICON_EDIT);
+}
+
+$sql = "SELECT dim.id,
+       dim.reference,
+       dim.name,
+       dim.type_,
+       dim.date_,
+       dim.due_date,
+       dim.closed
+       FROM ".TB_PREF."dimensions as dim WHERE id > 0";
 
 if (isset($_POST['OrderNumber']) && $_POST['OrderNumber'] != "")
 {
-       $sql .= " AND reference LIKE '%". $_POST['OrderNumber'] . "%'";
+       $sql .= " AND reference LIKE ".db_escape("%". $_POST['OrderNumber'] . "%");
 } else {
 
        if ($dim == 1)
@@ -102,93 +152,44 @@ if (isset($_POST['OrderNumber']) && $_POST['OrderNumber'] != "")
 
        if (isset($_POST['type_']) && ($_POST['type_'] > 0))
        {
-               $sql .= " AND type_=" . $_POST['type_'];
+               $sql .= " AND type_=".db_escape($_POST['type_']);
        }
 
        if (isset($_POST['OverdueOnly']))
        {
                $today = date2sql(Today());
 
-               $sql .= " AND due_date < '$today' ";
+               $sql .= " AND due_date < '$today'";
        }
 
        $sql .= " AND date_ >= '" . date2sql($_POST['FromDate']) . "'
                AND date_ <= '" . date2sql($_POST['ToDate']) . "'";
 }
-$sql .= " ORDER BY due_date";
-
-$result = db_query($sql,"could not query dimensions");
-
-div_start('dim_table');
-start_table("$table_style width=80%");
 
-if (!$outstanding_only)
-       $th = array(_("#"), _("Reference"), _("Name"), _("Type"), _("Date"),
-               _("Due Date"), _("Closed"), _("Balance"));
-else
-       $th = array(_("#"), _("Reference"), _("Name"), _("Type"), _("Date"),
-               _("Due Date"), _("Balance"));
-table_header($th);
-$j = 1;
-$k = 0;
-
-while ($myrow = db_fetch($result))
-{
-       $sql = "SELECT SUM(amount) FROM ".TB_PREF."gl_trans WHERE tran_date >= '" .
-               date2sql($_POST['FromDate']) . "' AND
-               tran_date <= '" . date2sql($_POST['ToDate']) . "' AND (dimension_id = " .
-               $myrow['id']." OR dimension2_id = " .$myrow['id'].")";
-       $res = db_query($sql, "Transactions could not be calculated");
-       $row = db_fetch_row($res);
-
-       if ($k == 1)
-       {
-               $row_text = "class='oddrow'";
-               $k = 0;
-       }
-       else
-       {
-               $row_text = "class='evenrow'";
-               $k++;
-       }
-
-       // check if it's an overdue work order
-       if (date_diff(Today(), sql2date($myrow["due_date"]), "d") > 0)
-       {
-               $row_text = "class='overduebg'";
-       }
-
-       start_row($row_text);
-
-       $mpage = $path_to_root . "/dimensions/dimension_entry.php?" . SID . "trans_no=" . $myrow["id"];
-
-       label_cell(get_dimensions_trans_view_str(systypes::dimension(), $myrow["id"]));
-       label_cell(get_dimensions_trans_view_str(systypes::dimension(), $myrow["id"], $myrow["reference"]));
-       label_cell($myrow["name"]);
-       label_cell($myrow["type_"]);
-       label_cell(sql2date($myrow["date_"]));
-       label_cell(sql2date($myrow["due_date"]));
-       if (!$outstanding_only)
-               label_cell(($myrow["closed"] ? _("Yes") : _("No")));
-       amount_cell($row[0]);
+$cols = array(
+       _("#") => array('fun'=>'view_link'), 
+       _("Reference"), 
+       _("Name"), 
+       _("Type"), 
+       _("Date") =>'date',
+       _("Due Date") => array('name'=>'due_date', 'type'=>'date', 'ord'=>'asc'), 
+       _("Closed") => array('fun'=>'is_closed'),
+       _("Balance") => array('type'=>'amount', 'insert'=>true, 'fun'=>'sum_dimension'),
+       array('insert'=>true, 'fun'=>'edit_link')
+);
+
+if ($outstanding_only) {
+       $cols[_("Closed")] = 'skip';
+}
 
-       label_cell($myrow["closed"] == 0 ? ("<a href='$mpage'>" . _("Edit") . "</a>") :'');
-       end_row();
+$table =& new_db_pager('dim_tbl', $sql, $cols);
+$table->set_marker('is_overdue', _("Marked dimensions are overdue."));
 
-       $j++;
-       If ($j == 12)
-       {
-               $j = 1;
-               table_header($th);
-       }
-       //end of page full new headings if
-}
-//end of while loop
+$table->width = "80%";
 
-end_table(1);
-div_end();
-//---------------------------------------------------------------------------------
+display_db_pager($table);
 
+end_form();
 end_page();
 
 ?>