10d1929f36
yuchenghu@hawebs.net git-svn-id: https://svn.code.sf.net/p/hawebs/svn@639 a2543c7e-f6e9-4f8a-8bff-1ffc34733512
222 lines
7.9 KiB
PHP
222 lines
7.9 KiB
PHP
<?php
|
|
/*********************************************************************************
|
|
** 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('Smarty_setup.php');
|
|
require_once("data/Tracker.php");
|
|
require_once('include/logging.php');
|
|
require_once('include/utils/utils.php');
|
|
require_once('modules/Reports/Reports.php');
|
|
|
|
global $app_strings, $app_list_strings, $mod_strings;
|
|
$current_module_strings = return_module_language($current_language, 'Reports');
|
|
|
|
global $list_max_entries_per_page, $urlPrefix;
|
|
|
|
$log = LoggerManager::getLogger('report_type');
|
|
|
|
global $currentModule, $image_path, $theme;
|
|
$report_group=new vtigerCRM_Smarty;
|
|
$report_group->assign("MOD", $mod_strings);
|
|
$report_group->assign("APP", $app_strings);
|
|
$report_group->assign("IMAGE_PATH",$image_path);
|
|
|
|
if(isset($_REQUEST["record"]) && $_REQUEST['record']!='')
|
|
{
|
|
$reportid = vtlib_purify($_REQUEST["record"]);
|
|
$oReport = new Reports($reportid);
|
|
$list_array = $oReport->getSelctedSortingColumns($reportid);
|
|
|
|
$oRep = new Reports();
|
|
$secondarymodule = '';
|
|
$secondarymodules =Array();
|
|
|
|
if(!empty($oRep->related_modules[$oReport->primodule])) {
|
|
foreach($oRep->related_modules[$oReport->primodule] as $key=>$value){
|
|
if(isset($_REQUEST["secondarymodule_".$value]))$secondarymodules []= vtlib_purify($_REQUEST["secondarymodule_".$value]);
|
|
}
|
|
}
|
|
$secondarymodule = implode(":",$secondarymodules);
|
|
|
|
if($secondarymodule!='')
|
|
$oReport->secmodule = $secondarymodule;
|
|
|
|
$BLOCK1 = getPrimaryColumns_GroupingHTML($oReport->primodule,$list_array[0]);
|
|
$BLOCK1 .= getSecondaryColumns_GroupingHTML($oReport->secmodule,$list_array[0]);
|
|
$report_group->assign("BLOCK1",$BLOCK1);
|
|
|
|
$BLOCK2 = getPrimaryColumns_GroupingHTML($oReport->primodule,$list_array[1]);
|
|
$BLOCK2 .= getSecondaryColumns_GroupingHTML($oReport->secmodule,$list_array[1]);
|
|
$report_group->assign("BLOCK2",$BLOCK2);
|
|
|
|
$BLOCK3 = getPrimaryColumns_GroupingHTML($oReport->primodule,$list_array[2]);
|
|
$BLOCK3 .= getSecondaryColumns_GroupingHTML($oReport->secmodule,$list_array[2]);
|
|
$report_group->assign("BLOCK3",$BLOCK3);
|
|
|
|
$sortorder = $oReport->ascdescorder;
|
|
|
|
}else
|
|
{
|
|
$primarymodule = vtlib_purify($_REQUEST["primarymodule"]);
|
|
$BLOCK1 = getPrimaryColumns_GroupingHTML($primarymodule);
|
|
$ogReport = new Reports();
|
|
if(!empty($ogReport->related_modules[$primarymodule])) {
|
|
foreach($ogReport->related_modules[$primarymodule] as $key=>$value){
|
|
$BLOCK1 .= getSecondaryColumns_GroupingHTML($_REQUEST["secondarymodule_".$value]);
|
|
}
|
|
}
|
|
$report_group->assign("BLOCK1",$BLOCK1);
|
|
$report_group->assign("BLOCK2",$BLOCK1);
|
|
$report_group->assign("BLOCK3",$BLOCK1);
|
|
}
|
|
|
|
|
|
/** Function to get the combo values for the Primary module Columns
|
|
* @ param $module(module name) :: Type String
|
|
* @ param $selected (<selected or ''>) :: Type String
|
|
* This function generates the combo values for the columns for the given module
|
|
* and return a HTML string
|
|
*/
|
|
|
|
function getPrimaryColumns_GroupingHTML($module,$selected="")
|
|
{
|
|
global $ogReport, $app_list_strings, $current_language;
|
|
$id_added=false;
|
|
$mod_strings = return_module_language($current_language,$module);
|
|
|
|
$block_listed = array();
|
|
$selected = decode_html($selected);
|
|
foreach($ogReport->module_list[$module] as $key=>$value)
|
|
{
|
|
if(isset($ogReport->pri_module_columnslist[$module][$value]) && !$block_listed[$value])
|
|
{
|
|
$block_listed[$value] = true;
|
|
$shtml .= "<optgroup label=\"".$app_list_strings['moduleList'][$module]." ".getTranslatedString($value)."\" class=\"select\" style=\"border:none\">";
|
|
if($id_added==false){
|
|
$is_selected ='';
|
|
if($selected == "vtiger_crmentity:crmid:".$module."_ID:crmid:I"){
|
|
$is_selected = 'selected';
|
|
}
|
|
$shtml .= "<option value=\"vtiger_crmentity:crmid:".$module."_ID:crmid:I\" {$is_selected}>".getTranslatedString(getTranslatedString($module).' ID')."</option>";
|
|
$id_added=true;
|
|
}
|
|
foreach($ogReport->pri_module_columnslist[$module][$value] as $field=>$fieldlabel)
|
|
{
|
|
if(isset($mod_strings[$fieldlabel]))
|
|
{
|
|
if($selected == decode_html($field))
|
|
{
|
|
$shtml .= "<option selected value=\"".$field."\">".$mod_strings[$fieldlabel]."</option>";
|
|
}else
|
|
{
|
|
$shtml .= "<option value=\"".$field."\">".$mod_strings[$fieldlabel]."</option>";
|
|
}
|
|
}else
|
|
{
|
|
if($selected == decode_html($field))
|
|
{
|
|
$shtml .= "<option selected value=\"".$field."\">".$fieldlabel."</option>";
|
|
}else
|
|
{
|
|
$shtml .= "<option value=\"".$field."\">".$fieldlabel."</option>";
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return $shtml;
|
|
}
|
|
|
|
/** Function to get the combo values for the Secondary module Columns
|
|
* @ param $module(module name) :: Type String
|
|
* @ param $selected (<selected or ''>) :: Type String
|
|
* This function generates the combo values for the columns for the given module
|
|
* and return a HTML string
|
|
*/
|
|
function getSecondaryColumns_GroupingHTML($module,$selected="")
|
|
{
|
|
global $ogReport;
|
|
global $app_list_strings;
|
|
global $current_language;
|
|
|
|
$selected = decode_html($selected);
|
|
if($module != "")
|
|
{
|
|
$secmodule = explode(":",$module);
|
|
for($i=0;$i < count($secmodule) ;$i++)
|
|
{
|
|
$mod_strings = return_module_language($current_language,$secmodule[$i]);
|
|
if(vtlib_isModuleActive($secmodule[$i])){
|
|
$block_listed = array();
|
|
foreach($ogReport->module_list[$secmodule[$i]] as $key=>$value)
|
|
{
|
|
if(isset($ogReport->sec_module_columnslist[$secmodule[$i]][$value]) && !$block_listed[$value]) {
|
|
$block_listed[$value] = true;
|
|
$shtml .= "<optgroup label=\"".$app_list_strings['moduleList'][$secmodule[$i]]." ".getTranslatedString($value)."\" class=\"select\" style=\"border:none\">";
|
|
foreach($ogReport->sec_module_columnslist[$secmodule[$i]][$value] as $field=>$fieldlabel)
|
|
{
|
|
if(isset($mod_strings[$fieldlabel])) {
|
|
if($selected == decode_html($field)) {
|
|
$shtml .= "<option selected value=\"".$field."\">".$mod_strings[$fieldlabel]."</option>";
|
|
} else {
|
|
$shtml .= "<option value=\"".$field."\">".$mod_strings[$fieldlabel]."</option>";
|
|
}
|
|
} else {
|
|
if($selected == decode_html($field)) {
|
|
$shtml .= "<option selected value=\"".$field."\">".$fieldlabel."</option>";
|
|
} else {
|
|
$shtml .= "<option value=\"".$field."\">".$fieldlabel."</option>";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return $shtml;
|
|
}
|
|
|
|
if($sortorder[0] != "Descending")
|
|
{
|
|
$shtml = "<option selected value='Ascending'>".$app_strings['Ascending']."</option>
|
|
<option value='Descending'>".$app_strings['Descending']."</option>";
|
|
}else
|
|
{
|
|
$shtml = "<option value='Ascending'>".$app_strings['Ascending']."</option>
|
|
<option selected value='Descending'>".$app_strings['Descending']."</option>";
|
|
}
|
|
$report_group->assign("ASCDESC1",$shtml);
|
|
|
|
if($sortorder[1] != "Descending")
|
|
{
|
|
$shtml = "<option selected value='Ascending'>".$app_strings['Ascending']."</option>
|
|
<option value='Descending'>".$app_strings['Descending']."</option>";
|
|
}else
|
|
{
|
|
$shtml = "<option value='Ascending'>".$app_strings['Ascending']."</option>
|
|
<option selected value='Descending'>".$app_strings['Descending']."</option>";
|
|
}
|
|
$report_group->assign("ASCDESC2",$shtml);
|
|
|
|
if($sortorder[2] != "Descending")
|
|
{
|
|
$shtml = "<option selected value='Ascending'>".$app_strings['Ascending']."</option>
|
|
<option value='Descending'>".$app_strings['Descending']."</option>";
|
|
}else
|
|
{
|
|
$shtml = "<option value='Ascending'>".$app_strings['Ascending']."</option>
|
|
<option selected value='Descending'>".$app_strings['Descending']."</option>";
|
|
}
|
|
$report_group->assign("ASCDESC3",$shtml);
|
|
$report_group->display("ReportGrouping.tpl");
|
|
|
|
?>
|