Add php files
This commit is contained in:
139
modules/Charts/a/OutcomeByMonthDashlet/OutcomeByMonthDashlet.php
Executable file
139
modules/Charts/a/OutcomeByMonthDashlet/OutcomeByMonthDashlet.php
Executable file
@@ -0,0 +1,139 @@
|
||||
<?php
|
||||
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
||||
/**
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004 - 2009 SugarCRM Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU General Public License version 3 as published by the
|
||||
* Free Software Foundation with the addition of the following permission added
|
||||
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
||||
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
||||
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
||||
*
|
||||
* 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 GNU General Public License for more
|
||||
* details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
||||
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA.
|
||||
*
|
||||
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
||||
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "Powered by
|
||||
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
*/
|
||||
|
||||
|
||||
|
||||
|
||||
require_once('include/Dashlets/DashletGenericChart.php');
|
||||
|
||||
class OutcomeByMonthDashlet extends DashletGenericChart
|
||||
{
|
||||
public $obm_ids = array();
|
||||
public $obm_date_start;
|
||||
public $obm_date_end;
|
||||
|
||||
protected $_seedName = 'Opportunities';
|
||||
|
||||
/**
|
||||
* @see DashletGenericChart::__construct()
|
||||
*/
|
||||
public function __construct(
|
||||
$id,
|
||||
array $options = null
|
||||
)
|
||||
{
|
||||
global $timedate;
|
||||
|
||||
if(empty($options['obm_date_start']))
|
||||
$options['obm_date_start'] = date($timedate->get_db_date_time_format(), time());
|
||||
|
||||
if(empty($options['obm_date_end']))
|
||||
$options['obm_date_end'] = date($timedate->get_db_date_time_format(), strtotime('2010-01-01'));
|
||||
|
||||
parent::__construct($id,$options);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see DashletGenericChart::displayOptions()
|
||||
*/
|
||||
public function displayOptions()
|
||||
{
|
||||
if (!isset($this->obm_ids) || count($this->obm_ids) == 0)
|
||||
$this->_searchFields['obm_ids']['input_name0'] = array_keys(get_user_array(false));
|
||||
|
||||
return parent::displayOptions();
|
||||
}
|
||||
|
||||
/**
|
||||
* @see DashletGenericChart::display()
|
||||
*/
|
||||
public function display()
|
||||
{
|
||||
$currency_symbol = $GLOBALS['sugar_config']['default_currency_symbol'];
|
||||
if ($GLOBALS['current_user']->getPreference('currency')){
|
||||
require_once('modules/Currencies/Currency.php');
|
||||
$currency = new Currency();
|
||||
$currency->retrieve($GLOBALS['current_user']->getPreference('currency'));
|
||||
$currency_symbol = $currency->symbol;
|
||||
}
|
||||
|
||||
require("modules/Charts/chartdefs.php");
|
||||
$chartDef = $chartDefs['outcome_by_month'];
|
||||
|
||||
require_once('include/SugarCharts/SugarChart.php');
|
||||
$sugarChart = new SugarChart();
|
||||
$sugarChart->setProperties('',
|
||||
translate('LBL_OPP_SIZE', 'Charts') . ' ' . $currency_symbol . '1' .translate('LBL_OPP_THOUSANDS', 'Charts'),
|
||||
$chartDef['chartType']);
|
||||
$sugarChart->base_url = $chartDef['base_url'];
|
||||
$sugarChart->group_by = $chartDef['groupBy'];
|
||||
$sugarChart->url_params = array();
|
||||
$sugarChart->getData($this->constructQuery());
|
||||
$sugarChart->is_currency = true;
|
||||
$sugarChart->data_set = $sugarChart->sortData($sugarChart->data_set, 'm', false, 'sales_stage', true, true);
|
||||
$xmlFile = $sugarChart->getXMLFileName($this->id);
|
||||
$sugarChart->saveXMLFile($xmlFile, $sugarChart->generateXML());
|
||||
|
||||
return $this->getTitle('<div align="center"></div>') .
|
||||
'<div align="center">' . $sugarChart->display($this->id, $xmlFile, '100%', '480', false) . '</div><br />';
|
||||
}
|
||||
|
||||
/**
|
||||
* @see DashletGenericChart::constructQuery()
|
||||
*/
|
||||
protected function constructQuery()
|
||||
{
|
||||
$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 opportunities.date_closed >= ".db_convert("'".$this->obm_date_start."'",'datetime') .
|
||||
" AND opportunities.date_closed <= ".db_convert("'".$this->obm_date_end."'",'datetime') .
|
||||
" AND opportunities.deleted=0";
|
||||
if (count($this->obm_ids) > 0)
|
||||
$query .= " AND opportunities.assigned_user_id IN ('" . implode("','",$this->obm_ids) . "')";
|
||||
$query .= " GROUP BY sales_stage,".
|
||||
db_convert('opportunities.date_closed','date_format',array("'%Y-%m'"),array("'YYYY-MM'")) .
|
||||
" ORDER BY m";
|
||||
|
||||
return $query;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user