Merged changes form main trunk (2.2.8, 2.2.9)
[fa-stable.git] / sales / inquiry / sales_orders_view.php
index b5af5158fdf6123cac64536a5ffcd5b2896943a9..0a45cde718ed3dd4c97e58547127938ac3042a6b 100644 (file)
@@ -1,10 +1,29 @@
 <?php
-
-$page_security = 2;
-$path_to_root="../..";
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
+$path_to_root = "../..";
+
+include($path_to_root . "/includes/db_pager.inc");
 include($path_to_root . "/includes/session.inc");
-
 include($path_to_root . "/sales/includes/sales_ui.inc");
+include_once($path_to_root . "/reporting/includes/reporting.inc");
+
+$page_security = 'SA_SALESTRANSVIEW';
+
+set_page_security( @$_POST['order_view_mode'],
+       array(  'OutstandingOnly' => 'SA_SALESDELIVERY',
+                       'InvoiceTemplates' => 'SA_SALESINVOICE'),
+       array(  'OutstandingOnly' => 'SA_SALESDELIVERY',
+                       'InvoiceTemplates' => 'SA_SALESINVOICE')
+);
 
 $js = "";
 if ($use_popup_windows)
@@ -12,251 +31,286 @@ if ($use_popup_windows)
 if ($use_date_picker)
        $js .= get_js_date_picker();
 
-if (isset($_GET['OutstandingOnly']) && ($_GET['OutstandingOnly'] == true)) 
-{
-       $_POST['order_view_mode'] = 'OutstandingOnly';
-       $_SESSION['page_title'] = _("Search Outstanding Sales Orders");
-} 
-elseif (isset($_GET['InvoiceTemplates']) && ($_GET['InvoiceTemplates'] == true)) 
-{
-       $_POST['order_view_mode'] = 'InvoiceTemplates';
-       $_SESSION['page_title'] = _("Search Template for Invoicing");
-} 
-elseif (isset($_GET['DeliveryTemplates']) && ($_GET['DeliveryTemplates'] == true)) 
+if (get_post('type'))
+       $trans_type = $_POST['type'];
+elseif (isset($_GET['type']) && $_GET['type'] == ST_SALESQUOTE)
+       $trans_type = ST_SALESQUOTE;
+else
+       $trans_type = ST_SALESORDER;
+
+if ($trans_type == ST_SALESORDER)
 {
-       $_POST['order_view_mode'] = 'DeliveryTemplates';
-       $_SESSION['page_title'] = _("Select Template for Delivery");
+       if (isset($_GET['OutstandingOnly']) && ($_GET['OutstandingOnly'] == true))
+       {
+               $_POST['order_view_mode'] = 'OutstandingOnly';
+               $_SESSION['page_title'] = _($help_context = "Search Outstanding Sales Orders");
+       }
+       elseif (isset($_GET['InvoiceTemplates']) && ($_GET['InvoiceTemplates'] == true))
+       {
+               $_POST['order_view_mode'] = 'InvoiceTemplates';
+               $_SESSION['page_title'] = _($help_context = "Search Template for Invoicing");
+       }
+       elseif (isset($_GET['DeliveryTemplates']) && ($_GET['DeliveryTemplates'] == true))
+       {
+               $_POST['order_view_mode'] = 'DeliveryTemplates';
+               $_SESSION['page_title'] = _($help_context = "Select Template for Delivery");
+       }
+       elseif (!isset($_POST['order_view_mode']))
+       {
+               $_POST['order_view_mode'] = false;
+               $_SESSION['page_title'] = _($help_context = "Search All Sales Orders");
+       }
 }
-elseif (!isset($_POST['order_view_mode']))
+else
 {
-       $_POST['order_view_mode'] = false;
-       $_SESSION['page_title'] = _("Search All Sales Orders");
+       $_POST['order_view_mode'] = "Quotations";
+       $_SESSION['page_title'] = _($help_context = "Search All Sales Quotations");
 }
-
 page($_SESSION['page_title'], false, false, "", $js);
 
 if (isset($_GET['selected_customer']))
 {
        $selected_customer = $_GET['selected_customer'];
-} 
+}
 elseif (isset($_POST['selected_customer']))
 {
        $selected_customer = $_POST['selected_customer'];
 }
 else
        $selected_customer = -1;
-       
-//-----------------------------------------------------------------------------------
-/*
-$action = $_SERVER['PHP_SELF'];
 
-if ($_POST['order_view_mode']=='OutstandingOnly')
+//---------------------------------------------------------------------------------------------
+
+if (isset($_POST['SelectStockFromList']) && ($_POST['SelectStockFromList'] != "") &&
+       ($_POST['SelectStockFromList'] != ALL_TEXT))
 {
-  $action .= "?OutstandingOnly=" . $_POST['order_view_mode']$_PO;
+       $selected_stock_item = $_POST['SelectStockFromList'];
 }
-elseif ($_POST['order_view_mode']=='InvoiceTemplates')
+else
 {
-  $action .= "?InvoiceTemplates=" . $_POST['InvoiceTemplates'];
+       unset($selected_stock_item);
 }
-elseif ($_POST['order_view_mode']=='DeliveryTemplates')
+//---------------------------------------------------------------------------------------------
+//     Query format functions
+//
+function check_overdue($row)
 {
-  $action .= "?DeliveryTemplates=" . $_POST['InvoiceTemplates'];
+       global $trans_type;
+       if ($trans_type == ST_SALESQUOTE)
+               return (date1_greater_date2(Today(), sql2date($row['delivery_date'])));
+       else
+               return ($row['type'] == 0
+                       && date1_greater_date2(Today(), sql2date($row['ord_date']))
+                       && ($row['TotDelivered'] < $row['TotQuantity']));
 }
-*/
-start_form(false, false, $_SERVER['PHP_SELF'] .SID);
 
-start_table("class='tablestyle_noborder'");
-start_row();
-ref_cells(_("#:"), 'OrderNumber');
-if ($_POST['order_view_mode']!='DeliveryTemplates' && $_POST['order_view_mode']!='InvoiceTemplates')
+function view_link($dummy, $order_no)
 {
-  date_cells(_("from:"), 'OrdersAfterDate', null, -30);
-  date_cells(_("to:"), 'OrdersToDate', null, 1);
+       global $trans_type;
+       return  get_customer_trans_view_str($trans_type, $order_no);
 }
-locations_list_cells(_("Location:"), 'StockLocation', null, true);
-
-stock_items_list_cells(_("Item:"), 'SelectStockFromList', null, true);
-
-submit_cells('SearchOrders', _("Search"));
 
-hidden('order_view_mode', $_POST['order_view_mode']);
+function prt_link($row)
+{
+       global $trans_type;
+       return print_document_link($row['order_no'], _("Print"), true, $trans_type, ICON_PRINT);
+}
 
-end_row();
+function edit_link($row) 
+{
+       global $trans_type;
+       $modify = ($trans_type == ST_SALESORDER ? "ModifyOrderNumber" : "ModifyQuotationNumber");
+  return pager_link( _("Edit"),
+    "/sales/sales_order_entry.php?$modify=" . $row['order_no'], ICON_EDIT);
+}
 
-end_table();
-end_form();
+function dispatch_link($row)
+{
+       global $trans_type;
+       if ($trans_type == ST_SALESORDER)
+               return pager_link( _("Dispatch"),
+                       "/sales/customer_delivery.php?OrderNumber=" .$row['order_no'], ICON_DOC);
+       else            
+               return pager_link( _("Sales Order"),
+                       "/sales/sales_order_entry.php?OrderNumber=" .$row['order_no'], ICON_DOC);
+}
 
-//---------------------------------------------------------------------------------------------
+function invoice_link($row)
+{
+       global $trans_type;
+       if ($trans_type == ST_SALESORDER)
+               return pager_link( _("Invoice"),
+                       "/sales/sales_order_entry.php?NewInvoice=" .$row["order_no"], ICON_DOC);
+       else
+               return '';
+}
 
-if (isset($_POST['SelectStockFromList']) && ($_POST['SelectStockFromList'] != "") &&
-       ($_POST['SelectStockFromList'] != reserved_words::get_all()))
+function delivery_link($row)
 {
-       $selected_stock_item = $_POST['SelectStockFromList'];
-} 
-else 
+  return pager_link( _("Delivery"),
+       "/sales/sales_order_entry.php?NewDelivery=" .$row['order_no'], ICON_DOC);
+}
+
+function order_link($row)
 {
-       unset($selected_stock_item);
+  return pager_link( _("Sales Order"),
+       "/sales/sales_order_entry.php?NewQuoteToSalesOrder=" .$row['order_no'], ICON_DOC);
 }
 
-//---------------------------------------------------------------------------------------------
-if (isset($_POST['ChangeTmpl']) && $_POST['ChangeTmpl']!=0) {
-  $sql = "UPDATE ".TB_PREF."sales_orders SET type = !type WHERE order_no=".$_POST['ChangeTmpl'];
+function tmpl_checkbox($row)
+{
+       global $trans_type;
+       if ($trans_type == ST_SALESQUOTE)
+               return '';
+       $name = "chgtpl" .$row['order_no'];
+       $value = $row['type'] ? 1:0;
+
+// save also in hidden field for testing during 'Update'
 
-  db_query($sql, "Can't change sales order type");
+ return checkbox(null, $name, $value, true,
+       _('Set this order as a template for direct deliveries/invoices'))
+       . hidden('last['.$row['order_no'].']', $value, false);
 }
 //---------------------------------------------------------------------------------------------
-
-$sql = "SELECT ".TB_PREF."sales_orders.order_no, ".TB_PREF."debtors_master.curr_code, ".TB_PREF."debtors_master.name, ".TB_PREF."cust_branch.br_name,
-       ".TB_PREF."sales_orders.ord_date, ".TB_PREF."sales_orders.deliver_to, ".TB_PREF."sales_orders.delivery_date,
-       ".TB_PREF."sales_orders.type, ";
-$sql .= " Sum(".TB_PREF."sales_order_details.qty_sent) AS TotDelivered, ";
-$sql .= " Sum(".TB_PREF."sales_order_details.quantity) AS TotQuantity, ";
-$sql .= " Sum(".TB_PREF."sales_order_details.unit_price*".TB_PREF."sales_order_details.quantity*(1-".TB_PREF."sales_order_details.discount_percent)) AS OrderValue, ";
-
-//if ($_POST['order_view_mode']=='InvoiceTemplates' || $_POST['order_view_mode']=='DeliveryTemplates')
-  $sql .= TB_PREF."sales_orders.comments, ";
-//else
-  $sql .= TB_PREF."sales_orders.customer_ref";
-  
-$sql .=        " FROM ".TB_PREF."sales_orders, ".TB_PREF."sales_order_details, ".TB_PREF."debtors_master, ".TB_PREF."cust_branch
-               WHERE ".TB_PREF."sales_orders.order_no = ".TB_PREF."sales_order_details.order_no
-                       AND ".TB_PREF."sales_orders.debtor_no = ".TB_PREF."debtors_master.debtor_no
-                       AND ".TB_PREF."sales_orders.branch_code = ".TB_PREF."cust_branch.branch_code
-                       AND ".TB_PREF."debtors_master.debtor_no = ".TB_PREF."cust_branch.debtor_no ";
-
-//figure out the sql required from the inputs available
-if (isset($_POST['OrderNumber']) && $_POST['OrderNumber'] != "") 
+// Update db record if respective checkbox value has changed.
+//
+function change_tpl_flag($id)
 {
-       $sql .= " AND ".TB_PREF."sales_orders.order_no LIKE '%". $_POST['OrderNumber'] ."' GROUP BY ".TB_PREF."sales_orders.order_no";
-} 
-else 
-{
-  if ($_POST['order_view_mode']!='DeliveryTemplates' && $_POST['order_view_mode']!='InvoiceTemplates')
-  {
-       $date_after = date2sql($_POST['OrdersAfterDate']);
-       $date_before = date2sql($_POST['OrdersToDate']);
+       global  $Ajax;
+       
+       $sql = "UPDATE ".TB_PREF."sales_orders SET type = !type WHERE order_no=$id";
 
-       $sql .= " AND ".TB_PREF."sales_orders.ord_date >= '$date_after'";
-       $sql .= " AND ".TB_PREF."sales_orders.ord_date <= '$date_before'";
-  }
-       if ($selected_customer != -1)
-               $sql .= " AND ".TB_PREF."sales_orders.debtor_no='" . $selected_customer . "'";
+       db_query($sql, "Can't change sales order type");
+       $Ajax->activate('orders_tbl');
+}
 
-       if (isset($selected_stock_item))
-               $sql .= " AND ".TB_PREF."sales_order_details.stk_code='". $selected_stock_item ."'";
+$id = find_submit('_chgtpl');
+if ($id != -1)
+       change_tpl_flag($id);
 
-       if (isset($_POST['StockLocation']) && $_POST['StockLocation'] != reserved_words::get_all())
-               $sql .= " AND ".TB_PREF."sales_orders.from_stk_loc = '". $_POST['StockLocation'] . "' ";
+if (isset($_POST['Update']) && isset($_POST['last'])) {
+       foreach($_POST['last'] as $id => $value)
+               if ($value != check_value('chgtpl'.$id))
+                       change_tpl_flag($id);
+}
 
-       if ($_POST['order_view_mode']=='OutstandingOnly')
-               $sql .= " AND ".TB_PREF."sales_order_details.qty_sent < ".TB_PREF."sales_order_details.quantity";
-       elseif ($_POST['order_view_mode']=='InvoiceTemplates' || $_POST['order_view_mode']=='DeliveryTemplates')
-               $sql .= " AND ".TB_PREF."sales_orders.type=1";
+//---------------------------------------------------------------------------------------------
+//     Order range form
+//
+if (get_post('_OrderNumber_changed')) // enable/disable selection controls
+{
+       $disable = get_post('OrderNumber') !== '';
 
-       $sql .= " GROUP BY ".TB_PREF."sales_orders.order_no, ".TB_PREF."sales_orders.debtor_no, ".TB_PREF."sales_orders.branch_code,
-               ".TB_PREF."sales_orders.customer_ref, ".TB_PREF."sales_orders.ord_date, ".TB_PREF."sales_orders.deliver_to";
+       if ($_POST['order_view_mode']!='DeliveryTemplates' 
+               && $_POST['order_view_mode']!='InvoiceTemplates') {
+                       $Ajax->addDisable(true, 'OrdersAfterDate', $disable);
+                       $Ajax->addDisable(true, 'OrdersToDate', $disable);
+       }
+       $Ajax->addDisable(true, 'StockLocation', $disable);
+       $Ajax->addDisable(true, '_SelectStockFromList_edit', $disable);
+       $Ajax->addDisable(true, 'SelectStockFromList', $disable);
 
-} //end not order number selected
+       if ($disable) {
+               $Ajax->addFocus(true, 'OrderNumber');
+       } else
+               $Ajax->addFocus(true, 'OrdersAfterDate');
 
-$result = db_query($sql,"No orders were returned");
+       $Ajax->activate('orders_tbl');
+}
 
-//-----------------------------------------------------------------------------------
+start_form();
 
-if ($result) 
+start_table(TABLESTYLE_NOBORDER);
+start_row();
+ref_cells(_("#:"), 'OrderNumber', '',null, '', true);
+if ($_POST['order_view_mode'] != 'DeliveryTemplates' && $_POST['order_view_mode'] != 'InvoiceTemplates')
 {
+       ref_cells(_("Ref"), 'OrderReference', '',null, '', true);
+       date_cells(_("from:"), 'OrdersAfterDate', '', null, -30);
+       date_cells(_("to:"), 'OrdersToDate', '', null, 1);
+}
+locations_list_cells(_("Location:"), 'StockLocation', null, true);
 
-       /*show a table of the orders returned by the sql */
+stock_items_list_cells(_("Item:"), 'SelectStockFromList', null, true);
 
-       start_table("$table_style colspan=6 width=95%");
-       $th = array(_("Order #"), _("Customer"), _("Branch"), _("Cust Order #"), _("Order Date"),
-               _("Required By"), _("Delivery To"), _("Order Total"), _("Currency"), _("Tmpl"),"");
+if ($trans_type == ST_SALESQUOTE)
+       check_cells(_("Show All:"), 'show_all');
+submit_cells('SearchOrders', _("Search"),'',_('Select documents'), 'default');
 
-       if($_POST['order_view_mode']=='InvoiceTemplates' || $_POST['order_view_mode']=='DeliveryTemplates')
-       {
-               $th[3] = _('Description');
-       }
+hidden('order_view_mode', $_POST['order_view_mode']);
+hidden('type', $trans_type);
 
-       table_header($th);
-start_form();
+end_row();
 
-       $j = 1;
-       $k = 0; //row colour counter
-       $overdue_items = false;
-       while ($myrow = db_fetch($result)) 
-       {
+end_table(1);
+//---------------------------------------------------------------------------------------------
+//     Orders inquiry table
+//
+$sql = get_sql_for_sales_orders_view($selected_customer, $trans_type);
+
+if ($trans_type == ST_SALESORDER)
+       $cols = array(
+               _("Order #") => array('fun'=>'view_link'),
+               _("Ref"),
+               _("Customer"),
+               _("Branch"), 
+               _("Cust Order Ref"),
+               _("Order Date") => 'date',
+               _("Required By") =>array('type'=>'date', 'ord'=>''),
+               _("Delivery To"), 
+               _("Order Total") => array('type'=>'amount', 'ord'=>''),
+               'Type' => 'skip',
+               _("Currency") => array('align'=>'center')
+       );
+else
+       $cols = array(
+               _("Quote #") => array('fun'=>'view_link'),
+               _("Ref"),
+               _("Customer"),
+               _("Branch"), 
+               _("Cust Order Ref"),
+               _("Quote Date") => 'date',
+               _("Valid until") =>array('type'=>'date', 'ord'=>''),
+               _("Delivery To"), 
+               _("Quote Total") => array('type'=>'amount', 'ord'=>''),
+               'Type' => 'skip',
+               _("Currency") => array('align'=>'center')
+       );
+if ($_POST['order_view_mode'] == 'OutstandingOnly') {
+       //array_substitute($cols, 3, 1, _("Cust Order Ref"));
+       array_append($cols, array(array('insert'=>true, 'fun'=>'dispatch_link')));
+
+} elseif ($_POST['order_view_mode'] == 'InvoiceTemplates') {
+       array_substitute($cols, 3, 1, _("Description"));
+       array_append($cols, array( array('insert'=>true, 'fun'=>'invoice_link')));
+
+} else if ($_POST['order_view_mode'] == 'DeliveryTemplates') {
+       array_substitute($cols, 3, 1, _("Description"));
+       array_append($cols, array(
+                       array('insert'=>true, 'fun'=>'delivery_link'))
+       );
+
+} elseif ($trans_type == ST_SALESQUOTE) {
+        array_append($cols,array(
+                                       array('insert'=>true, 'fun'=>'edit_link'),
+                                       array('insert'=>true, 'fun'=>'order_link'),
+                                       array('insert'=>true, 'fun'=>'prt_link')));
+} elseif ($trans_type == ST_SALESORDER) {
+        array_append($cols,array(
+                       _("Tmpl") => array('insert'=>true, 'fun'=>'tmpl_checkbox'),
+                                       array('insert'=>true, 'fun'=>'edit_link'),
+                                       array('insert'=>true, 'fun'=>'prt_link')));
+};
+
+
+$table =& new_db_pager('orders_tbl', $sql, $cols);
+$table->set_marker('check_overdue', _("Marked items are overdue."));
+
+$table->width = "80%";
+
+display_db_pager($table);
+submit_center('Update', _("Update"), true, '', null);
 
-               $view_page = get_customer_trans_view_str(systypes::sales_order(), $myrow["order_no"]);
-               $formated_del_date = sql2date($myrow["delivery_date"]);
-               $formated_order_date = sql2date($myrow["ord_date"]);
-//         $not_closed =  $myrow['type'] && ($myrow["TotDelivered"] < $myrow["TotQuantity"]);
-
-       // if overdue orders, then highlight as so
-       if ($myrow['type'] == 0 && date1_greater_date2(Today(), $formated_del_date))
-       {
-                start_row("class='overduebg'");
-                $overdue_items = true;
-       } 
-       else 
-       {
-                       alt_table_row_color($k);
-       }
-
-               label_cell($view_page);
-               label_cell($myrow["name"]);
-               label_cell($myrow["br_name"]);
-         if($_POST['order_view_mode']=='InvoiceTemplates' || $_POST['order_view_mode']=='DeliveryTemplates')
-                 label_cell($myrow["comments"]);
-         else
-                 label_cell($myrow["customer_ref"]);
-               label_cell($formated_order_date);
-               label_cell($formated_del_date);
-               label_cell($myrow["deliver_to"]);
-               amount_cell($myrow["OrderValue"]);
-               label_cell($myrow["curr_code"]);
-               if ($_POST['order_view_mode']=='OutstandingOnly'/* || $not_closed*/) 
-               {
-               $delivery_note = $path_to_root . "/sales/customer_delivery.php?" . SID . "OrderNumber=" .$myrow["order_no"];
-               label_cell("<a href='$delivery_note'>" . _("Dispatch") . "</a>");
-               }
-               elseif ($_POST['order_view_mode']=='InvoiceTemplates')
-               {
-               $select_order= $path_to_root . "/sales/sales_order_entry.php?" . SID . "NewInvoice=" .$myrow["order_no"];
-               label_cell("<a href='$select_order'>" . _("Invoice") . "</a>");
-               }
-               elseif ($_POST['order_view_mode']=='DeliveryTemplates')
-               {
-                       $select_order= $path_to_root . "/sales/sales_order_entry.php?" . SID . "NewDelivery=" .$myrow["order_no"];
-               label_cell("<a href='$select_order'>" . _("Delivery") . "</a>");
-               }
-               else
-               {
-                 echo "<td><input ".($myrow["type"]==1 ? 'checked' : '')." type='checkbox' name='chgtpl" .$myrow["order_no"]. "' value='1'
-                  onclick='forms[1].ChangeTmpl.value= this.name.substr(6);
-                  this.form.submit();' ></td>";
-
-                 $modify_page = $path_to_root . "/sales/sales_order_entry.php?" . SID . "ModifyOrderNumber=" . $myrow["order_no"];
-                 label_cell("<a href='$modify_page'>" . _("Edit") . "</a>");
-               }
-               end_row();;
-
-               $j++;
-               If ($j == 12)
-               {
-                       $j = 1;
-                       table_header($th);
-               }
-               //end of page full new headings if
-       }
-       //end of while loop
-  hidden('ChangeTmpl', 0);
 end_form();
-       end_table();
-
-   if ($overdue_items)
-               display_note(_("Marked items are overdue."), 0, 1, "class='overduefg'");
-}
-
-echo "<br>";
-
 end_page();
 ?>
\ No newline at end of file