ec0091232d96aba87076f866f672dfec6c59d88c
[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("class='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         date_cells(_("from:"), 'OrdersAfterDate', '', null, -30);
229         date_cells(_("to:"), 'OrdersToDate', '', null, 1);
230 }
231 locations_list_cells(_("Location:"), 'StockLocation', null, true);
232
233 stock_items_list_cells(_("Item:"), 'SelectStockFromList', null, true);
234
235 if ($trans_type == ST_SALESQUOTE)
236         check_cells(_("Show All:"), 'show_all');
237 submit_cells('SearchOrders', _("Search"),'',_('Select documents'), 'default');
238
239 hidden('order_view_mode', $_POST['order_view_mode']);
240 hidden('type', $trans_type);
241
242 end_row();
243
244 end_table(1);
245 //---------------------------------------------------------------------------------------------
246 //      Orders inquiry table
247 //
248 $sql = "SELECT 
249                 sorder.order_no,
250                 sorder.reference,
251                 debtor.name,
252                 branch.br_name,"
253                 .($_POST['order_view_mode']=='InvoiceTemplates' 
254                         || $_POST['order_view_mode']=='DeliveryTemplates' ?
255                  "sorder.comments, " : "sorder.customer_ref, ")
256                 ."sorder.ord_date,
257                 sorder.delivery_date,
258                 sorder.deliver_to,
259                 Sum(line.unit_price*line.quantity*(1-line.discount_percent))+freight_cost AS OrderValue,
260                 sorder.type,
261                 debtor.curr_code,
262                 Sum(line.qty_sent) AS TotDelivered,
263                 Sum(line.quantity) AS TotQuantity
264         FROM ".TB_PREF."sales_orders as sorder, "
265                 .TB_PREF."sales_order_details as line, "
266                 .TB_PREF."debtors_master as debtor, "
267                 .TB_PREF."cust_branch as branch
268                 WHERE sorder.order_no = line.order_no
269                 AND sorder.trans_type = line.trans_type
270                 AND sorder.trans_type = $trans_type
271                 AND sorder.debtor_no = debtor.debtor_no
272                 AND sorder.branch_code = branch.branch_code
273                 AND debtor.debtor_no = branch.debtor_no";
274
275 if (isset($_POST['OrderNumber']) && $_POST['OrderNumber'] != "")
276 {
277         // search orders with number like 
278         $number_like = "%".$_POST['OrderNumber'];
279         $sql .= " AND sorder.order_no LIKE ".db_escape($number_like)
280                         ." GROUP BY sorder.order_no";
281 }
282 else    // ... or select inquiry constraints
283 {
284         if ($_POST['order_view_mode']!='DeliveryTemplates' && $_POST['order_view_mode']!='InvoiceTemplates')
285         {
286                 $date_after = date2sql($_POST['OrdersAfterDate']);
287                 $date_before = date2sql($_POST['OrdersToDate']);
288
289                 $sql .=  " AND sorder.ord_date >= '$date_after'"
290                                 ." AND sorder.ord_date <= '$date_before'";
291         }
292         if ($trans_type == 32 && !check_value('show_all'))
293                 $sql .= " AND sorder.delivery_date >= '".date2sql(Today())."'";
294         if ($selected_customer != -1)
295                 $sql .= " AND sorder.debtor_no=".db_escape($selected_customer);
296
297         if (isset($selected_stock_item))
298                 $sql .= " AND line.stk_code=".db_escape($selected_stock_item);
299
300         if (isset($_POST['StockLocation']) && $_POST['StockLocation'] != ALL_TEXT)
301                 $sql .= " AND sorder.from_stk_loc = ".db_escape($_POST['StockLocation']);
302
303         if ($_POST['order_view_mode']=='OutstandingOnly')
304                 $sql .= " AND line.qty_sent < line.quantity";
305         elseif ($_POST['order_view_mode']=='InvoiceTemplates' || $_POST['order_view_mode']=='DeliveryTemplates')
306                 $sql .= " AND sorder.type=1";
307
308         $sql .= " GROUP BY sorder.order_no,
309                                 sorder.debtor_no,
310                                 sorder.branch_code,
311                                 sorder.customer_ref,
312                                 sorder.ord_date,
313                                 sorder.deliver_to";
314 }
315
316 if ($trans_type == ST_SALESORDER)
317         $cols = array(
318                 _("Order #") => array('fun'=>'view_link'),
319                 _("Ref"),
320                 _("Customer"),
321                 _("Branch"), 
322                 _("Cust Order Ref"),
323                 _("Order Date") => 'date',
324                 _("Required By") =>array('type'=>'date', 'ord'=>''),
325                 _("Delivery To"), 
326                 _("Order Total") => array('type'=>'amount', 'ord'=>''),
327                 'Type' => 'skip',
328                 _("Currency") => array('align'=>'center')
329         );
330 else
331         $cols = array(
332                 _("Quote #") => array('fun'=>'view_link'),
333                 _("Ref"),
334                 _("Customer"),
335                 _("Branch"), 
336                 _("Cust Order Ref"),
337                 _("Quote Date") => 'date',
338                 _("Valid until") =>array('type'=>'date', 'ord'=>''),
339                 _("Delivery To"), 
340                 _("Quote Total") => array('type'=>'amount', 'ord'=>''),
341                 'Type' => 'skip',
342                 _("Currency") => array('align'=>'center')
343         );
344 if ($_POST['order_view_mode'] == 'OutstandingOnly') {
345         //array_substitute($cols, 3, 1, _("Cust Order Ref"));
346         array_append($cols, array(array('insert'=>true, 'fun'=>'dispatch_link')));
347
348 } elseif ($_POST['order_view_mode'] == 'InvoiceTemplates') {
349         array_substitute($cols, 3, 1, _("Description"));
350         array_append($cols, array( array('insert'=>true, 'fun'=>'invoice_link')));
351
352 } else if ($_POST['order_view_mode'] == 'DeliveryTemplates') {
353         array_substitute($cols, 3, 1, _("Description"));
354         array_append($cols, array(
355                         array('insert'=>true, 'fun'=>'delivery_link'))
356         );
357
358 } elseif ($trans_type == ST_SALESQUOTE) {
359          array_append($cols,array(
360                                         array('insert'=>true, 'fun'=>'edit_link'),
361                                         array('insert'=>true, 'fun'=>'order_link'),
362                                         array('insert'=>true, 'fun'=>'prt_link')));
363 } elseif ($trans_type == ST_SALESORDER) {
364          array_append($cols,array(
365                         _("Tmpl") => array('insert'=>true, 'fun'=>'tmpl_checkbox'),
366                                         array('insert'=>true, 'fun'=>'edit_link'),
367                                         array('insert'=>true, 'fun'=>'prt_link')));
368 };
369
370
371 $table =& new_db_pager('orders_tbl', $sql, $cols);
372 $table->set_marker('check_overdue', _("Marked items are overdue."));
373
374 $table->width = "80%";
375
376 display_db_pager($table);
377 submit_center('Update', _("Update"), true, '', null);
378
379 end_form();
380 end_page();
381 ?>