Merged changes form main trunk (2.2.8, 2.2.9)
[fa-stable.git] / sales / inquiry / sales_orders_view.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 $path_to_root = "../..";
13
14 include($path_to_root . "/includes/db_pager.inc");
15 include($path_to_root . "/includes/session.inc");
16 include($path_to_root . "/sales/includes/sales_ui.inc");
17 include_once($path_to_root . "/reporting/includes/reporting.inc");
18
19 $page_security = 'SA_SALESTRANSVIEW';
20
21 set_page_security( @$_POST['order_view_mode'],
22         array(  'OutstandingOnly' => 'SA_SALESDELIVERY',
23                         'InvoiceTemplates' => 'SA_SALESINVOICE'),
24         array(  'OutstandingOnly' => 'SA_SALESDELIVERY',
25                         'InvoiceTemplates' => 'SA_SALESINVOICE')
26 );
27
28 $js = "";
29 if ($use_popup_windows)
30         $js .= get_js_open_window(900, 600);
31 if ($use_date_picker)
32         $js .= get_js_date_picker();
33
34 if (get_post('type'))
35         $trans_type = $_POST['type'];
36 elseif (isset($_GET['type']) && $_GET['type'] == ST_SALESQUOTE)
37         $trans_type = ST_SALESQUOTE;
38 else
39         $trans_type = ST_SALESORDER;
40
41 if ($trans_type == ST_SALESORDER)
42 {
43         if (isset($_GET['OutstandingOnly']) && ($_GET['OutstandingOnly'] == true))
44         {
45                 $_POST['order_view_mode'] = 'OutstandingOnly';
46                 $_SESSION['page_title'] = _($help_context = "Search Outstanding Sales Orders");
47         }
48         elseif (isset($_GET['InvoiceTemplates']) && ($_GET['InvoiceTemplates'] == true))
49         {
50                 $_POST['order_view_mode'] = 'InvoiceTemplates';
51                 $_SESSION['page_title'] = _($help_context = "Search Template for Invoicing");
52         }
53         elseif (isset($_GET['DeliveryTemplates']) && ($_GET['DeliveryTemplates'] == true))
54         {
55                 $_POST['order_view_mode'] = 'DeliveryTemplates';
56                 $_SESSION['page_title'] = _($help_context = "Select Template for Delivery");
57         }
58         elseif (!isset($_POST['order_view_mode']))
59         {
60                 $_POST['order_view_mode'] = false;
61                 $_SESSION['page_title'] = _($help_context = "Search All Sales Orders");
62         }
63 }
64 else
65 {
66         $_POST['order_view_mode'] = "Quotations";
67         $_SESSION['page_title'] = _($help_context = "Search All Sales Quotations");
68 }
69 page($_SESSION['page_title'], false, false, "", $js);
70
71 if (isset($_GET['selected_customer']))
72 {
73         $selected_customer = $_GET['selected_customer'];
74 }
75 elseif (isset($_POST['selected_customer']))
76 {
77         $selected_customer = $_POST['selected_customer'];
78 }
79 else
80         $selected_customer = -1;
81
82 //---------------------------------------------------------------------------------------------
83
84 if (isset($_POST['SelectStockFromList']) && ($_POST['SelectStockFromList'] != "") &&
85         ($_POST['SelectStockFromList'] != ALL_TEXT))
86 {
87         $selected_stock_item = $_POST['SelectStockFromList'];
88 }
89 else
90 {
91         unset($selected_stock_item);
92 }
93 //---------------------------------------------------------------------------------------------
94 //      Query format functions
95 //
96 function check_overdue($row)
97 {
98         global $trans_type;
99         if ($trans_type == ST_SALESQUOTE)
100                 return (date1_greater_date2(Today(), sql2date($row['delivery_date'])));
101         else
102                 return ($row['type'] == 0
103                         && date1_greater_date2(Today(), sql2date($row['ord_date']))
104                         && ($row['TotDelivered'] < $row['TotQuantity']));
105 }
106
107 function view_link($dummy, $order_no)
108 {
109         global $trans_type;
110         return  get_customer_trans_view_str($trans_type, $order_no);
111 }
112
113 function prt_link($row)
114 {
115         global $trans_type;
116         return print_document_link($row['order_no'], _("Print"), true, $trans_type, ICON_PRINT);
117 }
118
119 function edit_link($row) 
120 {
121         global $trans_type;
122         $modify = ($trans_type == ST_SALESORDER ? "ModifyOrderNumber" : "ModifyQuotationNumber");
123   return pager_link( _("Edit"),
124     "/sales/sales_order_entry.php?$modify=" . $row['order_no'], ICON_EDIT);
125 }
126
127 function dispatch_link($row)
128 {
129         global $trans_type;
130         if ($trans_type == ST_SALESORDER)
131                 return pager_link( _("Dispatch"),
132                         "/sales/customer_delivery.php?OrderNumber=" .$row['order_no'], ICON_DOC);
133         else            
134                 return pager_link( _("Sales Order"),
135                         "/sales/sales_order_entry.php?OrderNumber=" .$row['order_no'], ICON_DOC);
136 }
137
138 function invoice_link($row)
139 {
140         global $trans_type;
141         if ($trans_type == ST_SALESORDER)
142                 return pager_link( _("Invoice"),
143                         "/sales/sales_order_entry.php?NewInvoice=" .$row["order_no"], ICON_DOC);
144         else
145                 return '';
146 }
147
148 function delivery_link($row)
149 {
150   return pager_link( _("Delivery"),
151         "/sales/sales_order_entry.php?NewDelivery=" .$row['order_no'], ICON_DOC);
152 }
153
154 function order_link($row)
155 {
156   return pager_link( _("Sales Order"),
157         "/sales/sales_order_entry.php?NewQuoteToSalesOrder=" .$row['order_no'], ICON_DOC);
158 }
159
160 function tmpl_checkbox($row)
161 {
162         global $trans_type;
163         if ($trans_type == ST_SALESQUOTE)
164                 return '';
165         $name = "chgtpl" .$row['order_no'];
166         $value = $row['type'] ? 1:0;
167
168 // save also in hidden field for testing during 'Update'
169
170  return checkbox(null, $name, $value, true,
171         _('Set this order as a template for direct deliveries/invoices'))
172         . hidden('last['.$row['order_no'].']', $value, false);
173 }
174 //---------------------------------------------------------------------------------------------
175 // Update db record if respective checkbox value has changed.
176 //
177 function change_tpl_flag($id)
178 {
179         global  $Ajax;
180         
181         $sql = "UPDATE ".TB_PREF."sales_orders SET type = !type WHERE order_no=$id";
182
183         db_query($sql, "Can't change sales order type");
184         $Ajax->activate('orders_tbl');
185 }
186
187 $id = find_submit('_chgtpl');
188 if ($id != -1)
189         change_tpl_flag($id);
190
191 if (isset($_POST['Update']) && isset($_POST['last'])) {
192         foreach($_POST['last'] as $id => $value)
193                 if ($value != check_value('chgtpl'.$id))
194                         change_tpl_flag($id);
195 }
196
197 //---------------------------------------------------------------------------------------------
198 //      Order range form
199 //
200 if (get_post('_OrderNumber_changed')) // enable/disable selection controls
201 {
202         $disable = get_post('OrderNumber') !== '';
203
204         if ($_POST['order_view_mode']!='DeliveryTemplates' 
205                 && $_POST['order_view_mode']!='InvoiceTemplates') {
206                         $Ajax->addDisable(true, 'OrdersAfterDate', $disable);
207                         $Ajax->addDisable(true, 'OrdersToDate', $disable);
208         }
209         $Ajax->addDisable(true, 'StockLocation', $disable);
210         $Ajax->addDisable(true, '_SelectStockFromList_edit', $disable);
211         $Ajax->addDisable(true, 'SelectStockFromList', $disable);
212
213         if ($disable) {
214                 $Ajax->addFocus(true, 'OrderNumber');
215         } else
216                 $Ajax->addFocus(true, 'OrdersAfterDate');
217
218         $Ajax->activate('orders_tbl');
219 }
220
221 start_form();
222
223 start_table(TABLESTYLE_NOBORDER);
224 start_row();
225 ref_cells(_("#:"), 'OrderNumber', '',null, '', true);
226 if ($_POST['order_view_mode'] != 'DeliveryTemplates' && $_POST['order_view_mode'] != 'InvoiceTemplates')
227 {
228         ref_cells(_("Ref"), 'OrderReference', '',null, '', true);
229         date_cells(_("from:"), 'OrdersAfterDate', '', null, -30);
230         date_cells(_("to:"), 'OrdersToDate', '', null, 1);
231 }
232 locations_list_cells(_("Location:"), 'StockLocation', null, true);
233
234 stock_items_list_cells(_("Item:"), 'SelectStockFromList', null, true);
235
236 if ($trans_type == ST_SALESQUOTE)
237         check_cells(_("Show All:"), 'show_all');
238 submit_cells('SearchOrders', _("Search"),'',_('Select documents'), 'default');
239
240 hidden('order_view_mode', $_POST['order_view_mode']);
241 hidden('type', $trans_type);
242
243 end_row();
244
245 end_table(1);
246 //---------------------------------------------------------------------------------------------
247 //      Orders inquiry table
248 //
249 $sql = get_sql_for_sales_orders_view($selected_customer, $trans_type);
250
251 if ($trans_type == ST_SALESORDER)
252         $cols = array(
253                 _("Order #") => array('fun'=>'view_link'),
254                 _("Ref"),
255                 _("Customer"),
256                 _("Branch"), 
257                 _("Cust Order Ref"),
258                 _("Order Date") => 'date',
259                 _("Required By") =>array('type'=>'date', 'ord'=>''),
260                 _("Delivery To"), 
261                 _("Order Total") => array('type'=>'amount', 'ord'=>''),
262                 'Type' => 'skip',
263                 _("Currency") => array('align'=>'center')
264         );
265 else
266         $cols = array(
267                 _("Quote #") => array('fun'=>'view_link'),
268                 _("Ref"),
269                 _("Customer"),
270                 _("Branch"), 
271                 _("Cust Order Ref"),
272                 _("Quote Date") => 'date',
273                 _("Valid until") =>array('type'=>'date', 'ord'=>''),
274                 _("Delivery To"), 
275                 _("Quote Total") => array('type'=>'amount', 'ord'=>''),
276                 'Type' => 'skip',
277                 _("Currency") => array('align'=>'center')
278         );
279 if ($_POST['order_view_mode'] == 'OutstandingOnly') {
280         //array_substitute($cols, 3, 1, _("Cust Order Ref"));
281         array_append($cols, array(array('insert'=>true, 'fun'=>'dispatch_link')));
282
283 } elseif ($_POST['order_view_mode'] == 'InvoiceTemplates') {
284         array_substitute($cols, 3, 1, _("Description"));
285         array_append($cols, array( array('insert'=>true, 'fun'=>'invoice_link')));
286
287 } else if ($_POST['order_view_mode'] == 'DeliveryTemplates') {
288         array_substitute($cols, 3, 1, _("Description"));
289         array_append($cols, array(
290                         array('insert'=>true, 'fun'=>'delivery_link'))
291         );
292
293 } elseif ($trans_type == ST_SALESQUOTE) {
294          array_append($cols,array(
295                                         array('insert'=>true, 'fun'=>'edit_link'),
296                                         array('insert'=>true, 'fun'=>'order_link'),
297                                         array('insert'=>true, 'fun'=>'prt_link')));
298 } elseif ($trans_type == ST_SALESORDER) {
299          array_append($cols,array(
300                         _("Tmpl") => array('insert'=>true, 'fun'=>'tmpl_checkbox'),
301                                         array('insert'=>true, 'fun'=>'edit_link'),
302                                         array('insert'=>true, 'fun'=>'prt_link')));
303 };
304
305
306 $table =& new_db_pager('orders_tbl', $sql, $cols);
307 $table->set_marker('check_overdue', _("Marked items are overdue."));
308
309 $table->width = "80%";
310
311 display_db_pager($table);
312 submit_center('Update', _("Update"), true, '', null);
313
314 end_form();
315 end_page();
316 ?>