getPreference('obm_date_start'); if (!empty($user_date_start) && !isset($_REQUEST['obm_date_start'])) { $date_start =$user_date_start; $GLOBALS['log']->debug("USER PREFERENCES['obm_date_start'] is:"); $GLOBALS['log']->debug($user_date_start); } elseif (isset($_REQUEST['obm_year']) && $_REQUEST['obm_year'] != '') { $date_start = $_REQUEST['obm_year'].'-01-01'; $current_user->setPreference('obm_date_start', $date_start); $GLOBALS['log']->debug("_REQUEST['obm_date_start'] is:"); $GLOBALS['log']->debug($_REQUEST['obm_date_start']); $GLOBALS['log']->debug("_SESSION['obm_date_start'] is:"); $GLOBALS['log']->debug($current_user->getPreference('obm_date_start')); } else { $date_start = date('Y').'-01-01'; } $user_date_end = $current_user->getPreference('obm_date_end'); if (!empty($user_date_end) && !isset($_REQUEST['obm_date_end'])) { $date_end =$user_date_end; $GLOBALS['log']->debug("USER PREFERENCES['obm_date_end'] is:"); $GLOBALS['log']->debug($date_end); } elseif (isset($_REQUEST['obm_year']) && $_REQUEST['obm_year'] != '') { $date_end = $_REQUEST['obm_year'].'-12-31'; $current_user->setPreference('obm_date_end', $date_end ); $GLOBALS['log']->debug("_REQUEST['obm_date_end'] is:"); $GLOBALS['log']->debug($_REQUEST['obm_date_end']); $GLOBALS['log']->debug("USER PREFERENCES['obm_date_end'] is:"); $GLOBALS['log']->debug($current_user->getPreference('obm_date_end')); } else { $date_end = date('Y').'-12-31'; } $ids = array(); //get list of user ids for which to display data $user_ids = $current_user->getPreference('obm_ids'); if (!empty($user_ids) && count($user_ids) != 0 && !isset($_REQUEST['obm_ids'])) { $ids = $user_ids; $GLOBALS['log']->debug("USER PREFERENCES['obm_ids'] is:"); $GLOBALS['log']->debug($user_ids); } elseif (isset($_REQUEST['obm_ids']) && count($_REQUEST['obm_ids']) > 0) { $ids = $_REQUEST['obm_ids']; $current_user->setPreference('obm_ids', $_REQUEST['obm_ids']); $GLOBALS['log']->debug("_REQUEST['obm_ids'] is:"); $GLOBALS['log']->debug($_REQUEST['obm_ids']); $GLOBALS['log']->debug("USER PREFRENCES['obm_ids'] is:"); $GLOBALS['log']->debug($current_user->getPreference('obm_ids')); } else { $ids = get_user_array(false); $ids = array_keys($ids); } //create unique prefix based on selected users for image files $id_hash = '1'; if (isset($ids)) { sort($ids); $id_hash = crc32(implode('',$ids)); if($id_hash < 0) { $id_hash = $id_hash * -1; } } $GLOBALS['log']->debug("ids is:"); $GLOBALS['log']->debug($ids); $id_md5 = substr(md5($current_user->id),0,9); // cn: format date_start|end to user's preferred global $timedate; $dateDisplayStart = strftime($timedate->get_user_date_format(), strtotime($date_start)); $dateDisplayEnd = strftime($timedate->get_user_date_format(), strtotime($date_end)); $seps = array("-", "/"); $dates = array($date_start, $date_end); $dateFileNameSafe = str_replace($seps, "_", $dates); $cache_file_name = sugar_cached("xml/").$current_user->getUserPrivGuid()."_outcome_by_month_".$dateFileNameSafe[0]."_".$dateFileNameSafe[1].".xml"; $GLOBALS['log']->debug("cache file name is: $cache_file_name"); global $app_strings; $tools='
'.SugarThemeRegistry::current()->getImage('refresh','border="0" align="absmiddle"', null,null,'.gif',$mod_strings['LBL_REFRESH']).' '.$current_module_strings['LBL_REFRESH'].'  '.SugarThemeRegistry::current()->getImage('edit','border="0" align="absmiddle"',null,null,'.gif',$mod_strings['LBL_EDIT']).' '. $current_module_strings['LBL_EDIT'].'  '.$extra_tools.'
'; ?> order . '">' . get_form_header($current_module_strings['LBL_YEAR_BY_OUTCOME'],$tools,false) . '';?>

".$this->gen_xml($date_start, $date_end, $ids, $cache_file_name, $refresh,$current_module_strings)."

"; echo "

".$current_module_strings['LBL_MONTH_BY_OUTCOME_DESC']."

"; ?> asUser($timedate->fromTimestamp(filemtime($cache_file_name))); } else { $file_date = ''; } ?>

getPreference('num_grp_sep'); global $timedate; if (!file_exists($cache_file_name) || $refresh == true) { $GLOBALS['log']->debug("date_start is: $date_start"); $GLOBALS['log']->debug("date_end is: $date_end"); $GLOBALS['log']->debug("user_id is: "); $GLOBALS['log']->debug($user_id); $GLOBALS['log']->debug("cache_file_name is: $cache_file_name"); $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) "; } // cn: adding user-pref date handling $dateStartDisplay = $timedate->asUserDate($timedate->fromString($date_start)); $dateEndDisplay = $timedate->asUserDate($timedate->fromString($date_end)); $opp = new Opportunity(); //build the where clause for the query that matches $date_start and $date_end $where .= "AND opportunities.date_closed >= ".db_convert("'".$date_start."'",'date')." AND opportunities.date_closed <= ".db_convert("'".$date_end."'",'date')." AND opportunities.deleted=0"; $query = "SELECT sales_stage,".db_convert('opportunities.date_closed','date_format',array("'%Y-%m'"),array("'YYYY-MM'"))." as m, sum(amount_usdollar/1000) as total, count(*) as opp_count FROM opportunities "; $query .= "WHERE ".$where; $query .= " GROUP BY sales_stage,".db_convert('opportunities.date_closed','date_format',array("'%Y-%m'"),array("'YYYY-MM'"))."ORDER BY m"; //Now do the db queries //query for opportunity data that matches $datay and $user //_pp($query); $result = $opp->db->query($query, true); //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') ){ $currency = new Currency(); $currency->retrieve($current_user->getPreference('currency')); $div = $currency->conversion_rate; $symbol = $currency->symbol; } $months = array(); $monthArr = array(); while($row = $opp->db->fetchByAssoc($result, false)) { if($row['total']*$div<=100){ $sum = round($row['total']*$div, 2); } else { $sum = round($row['total']*$div); } 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; } $months[$row['m']] = $row['m']; if(!isset($monthArr[$row['m']]['row_total'])) {$monthArr[$row['m']]['row_total']=0;} $monthArr[$row['m']][$salesStage]['opp_count'][] = $row['opp_count']; $monthArr[$row['m']][$salesStage]['total'][] = $sum; $monthArr[$row['m']]['outcome'][$salesStage]=$salesStageT; $monthArr[$row['m']]['row_total'] += $sum; $total += $sum; } $fileContents = ' '."\n"; if (!empty($months)) { foreach ($months as $month){ $rowTotalArr[]=$monthArr[$month]['row_total']; if($monthArr[$month]['row_total']>100) { $monthArr[$month]['row_total']=round($monthArr[$month]['row_total']); } $fileContents .= ' '."\n"; arsort($salesStages); foreach ($salesStages as $outcome=>$outcome_translation){ if(isset($monthArr[$month][$outcome])) { $fileContents .= ' '."\n"; } } $fileContents .= ' '."\n"; } } else { $fileContents .= ' '."\n"; $fileContents .= ' '."\n"; $fileContents .= ' '."\n"; $rowTotalArr[] = 1000; } $fileContents .= ' '."\n"; $max = get_max($rowTotalArr); $fileContents .= ' '."\n"; $fileContents .= ' '."\n"; $i=0; asort($salesStages); foreach ($salesStages as $outcome=>$outcome_translation) { $color = generate_graphcolor($outcome,$i); $fileContents .= ' '."\n"; $i++; } $fileContents .= ' '."\n"; $fileContents .= ' '."\n"; $fileContents .= ' ".$current_module_strings['LBL_OPP_SIZE'].' '.$symbol.'1'.$current_module_strings['LBL_OPP_THOUSANDS'].']]>'."\n"; $fileContents .= ' '."\n"; $fileContents .= ' $value) { $fileContents .= ' '.$key.'='.'"'.$value.'" '; } $fileContents .= ' />'."\n"; $fileContents .= ''."\n"; $total = round($total, 2); $title = ''."\n"; $fileContents = $title.$fileContents; //echo $fileContents; save_xml_file($cache_file_name, $fileContents); } $return = create_chart('vBarF',$cache_file_name); return $return; } function constructQuery(){ global $current_user; global $timedate; $user_date_start = $current_user->getPreference('obm_date_start'); if (!empty($user_date_start) && !isset($_REQUEST['obm_date_start'])) { $date_start =$user_date_start; $GLOBALS['log']->debug("USER PREFERENCES['obm_date_start'] is:"); $GLOBALS['log']->debug($user_date_start); } elseif (isset($_REQUEST['obm_year']) && $_REQUEST['obm_year'] != '') { $date_start = $_REQUEST['obm_year'].'-01-01'; $current_user->setPreference('obm_date_start', $date_start); $GLOBALS['log']->debug("_REQUEST['obm_date_start'] is:"); $GLOBALS['log']->debug($_REQUEST['obm_date_start']); $GLOBALS['log']->debug("_SESSION['obm_date_start'] is:"); $GLOBALS['log']->debug($current_user->getPreference('obm_date_start')); } else { $date_start = date('Y').'-01-01'; } $user_date_end = $current_user->getPreference('obm_date_end'); if (!empty($user_date_end) && !isset($_REQUEST['obm_date_end'])) { $date_end =$user_date_end; $GLOBALS['log']->debug("USER PREFERENCES['obm_date_end'] is:"); $GLOBALS['log']->debug($date_end); } elseif (isset($_REQUEST['obm_year']) && $_REQUEST['obm_year'] != '') { $date_end = $_REQUEST['obm_year'].'-12-31'; $current_user->setPreference('obm_date_end', $date_end ); $GLOBALS['log']->debug("_REQUEST['obm_date_end'] is:"); $GLOBALS['log']->debug($_REQUEST['obm_date_end']); $GLOBALS['log']->debug("USER PREFERENCES['obm_date_end'] is:"); $GLOBALS['log']->debug($current_user->getPreference('obm_date_end')); } else { $date_end = date('Y').'-12-31'; } $ids = array(); //get list of user ids for which to display data $user_ids = $current_user->getPreference('obm_ids'); if (!empty($user_ids) && count($user_ids) != 0 && !isset($_REQUEST['obm_ids'])) { $ids = $user_ids; $GLOBALS['log']->debug("USER PREFERENCES['obm_ids'] is:"); $GLOBALS['log']->debug($user_ids); } elseif (isset($_REQUEST['obm_ids']) && count($_REQUEST['obm_ids']) > 0) { $ids = $_REQUEST['obm_ids']; $current_user->setPreference('obm_ids', $_REQUEST['obm_ids']); $GLOBALS['log']->debug("_REQUEST['obm_ids'] is:"); $GLOBALS['log']->debug($_REQUEST['obm_ids']); $GLOBALS['log']->debug("USER PREFRENCES['obm_ids'] is:"); $GLOBALS['log']->debug($current_user->getPreference('obm_ids')); } else { $ids = get_user_array(false); $ids = array_keys($ids); } $user_id = $ids; $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) "; } // cn: adding user-pref date handling $dateStartDisplay = $timedate->asUserDate($timedate->fromString($date_start)); $dateEndDisplay = $timedate->asUserDate($timedate->fromString($date_end)); $opp = new Opportunity(); //build the where clause for the query that matches $date_start and $date_end $where .= "AND opportunities.date_closed >= ".db_convert("'".$date_start."'",'date')." AND opportunities.date_closed <= ".db_convert("'".$date_end."'",'date')." AND opportunities.deleted=0"; $query = "SELECT sales_stage,".db_convert('opportunities.date_closed','date_format',array("'%Y-%m'"),array("'YYYY-MM'"))." as m, sum(amount_usdollar/1000) as total, count(*) as opp_count FROM opportunities "; $query .= "WHERE ".$where; $query .= " GROUP BY sales_stage,".db_convert('opportunities.date_closed','date_format',array("'%Y-%m'"),array("'YYYY-MM'"))."ORDER BY m"; return $query; } function constructGroupBy(){ return array( 'm', 'sales_stage', ); } } ?>