Moved all SQL statements from PHP files into relevant *_db.inc files.
[fa-stable.git] / dimensions / inquiry / search_dimensions.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 'SA_DIMTRANSVIEW';
13 $path_to_root="../..";
14
15 include($path_to_root . "/includes/db_pager.inc");
16 include_once($path_to_root . "/includes/session.inc");
17
18 include_once($path_to_root . "/includes/date_functions.inc");
19 include_once($path_to_root . "/includes/ui.inc");
20 $js = "";
21 if ($use_popup_windows)
22         $js .= get_js_open_window(800, 500);
23 if ($use_date_picker)
24         $js .= get_js_date_picker();
25
26 if (isset($_GET['outstanding_only']) && $_GET['outstanding_only'])
27 {
28         $outstanding_only = 1;
29         page(_($help_context = "Search Outstanding Dimensions"), false, false, "", $js);
30 }
31 else
32 {
33         $outstanding_only = 0;
34         page(_($help_context = "Search Dimensions"), false, false, "", $js);
35 }
36 //-----------------------------------------------------------------------------------
37 // Ajax updates
38 //
39 if (get_post('SearchOrders'))
40 {
41         $Ajax->activate('dim_table');
42 } elseif (get_post('_OrderNumber_changed'))
43 {
44         $disable = get_post('OrderNumber') !== '';
45
46         $Ajax->addDisable(true, 'FromDate', $disable);
47         $Ajax->addDisable(true, 'ToDate', $disable);
48         $Ajax->addDisable(true, 'type_', $disable);
49         $Ajax->addDisable(true, 'OverdueOnly', $disable);
50         $Ajax->addDisable(true, 'OpenOnly', $disable);
51
52         if ($disable) {
53 //              $Ajax->addFocus(true, 'OrderNumber');
54                 set_focus('OrderNumber');
55         } else
56                 set_focus('type_');
57
58         $Ajax->activate('dim_table');
59 }
60
61 //--------------------------------------------------------------------------------------
62
63 if (isset($_GET["stock_id"]))
64         $_POST['SelectedStockItem'] = $_GET["stock_id"];
65
66 //--------------------------------------------------------------------------------------
67
68 start_form(false, false, $_SERVER['PHP_SELF'] ."?outstanding_only=$outstanding_only");
69
70 start_table("class='tablestyle_noborder'");
71 start_row();
72
73 ref_cells(_("Reference:"), 'OrderNumber', '',null, '', true);
74
75 number_list_cells(_("Type"), 'type_', null, 1, 2, _("All"));
76 date_cells(_("From:"), 'FromDate', '', null, 0, 0, -5);
77 date_cells(_("To:"), 'ToDate');
78
79 check_cells( _("Only Overdue:"), 'OverdueOnly', null);
80
81 if (!$outstanding_only)
82 {
83         check_cells( _("Only Open:"), 'OpenOnly', null);
84 }
85 else
86         $_POST['OpenOnly'] = 1;
87
88 submit_cells('SearchOrders', _("Search"), '', '', 'default');
89
90 end_row();
91 end_table();
92
93 $dim = get_company_pref('use_dimension');
94
95 function view_link($row) 
96 {
97         return get_dimensions_trans_view_str(ST_DIMENSION, $row["id"]);
98 }
99
100 function sum_dimension($row) 
101 {
102         return get_dimension_balance($row['id'], $_POST['FromDate'], $_POST['ToDate']); 
103 }
104
105 function is_closed($row)
106 {
107         return $row['closed'] ? _('Yes') : _('No');
108 }
109
110 function is_overdue($row)
111 {
112         return date_diff2(Today(), sql2date($row["due_date"]), "d") > 0;
113 }
114
115 function edit_link($row)
116 {
117         //return $row["closed"] ?  '' :
118         //      pager_link(_("Edit"),
119         //              "/dimensions/dimension_entry.php?trans_no=" . $row["id"], ICON_EDIT);
120         return pager_link(_("Edit"),
121                         "/dimensions/dimension_entry.php?trans_no=" . $row["id"], ICON_EDIT);
122 }
123
124 $sql = get_sql_for_search_dimensions($dim);
125
126 $cols = array(
127         _("#") => array('fun'=>'view_link'), 
128         _("Reference"), 
129         _("Name"), 
130         _("Type"), 
131         _("Date") =>'date',
132         _("Due Date") => array('name'=>'due_date', 'type'=>'date', 'ord'=>'asc'), 
133         _("Closed") => array('fun'=>'is_closed'),
134         _("Balance") => array('type'=>'amount', 'insert'=>true, 'fun'=>'sum_dimension'),
135         array('insert'=>true, 'fun'=>'edit_link')
136 );
137
138 if ($outstanding_only) {
139         $cols[_("Closed")] = 'skip';
140 }
141
142 $table =& new_db_pager('dim_tbl', $sql, $cols);
143 $table->set_marker('is_overdue', _("Marked dimensions are overdue."));
144
145 $table->width = "80%";
146
147 display_db_pager($table);
148
149 end_form();
150 end_page();
151
152 ?>