New files from unstable branch
[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 end_row();
234 end_table();
235
236 start_table(TABLESTYLE_NOBORDER);
237 start_row();
238
239 stock_items_list_cells(_("Item:"), 'SelectStockFromList', null, true);
240
241 if ($trans_type == ST_SALESQUOTE)
242         check_cells(_("Show All:"), 'show_all');
243
244 submit_cells('SearchOrders', _("Search"),'',_('Select documents'), 'default');
245 hidden('order_view_mode', $_POST['order_view_mode']);
246 hidden('type', $trans_type);
247
248 end_row();
249
250 end_table(1);
251 //---------------------------------------------------------------------------------------------
252 //      Orders inquiry table
253 //
254 $sql = get_sql_for_sales_orders_view($selected_customer, $trans_type);
255
256 if ($trans_type == ST_SALESORDER)
257         $cols = array(
258                 _("Order #") => array('fun'=>'view_link'),
259                 _("Ref"),
260                 _("Customer"),
261                 _("Branch"), 
262                 _("Cust Order Ref"),
263                 _("Order Date") => 'date',
264                 _("Required By") =>array('type'=>'date', 'ord'=>''),
265                 _("Delivery To"), 
266                 _("Order Total") => array('type'=>'amount', 'ord'=>''),
267                 'Type' => 'skip',
268                 _("Currency") => array('align'=>'center')
269         );
270 else
271         $cols = array(
272                 _("Quote #") => array('fun'=>'view_link'),
273                 _("Ref"),
274                 _("Customer"),
275                 _("Branch"), 
276                 _("Cust Order Ref"),
277                 _("Quote Date") => 'date',
278                 _("Valid until") =>array('type'=>'date', 'ord'=>''),
279                 _("Delivery To"), 
280                 _("Quote Total") => array('type'=>'amount', 'ord'=>''),
281                 'Type' => 'skip',
282                 _("Currency") => array('align'=>'center')
283         );
284 if ($_POST['order_view_mode'] == 'OutstandingOnly') {
285         //array_substitute($cols, 3, 1, _("Cust Order Ref"));
286         array_append($cols, array(array('insert'=>true, 'fun'=>'dispatch_link')));
287
288 } elseif ($_POST['order_view_mode'] == 'InvoiceTemplates') {
289         array_substitute($cols, 3, 1, _("Description"));
290         array_append($cols, array( array('insert'=>true, 'fun'=>'invoice_link')));
291
292 } else if ($_POST['order_view_mode'] == 'DeliveryTemplates') {
293         array_substitute($cols, 3, 1, _("Description"));
294         array_append($cols, array(
295                         array('insert'=>true, 'fun'=>'delivery_link'))
296         );
297
298 } elseif ($trans_type == ST_SALESQUOTE) {
299          array_append($cols,array(
300                                         array('insert'=>true, 'fun'=>'edit_link'),
301                                         array('insert'=>true, 'fun'=>'order_link'),
302                                         array('insert'=>true, 'fun'=>'prt_link')));
303 } elseif ($trans_type == ST_SALESORDER) {
304          array_append($cols,array(
305                         _("Tmpl") => array('insert'=>true, 'fun'=>'tmpl_checkbox'),
306                                         array('insert'=>true, 'fun'=>'edit_link'),
307                                         array('insert'=>true, 'fun'=>'prt_link')));
308 };
309
310
311 $table =& new_db_pager('orders_tbl', $sql, $cols);
312 $table->set_marker('check_overdue', _("Marked items are overdue."));
313
314 $table->width = "80%";
315
316 display_db_pager($table);
317 submit_center('Update', _("Update"), true, '', null);
318
319 end_form();
320 end_page();
321 ?>