📄 chart_lead_source_by_outcome.php
字号:
global $timedate;
$file_date = date($timedate->get_date_format()." ".$timedate->get_time_format(), filemtime($sugar_config['tmp_dir'].$cache_file_name));
}
else {
$file_date = '';
}
?>
<span class='chartFootnote'>
<p align="right"><i><?php echo $current_module_strings['LBL_CREATED_ON'].' '.$file_date; ?></i></p>
</span>
<?php
}
/**
* Creates lead_source_by_outcome pipeline image as a HORIZONAL accumlated bar graph for multiple users.
* param $datay- the lead source data to display in the x-axis
* param $ids - list of assigned users of opps to find
* param $cache_file_name - file name to write image to
* param $refresh - boolean whether to rebuild image if exists
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc..
* All Rights Reserved..
* Contributor(s): ______________________________________..
*/
function gen_xml($datay=array('foo','bar'), $user_id=array('1'), $cache_file_name='a_file', $refresh=false,$current_module_strings) {
global $app_strings, $charset, $lang, $barChartColors,$app_list_strings, $current_user;
require_once('modules/Currencies/Currency.php');
$kDelim = $current_user->getPreference('num_grp_sep');
if (!file_exists($cache_file_name) || $refresh == true) {
$GLOBALS['log']->debug("datay is:");
$GLOBALS['log']->debug($datay);
$GLOBALS['log']->debug("user_id is: ");
$GLOBALS['log']->debug($user_id);
$GLOBALS['log']->debug("cache_file_name is: $cache_file_name");
$opp = new Opportunity();
$where="";
//build the where clause for the query that matches $user
$count = count($user_id);
$id = array();
if ($count>0) {
foreach ($user_id as $the_id) {
$id[] = "'".$the_id."'";
}
$ids = join(",",$id);
$where .= "opportunities.assigned_user_id IN ($ids) ";
}
//build the where clause for the query that matches $datay
$count = count($datay);
$datayArr = array();
if ($count>0) {
foreach ($datay as $key=>$value) {
$datayArr[] = "'".$key."'";
}
$datayArr = join(",",$datayArr);
$where .= "AND opportunities.lead_source IN ($datayArr) ";
}
$query = "SELECT lead_source,sales_stage,sum(amount_usdollar/1000) as total,count(*) as opp_count FROM opportunities ";
$query .= "WHERE " .$where." AND opportunities.deleted=0 ";
$query .= " GROUP BY sales_stage,lead_source ORDER BY lead_source,sales_stage";
//Now do the db queries
//query for opportunity data that matches $datay and $user
$result = $opp->db->query($query)
or sugar_die("Error selecting sugarbean: ".mysql_error());
//build pipeline by sales stage data
$total = 0;
$div = 1;
global $sugar_config;
$symbol = $sugar_config['default_currency_symbol'];
$other = $current_module_strings['LBL_LEAD_SOURCE_OTHER'];
$rowTotalArr = array();
$rowTotalArr[] = 0;
global $current_user;
$salesStages = array("Closed Lost"=>$app_list_strings['sales_stage_dom']["Closed Lost"],"Closed Won"=>$app_list_strings['sales_stage_dom']["Closed Won"],"Other"=>$other);
if($current_user->getPreference('currency') ){
require_once('modules/Currencies/Currency.php');
$currency = new Currency();
$currency->retrieve($current_user->getPreference('currency'));
$div = $currency->conversion_rate;
$symbol = $currency->symbol;
}
$fileContents = ' <yData defaultAltText="'.$current_module_strings['LBL_ROLLOVER_DETAILS'].'">'."\n";
$leadSourceArr = array();
while($row = $opp->db->fetchByAssoc($result, -1, false))
{
if($row['total']*$div<=100){
$sum = round($row['total']*$div, 2);
} else {
$sum = round($row['total']*$div);
}
if($row['lead_source'] == ''){
$row['lead_source'] = $current_module_strings['NTC_NO_LEGENDS'];
}
if($row['sales_stage'] == 'Closed Won' || $row['sales_stage'] == 'Closed Lost'){
$salesStage = $row['sales_stage'];
$salesStageT = $app_list_strings['sales_stage_dom'][$row['sales_stage']];
} else {
$salesStage = "Other";
$salesStageT = $other;
}
if(!isset($leadSourceArr[$row['lead_source']]['row_total'])) {$leadSourceArr[$row['lead_source']]['row_total']=0;}
$leadSourceArr[$row['lead_source']][$salesStage]['opp_count'][] = $row['opp_count'];
$leadSourceArr[$row['lead_source']][$salesStage]['total'][] = $sum;
$leadSourceArr[$row['lead_source']]['outcome'][$salesStage]=$salesStageT;
$leadSourceArr[$row['lead_source']]['row_total'] += $sum;
$total += $sum;
}
foreach ($datay as $key=>$translation) {
if ($key == '') {
$key = $current_module_strings['NTC_NO_LEGENDS'];
$translation = $current_module_strings['NTC_NO_LEGENDS'];
}
if(!isset($leadSourceArr[$key])){
$leadSourceArr[$key] = $key;
}
if(isset($leadSourceArr[$key]['row_total'])){$rowTotalArr[]=$leadSourceArr[$key]['row_total'];}
if(isset($leadSourceArr[$key]['row_total']) && $leadSourceArr[$key]['row_total']>100){
$leadSourceArr[$key]['row_total'] = round($leadSourceArr[$key]['row_total']);
}
$fileContents .= ' <dataRow title="'.$translation.'" endLabel="'.format_number($leadSourceArr[$key]['row_total'], 2, 2) . '">'."\n";
if(is_array($leadSourceArr[$key]['outcome'])){
foreach ($leadSourceArr[$key]['outcome'] as $outcome=>$outcome_translation){
$fileContents .= ' <bar id="'.$outcome.'" totalSize="'.array_sum($leadSourceArr[$key][$outcome]['total']).'" altText="'.format_number(array_sum($leadSourceArr[$key][$outcome]['opp_count']),0,0).' '.$current_module_strings['LBL_OPPS_WORTH'].' '.format_number(array_sum($leadSourceArr[$key][$outcome]['total']),0,0).$current_module_strings['LBL_OPP_THOUSANDS'].' '.$current_module_strings['LBL_OPPS_OUTCOME'].' '.$outcome_translation.'" url="index.php?module=Opportunities&action=index&lead_source='.$key.'&sales_stage='.urlencode($outcome).'&query=true&searchFormTab=advanced_search"/>'."\n";
}
}
$fileContents .= ' </dataRow>'."\n";
}
$fileContents .= ' </yData>'."\n";
$max = get_max($rowTotalArr);
$fileContents .= ' <xData min="0" max="'.$max.'" length="10" kDelim="'.$kDelim.'" prefix="'.$symbol.'" suffix=""/>' . "\n";
$fileContents .= ' <colorLegend status="on">'."\n";
$i=0;
foreach ($salesStages as $outcome=>$outcome_translation) {
$color = generate_graphcolor($outcome,$i);
$fileContents .= ' <mapping id="'.$outcome.'" name="'.$outcome_translation.'" color="'.$color.'"/>'."\n";
$i++;
}
$fileContents .= ' </colorLegend>'."\n";
$fileContents .= ' <graphInfo>'."\n";
$fileContents .= ' <![CDATA['.$current_module_strings['LBL_OPP_SIZE'].' '.$symbol.'1'.$current_module_strings['LBL_OPP_THOUSANDS'].']]>'."\n";
$fileContents .= ' </graphInfo>'."\n";
$fileContents .= ' <chartColors ';
foreach ($barChartColors as $key => $value) {
$fileContents .= ' '.$key.'='.'"'.$value.'" ';
}
$fileContents .= ' />'."\n";
$fileContents .= '</graphData>'."\n";
$total = round($total, 2);
$title = '<graphData title="'.$current_module_strings['LBL_ALL_OPPORTUNITIES'].format_number($total, 2, 2, array('currency_symbol' => true)).$app_strings['LBL_THOUSANDS_SYMBOL'].'">'."\n";
$fileContents = $title.$fileContents;
save_xml_file($cache_file_name, $fileContents);
}
$return = create_chart('hBarF',$cache_file_name);
return $return;
}
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -