You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
360 lines
12 KiB
360 lines
12 KiB
4 months ago
|
<?
|
||
|
/*********************************************************************************
|
||
|
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||
|
* ("License"); You may not use this file except in compliance with the License
|
||
|
* The Original Code is: vtiger CRM Open Source
|
||
|
* The Initial Developer of the Original Code is vtiger.
|
||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||
|
* All Rights Reserved.
|
||
|
*
|
||
|
********************************************************************************/
|
||
|
require_once('include/database/PearDatabase.php');
|
||
|
require_once('XTemplate/xtpl.php');
|
||
|
require_once('modules/Orders/SalesOrder.php');
|
||
|
require_once('include/utils.php');
|
||
|
require_once('include/uifromdbutil.php');
|
||
|
require_once('modules/CustomView/CustomView.php');
|
||
|
|
||
|
global $app_strings;
|
||
|
global $mod_strings;
|
||
|
global $current_language;
|
||
|
$current_module_strings = return_module_language($current_language, 'Orders');
|
||
|
|
||
|
global $list_max_entries_per_page;
|
||
|
global $urlPrefix;
|
||
|
|
||
|
|
||
|
global $theme;
|
||
|
$theme_path="themes/".$theme."/";
|
||
|
$image_path=$theme_path."images/";
|
||
|
require_once($theme_path.'layout_utils.php');
|
||
|
//echo get_module_title("SalesOrder", $mod_strings['LBL_SO_MODULE_NAME'].": Home" , true);
|
||
|
echo "<br>";
|
||
|
//echo get_form_header("Product Search", "", false);
|
||
|
|
||
|
$xtpl=new XTemplate ('modules/Orders/SalesOrderListView.html');
|
||
|
$xtpl->assign("MOD", $mod_strings);
|
||
|
$xtpl->assign("APP", $app_strings);
|
||
|
$xtpl->assign("IMAGE_PATH",$image_path);
|
||
|
|
||
|
/*
|
||
|
$comboFieldNames = Array('manufacturer'=>'manufacturer_dom'
|
||
|
,'productcategory'=>'productcategory_dom');
|
||
|
$comboFieldArray = getComboArray($comboFieldNames);
|
||
|
*/
|
||
|
$focus = new SalesOrder();
|
||
|
|
||
|
if (isset($_REQUEST['order_by'])) $order_by = $_REQUEST['order_by'];
|
||
|
|
||
|
$url_string = '&smodule=SO'; // assigning http url string
|
||
|
$sorder = 'ASC'; // Default sort order
|
||
|
if(isset($_REQUEST['sorder']) && $_REQUEST['sorder'] != '')
|
||
|
$sorder = $_REQUEST['sorder'];
|
||
|
|
||
|
if(isset($_REQUEST['query']) && $_REQUEST['query'] != '' && $_REQUEST['query'] == 'true')
|
||
|
{
|
||
|
$url_string .="&query=true";
|
||
|
if (isset($_REQUEST['subject'])) $subject = $_REQUEST['subject'];
|
||
|
if (isset($_REQUEST['accountname'])) $accountname = $_REQUEST['accountname'];
|
||
|
if (isset($_REQUEST['quotename'])) $quotename = $_REQUEST['quotename'];
|
||
|
|
||
|
$where_clauses = Array();
|
||
|
//$search_query='';
|
||
|
|
||
|
//Added for Custom Field Search
|
||
|
$sql="select * from field where tablename='salesordercf' order by fieldlabel";
|
||
|
$result=$adb->query($sql);
|
||
|
for($i=0;$i<$adb->num_rows($result);$i++)
|
||
|
{
|
||
|
$column[$i]=$adb->query_result($result,$i,'columnname');
|
||
|
$fieldlabel[$i]=$adb->query_result($result,$i,'fieldlabel');
|
||
|
$uitype[$i]=$adb->query_result($result,$i,'uitype');
|
||
|
|
||
|
if (isset($_REQUEST[$column[$i]])) $customfield[$i] = $_REQUEST[$column[$i]];
|
||
|
|
||
|
if(isset($customfield[$i]) && $customfield[$i] != '')
|
||
|
{
|
||
|
if($uitype[$i] == 56)
|
||
|
$str=" salesordercf.".$column[$i]." = 1";
|
||
|
else
|
||
|
$str=" salesordercf.".$column[$i]." like '$customfield[$i]%'";
|
||
|
array_push($where_clauses, $str);
|
||
|
// $search_query .= ' and '.$str;
|
||
|
$url_string .="&".$column[$i]."=".$customfield[$i];
|
||
|
}
|
||
|
}
|
||
|
//upto this added for Custom Field
|
||
|
|
||
|
if (isset($subject) && $subject !='')
|
||
|
{
|
||
|
array_push($where_clauses, "salesorder.subject like ".PearDatabase::quote($subject.'%'));
|
||
|
//$search_query .= " and productname like '".$productname."%'";
|
||
|
$url_string .= "&subject=".$subject;
|
||
|
}
|
||
|
|
||
|
if (isset($accountname) && $accountname !='')
|
||
|
{
|
||
|
array_push($where_clauses, "account.accountname like ".PearDatabase::quote($accountname.'%'));
|
||
|
//$search_query .= " and productcode like '".$productcode."%'";
|
||
|
$url_string .= "&accountname=".$accountname;
|
||
|
}
|
||
|
|
||
|
if (isset($quotename) && $quotename !='')
|
||
|
{
|
||
|
array_push($where_clauses, "quotes.subject like ".PearDatabase::quote($quotename.'%'));
|
||
|
//$search_query .= " and commissionrate like '".$commissionrate."%'";
|
||
|
$url_string .= ""ename=".$quotename;
|
||
|
}
|
||
|
|
||
|
$where = "";
|
||
|
foreach($where_clauses as $clause)
|
||
|
{
|
||
|
if($where != "")
|
||
|
$where .= " and ";
|
||
|
$where .= $clause;
|
||
|
}
|
||
|
|
||
|
$log->info("Here is the where clause for the list view: $where");
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
//<<<<cutomview>>>>>>>
|
||
|
$oCustomView = new CustomView("SalesOrder");
|
||
|
$customviewcombo_html = $oCustomView->getCustomViewCombo();
|
||
|
if(isset($_REQUEST['viewname']) == false)
|
||
|
{
|
||
|
if($oCustomView->setdefaultviewid != "")
|
||
|
{
|
||
|
$viewid = $oCustomView->setdefaultviewid;
|
||
|
}else
|
||
|
{
|
||
|
$viewid = "0";
|
||
|
}
|
||
|
}else
|
||
|
{
|
||
|
$viewid = $_REQUEST['viewname'];
|
||
|
}
|
||
|
//<<<<<customview>>>>>
|
||
|
|
||
|
//Constructing the Search Form
|
||
|
if (!isset($_REQUEST['search_form']) || $_REQUEST['search_form'] != 'false') {
|
||
|
// Stick the form header out there.
|
||
|
echo get_form_header($current_module_strings['LBL_SO_SEARCH_TITLE'],'', false);
|
||
|
$search_form=new XTemplate ('modules/Orders/SalesOrderSearchForm.html');
|
||
|
$search_form->assign("MOD", $mod_strings);
|
||
|
$search_form->assign("APP", $app_strings);
|
||
|
$clearsearch = 'true';
|
||
|
|
||
|
if ($order_by !='') $search_form->assign("ORDER_BY", $order_by);
|
||
|
if ($sorder !='') $search_form->assign("SORDER", $sorder);
|
||
|
|
||
|
$search_form->assign("VIEWID",$viewid);
|
||
|
|
||
|
$search_form->assign("JAVASCRIPT", get_clear_form_js());
|
||
|
|
||
|
if($order_by != '') {
|
||
|
$ordby = "&order_by=".$order_by;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$ordby ='';
|
||
|
}
|
||
|
$search_form->assign("BASIC_LINK", "index.php?module=Orders".$ordby."&action=index".$url_string."&sorder=".$sorder);
|
||
|
$search_form->assign("ADVANCE_LINK", "index.php?module=Orders&action=index".$ordby."&advanced=true".$url_string."&sorder=".$sorder);
|
||
|
|
||
|
if ($subject !='') $search_form->assign("SUBJECT", $subject);
|
||
|
if ($accountname !='') $search_form->assign("ACCOUNTNAME", $accountname);
|
||
|
if ($quotename !='') $search_form->assign("QUOTENAME", $quotename);
|
||
|
|
||
|
//Combo Fields for Manufacturer and Category are moved from advanced to Basic Search
|
||
|
if (isset($_REQUEST['advanced']) && $_REQUEST['advanced'] == 'true')
|
||
|
{
|
||
|
$url_string .="&advanced=true";
|
||
|
$search_form->assign("ALPHABETICAL",AlphabeticalSearch('Orders','index&smodule=SO','subject','true','advanced',"","","","",$viewid));
|
||
|
|
||
|
$search_form->assign("SUPPORT_START_DATE",$_REQUEST['start_date']);
|
||
|
$search_form->assign("SUPPORT_EXPIRY_DATE",$_REQUEST['expiry_date']);
|
||
|
$search_form->assign("PURCHASE_DATE",$_REQUEST['purchase_date']);
|
||
|
$search_form->assign("DATE_FORMAT", $current_user->date_format);
|
||
|
|
||
|
//Added for Custom Field Search
|
||
|
$sql="select * from field where tablename='salesordercf' order by fieldlabel";
|
||
|
$result=$adb->query($sql);
|
||
|
for($i=0;$i<$adb->num_rows($result);$i++)
|
||
|
{
|
||
|
$column[$i]=$adb->query_result($result,$i,'columnname');
|
||
|
$fieldlabel[$i]=$adb->query_result($result,$i,'fieldlabel');
|
||
|
if (isset($_REQUEST[$column[$i]])) $customfield[$i] = $_REQUEST[$column[$i]];
|
||
|
}
|
||
|
require_once('include/CustomFieldUtil.php');
|
||
|
$custfld = CustomFieldSearch($customfield, "salesordercf", "salesordercf", "salesorderid", $app_strings,$theme,$column,$fieldlabel);
|
||
|
$search_form->assign("CUSTOMFIELD", $custfld);
|
||
|
//upto this added for Custom Field
|
||
|
|
||
|
$search_form->parse("advanced");
|
||
|
$search_form->out("advanced");
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$search_form->assign("ALPHABETICAL",AlphabeticalSearch('Orders','index&smodule=SO','subject','true','basic',"","","","",$viewid));
|
||
|
$search_form->parse("main");
|
||
|
$search_form->out("main");
|
||
|
}
|
||
|
echo get_form_footer();
|
||
|
//echo '<br><br>';
|
||
|
|
||
|
}
|
||
|
|
||
|
// Buttons and View options
|
||
|
$other_text = '<table width="100%" border="0" cellpadding="1" cellspacing="0">
|
||
|
<form name="massdelete" method="POST">
|
||
|
<tr>
|
||
|
<input name="idlist" type="hidden">
|
||
|
<input name="viewname" type="hidden" value="'.$viewid.'">
|
||
|
<td>';
|
||
|
if(isPermitted('SalesOrder',2,'') == 'yes')
|
||
|
{
|
||
|
$other_text .= '<input class="button" type="submit" value="'.$app_strings[LBL_MASS_DELETE].'" onclick="return massDelete()"/> ';
|
||
|
}
|
||
|
|
||
|
if($viewid == 0)
|
||
|
{
|
||
|
$cvHTML = '<span class="bodyText disabled">Edit</span>
|
||
|
<span class="sep">|</span>
|
||
|
<span class="bodyText disabled">Delete</span><span class="sep">|</span>
|
||
|
<a href="index.php?module=Orders&action=CustomView&smodule=SO" class="link">Create View</a>';
|
||
|
}else
|
||
|
{
|
||
|
$cvHTML = '<a href="index.php?module=Orders&action=CustomView&smodule=SO&record='.$viewid.'" class="link">Edit</a>
|
||
|
<span class="sep">|</span>
|
||
|
<a href="index.php?module=CustomView&action=Delete&dmodule=Orders&smodule=SO&record='.$viewid.'" class="link">Delete</a>
|
||
|
<span class="sep">|</span>
|
||
|
<a href="index.php?module=Orders&action=CustomView&smodule=SO" class="link">Create View</a>';
|
||
|
}
|
||
|
$other_text .='<td align="right">'.$app_strings[LBL_VIEW].'
|
||
|
<SELECT NAME="view" onchange="showDefaultCustomView(this)">
|
||
|
<OPTION VALUE="0">'.$mod_strings[LBL_ALL].'</option>
|
||
|
'.$customviewcombo_html.'
|
||
|
</SELECT>
|
||
|
'.$cvHTML.'
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>';
|
||
|
|
||
|
//$list_query = getListQuery("SalesOrder");
|
||
|
|
||
|
//<<<<<<<<<customview>>>>>>>>>
|
||
|
if($viewid != "0")
|
||
|
{
|
||
|
$listquery = getListQuery("SalesOrder");
|
||
|
$list_query = $oCustomView->getModifiedCvListQuery($viewid,$listquery,"SalesOrder");
|
||
|
}else
|
||
|
{
|
||
|
$list_query = getListQuery("SalesOrder");
|
||
|
}
|
||
|
//<<<<<<<<customview>>>>>>>>>
|
||
|
|
||
|
if(isset($where) && $where != '')
|
||
|
{
|
||
|
$list_query .= ' and '.$where;
|
||
|
}
|
||
|
|
||
|
$xtpl->assign("SOLISTHEADER", get_form_header($current_module_strings['LBL_LIST_SO_FORM_TITLE'], $other_text, false ));
|
||
|
|
||
|
if(isset($order_by) && $order_by != '')
|
||
|
{
|
||
|
$list_query .= ' ORDER BY '.$order_by.' '.$sorder;
|
||
|
}
|
||
|
|
||
|
$list_result = $adb->query($list_query);
|
||
|
|
||
|
|
||
|
//Retreiving the no of rows
|
||
|
$noofrows = $adb->num_rows($list_result);
|
||
|
|
||
|
$view_script = "<script language='javascript'>
|
||
|
function set_selected()
|
||
|
{
|
||
|
len=document.massdelete.view.length;
|
||
|
for(i=0;i<len;i++)
|
||
|
{
|
||
|
if(document.massdelete.view[i].value == '$viewid')
|
||
|
document.massdelete.view[i].selected = true;
|
||
|
}
|
||
|
}
|
||
|
set_selected();
|
||
|
</script>";
|
||
|
|
||
|
//Retreiving the start value from request
|
||
|
if(isset($_REQUEST['start']) && $_REQUEST['start'] != '')
|
||
|
{
|
||
|
$start = $_REQUEST['start'];
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
|
||
|
$start = 1;
|
||
|
}
|
||
|
//Retreive the Navigation array
|
||
|
$navigation_array = getNavigationValues($start, $noofrows, $list_max_entries_per_page);
|
||
|
|
||
|
// Setting the record count string
|
||
|
if ($navigation_array['start'] == 1)
|
||
|
{
|
||
|
if($noofrows != 0)
|
||
|
$start_rec = $navigation_array['start'];
|
||
|
else
|
||
|
$start_rec = 0;
|
||
|
if($noofrows > $list_max_entries_per_page)
|
||
|
{
|
||
|
$end_rec = $navigation_array['start'] + $list_max_entries_per_page - 1;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$end_rec = $noofrows;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if($navigation_array['next'] > $list_max_entries_per_page)
|
||
|
{
|
||
|
$start_rec = $navigation_array['next'] - $list_max_entries_per_page;
|
||
|
$end_rec = $navigation_array['next'] - 1;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$start_rec = $navigation_array['prev'] + $list_max_entries_per_page;
|
||
|
$end_rec = $noofrows;
|
||
|
}
|
||
|
}
|
||
|
$record_string= $app_strings[LBL_SHOWING]." " .$start_rec." - ".$end_rec." " .$app_strings[LBL_LIST_OF] ." ".$noofrows;
|
||
|
|
||
|
//Retreive the List View Table Header
|
||
|
if($viewid !='')
|
||
|
$url_string .="&viewname=".$viewid;
|
||
|
|
||
|
$listview_header = getListViewHeader($focus,"Orders",$url_string,$sorder,$order_by,"",$oCustomView);
|
||
|
$xtpl->assign("LISTHEADER", $listview_header);
|
||
|
|
||
|
$listview_entries = getListViewEntries($focus,"SalesOrder",$list_result,$navigation_array,'','&return_module=Orders&return_action=index','SalesOrderEditView','DeleteSalesOrder',$oCustomView);
|
||
|
$xtpl->assign("LISTENTITY", $listview_entries);
|
||
|
$xtpl->assign("SELECT_SCRIPT", $view_script);
|
||
|
|
||
|
if($order_by !='')
|
||
|
$url_string .="&order_by=".$order_by;
|
||
|
if($sorder !='')
|
||
|
$url_string .="&sorder=".$sorder;
|
||
|
|
||
|
$navigationOutput = getTableHeaderNavigation($navigation_array, $url_string,"SalesOrder",'index',$viewid);
|
||
|
$xtpl->assign("NAVIGATION", $navigationOutput);
|
||
|
$xtpl->assign("RECORD_COUNTS", $record_string);
|
||
|
|
||
|
$xtpl->parse("main");
|
||
|
$xtpl->out("main");
|
||
|
|
||
|
|
||
|
|
||
|
?>
|