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