mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
99 lines
4.1 KiB
PHP
99 lines
4.1 KiB
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
|
|
/* crmv@208173 */
|
|
|
|
/**Function to get the top 5 Accounts order by Amount in Descending Order
|
|
*return array $values - array with the title, header and entries like Array('Title'=>$title,'Header'=>$listview_header,'Entries'=>$listview_entries) where as listview_header and listview_entries are arrays of header and entity values which are returned from function getListViewHeader and getListViewEntries
|
|
*/
|
|
function getTopAccounts($maxval,$calCnt)
|
|
{
|
|
global $app_strings;
|
|
global $adb;
|
|
global $current_language;
|
|
global $current_user;
|
|
global $table_prefix;
|
|
global $display_empty_home_blocks;
|
|
|
|
$log = LoggerManager::getLogger('top accounts_list');
|
|
$log->debug("Entering getTopAccounts() method ...");
|
|
|
|
require_once("data/Tracker.php");
|
|
require_once('modules/Potentials/Potentials.php');
|
|
require_once('include/logging.php');
|
|
require_once('include/ListView/ListView.php');
|
|
require('user_privileges/user_privileges_'.$current_user->id.'.php');
|
|
require('user_privileges/sharing_privileges_'.$current_user->id.'.php');
|
|
|
|
$current_module_strings = return_module_language($current_language, "Accounts");
|
|
|
|
$list_query = "select {$table_prefix}_potential.potentialname, {$table_prefix}_account.accountid, {$table_prefix}_account.accountname, ".
|
|
"sum({$table_prefix}_potential.amount) as amount from {$table_prefix}_potential ".
|
|
"inner join {$table_prefix}_crmentity on ({$table_prefix}_potential.potentialid={$table_prefix}_crmentity.crmid) ".
|
|
"left join {$table_prefix}_account on ({$table_prefix}_potential.related_to={$table_prefix}_account.accountid) ";
|
|
$list_query .= " WHERE {$table_prefix}_crmentity.deleted = 0 {$where}
|
|
AND {$table_prefix}_potential.potentialid>0";
|
|
$list_query .= " AND {$table_prefix}_crmentity.smownerid='{$current_user->id}' ".
|
|
"and ".$table_prefix."_potential.sales_stage not in ('Closed Won', 'Closed Lost',
|
|
'{$app_strings['LBL_CLOSE_WON']}','{$app_strings['LBL_CLOSE_LOST']}')";
|
|
if($calCnt == 'calculateCnt') {
|
|
$list_result_rows = $adb->query(mkCountQuery($list_query));
|
|
return $adb->query_result($list_result_rows, 0, 'count');
|
|
}
|
|
$list_query .= " group by {$table_prefix}_account.accountid,{$table_prefix}_potential.potentialname,{$table_prefix}_account.accountname order by amount desc";
|
|
$list_result=$adb->limitQuery($list_query,0,$maxval);
|
|
$open_accounts_list = [];
|
|
$noofrows = $adb->num_rows($list_result);
|
|
|
|
if ($noofrows) {
|
|
for($i=0;$i<$noofrows;$i++)
|
|
{
|
|
$open_accounts_list[] = [
|
|
'accountid' => $adb->query_result($list_result,$i,'accountid'),
|
|
'accountname' => $adb->query_result($list_result,$i,'accountname'),
|
|
'amount' => $adb->query_result($list_result,$i,'amount'),
|
|
];
|
|
}
|
|
}
|
|
|
|
$title = [];
|
|
$title[] = 'myTopAccounts.gif';
|
|
$title[] = $current_module_strings['LBL_TOP_ACCOUNTS'];
|
|
$title[] = 'home_myaccount';
|
|
|
|
$header = [];
|
|
$header[] = $current_module_strings['LBL_LIST_ACCOUNT_NAME'];
|
|
$rate_symbol = getCurrencySymbolandCRate(fetchCurrency($current_user->id));
|
|
$rate = $rate_symbol['rate'];
|
|
$curr_symbol = $rate_symbol['symbol'];
|
|
$header[] = $current_module_strings['LBL_LIST_AMOUNT'].'('.$curr_symbol.')';
|
|
$header[] = $current_module_strings['LBL_POTENTIAL_TITLE'];
|
|
|
|
$entries=[];
|
|
foreach($open_accounts_list as $account)
|
|
{
|
|
$value=[];
|
|
$Top_Accounts = (strlen($account['accountname']) > 20) ? (substr($account['accountname'],0,20).'...') : $account['accountname'];
|
|
$value[]='<a href="index.php?action=DetailView&module=Accounts&record='.$account['accountid'].'">'.$Top_Accounts.'</a>';
|
|
//crmv@92519
|
|
$val = convertFromMasterCurrency($account['amount'],$rate);
|
|
$value[] = formatUserNumber($val);
|
|
//crmv@92519e
|
|
$entries[$account['accountid']]=$value;
|
|
}
|
|
|
|
$values = [
|
|
'ModuleName'=>'Accounts',
|
|
'Title'=>$title,
|
|
'Header'=>$header,
|
|
'Entries'=>$entries
|
|
];
|
|
|
|
$log->debug("Exiting getTopAccounts method ...");
|
|
if (($display_empty_home_blocks && count($entries) == 0 ) || (count($entries)>0))
|
|
return $values;
|
|
}
|