PHP 7.X produces A non-numeric value encountered in \includes\date_functions.inc...
[fa-stable.git] / dimensions / inquiry / search_dimensions.php
index 49c2dc0b30c17e6de29a8e85459370279fc9ef54..6d23976fb9cb008a7f4c0de8dd0b99d399aca266 100644 (file)
@@ -18,9 +18,9 @@ include_once($path_to_root . "/includes/session.inc");
 include_once($path_to_root . "/includes/date_functions.inc");
 include_once($path_to_root . "/includes/ui.inc");
 $js = "";
-if ($use_popup_windows)
+if ($SysPrefs->use_popup_windows)
        $js .= get_js_open_window(800, 500);
-if ($use_date_picker)
+if (user_use_date_picker())
        $js .= get_js_date_picker();
 
 if (isset($_GET['outstanding_only']) && $_GET['outstanding_only'])
@@ -50,7 +50,6 @@ if (get_post('SearchOrders'))
        $Ajax->addDisable(true, 'OpenOnly', $disable);
 
        if ($disable) {
-//             $Ajax->addFocus(true, 'OrderNumber');
                set_focus('OrderNumber');
        } else
                set_focus('type_');
@@ -67,7 +66,7 @@ if (isset($_GET["stock_id"]))
 
 start_form(false, false, $_SERVER['PHP_SELF'] ."?outstanding_only=$outstanding_only");
 
-start_table("class='tablestyle_noborder'");
+start_table(TABLESTYLE_NOBORDER);
 start_row();
 
 ref_cells(_("Reference:"), 'OrderNumber', '',null, '', true);
@@ -114,14 +113,12 @@ function is_overdue($row)
 
 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 = get_sql_for_search_dimensions($dim);
+$sql = get_sql_for_search_dimensions($dim, $_POST['FromDate'], $_POST['ToDate'],
+       $_POST['OrderNumber'], $_POST['type_'], check_value('OpenOnly'), check_value('OverdueOnly'));
 
 $cols = array(
        _("#") => array('fun'=>'view_link'), 
@@ -149,4 +146,3 @@ display_db_pager($table);
 end_form();
 end_page();
 
-?>