因此,这是我第一次遇到 SuiteCRM 或任何其他 CRM。我需要在 CRM 未用于我们报价系统的表上查询数据库。因此,我使用模块生成器创建了模块并修改了模块文件,以便它使用正确的表。问题是,当查询运行时,SuiteCRM 仍然会添加其默认的 where 子句,并将 deleted = 0 条件添加到查询中。因此,我尝试使用此 SO 页面上描述的方法. 这不起作用,因为我收到一个错误,即我正在使用未定义的变量 (db),并且我正在调用非对象上的成员函数 fetchByAssoc()。现在,我将代码放在 moduleName.php 文件中。也许那是我的问题。我不知道,因为我从未参与过任何其他 CRM 项目。如果有人能指出我需要做什么才能查询默认 CRM 表以外的其他表,然后在仪表板内显示该查询的结果,我将不胜感激. 我修复了错误。他们是我的错,因为我没有引用该对象。因此,根据要求,这是我的一些代码。这是我的 php 文件。
<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
require_once('include/Dashlets/Dashlet.php');
class FrtwQuotesDashlet extends Dashlet {
var $height = '200'; // height of the dashlet
var $quoteData = "";
/**
* Constructor
*
* @global string current language
* @param guid $id id for the current dashlet (assigned from Home module)
* @param array $def options saved for this dashlet
*/
function FrtwQuotesDashlet($id, $def) {
$this->loadLanguage('FrtwQuotesDashlet');
if(!empty($def['height'])) // set a default height if none is set
$this->height = $def['height'];
parent::Dashlet($id); // call parent constructor
$this->isConfigurable = true; // dashlet is configurable
$this->hasScript = false; // dashlet has javascript attached to it
// if no custom title, use default
if(empty($def['title'])) $this->title = $this->dashletStrings['LBL_TITLE'];
else $this->title = $def['title'];
}
/**
* Displays the dashlet
*
* @return string html to display dashlet
*/
function display() {
$sql = "SELECT QuoteNbr, crmname, ShipToCity FROM quotes.quotehdr LIMIT 10";
$result = $GLOBALS["db"]->query($sql);
$quoteData = "<table>";
while($quotes = $GLOBALS["db"]->fetchByAssoc($result)){
foreach ($quotes as $quote) {
$quoteData .="<tr><td>".$quote[0]."</td><td>".$quote[1]."</td><td>".$quote[2]."</td></tr>";
}
}
$ss = new Sugar_Smarty();
//assign variables
//$ss->assign('greeting', $this->dashletStrings['LBL_GREETING']);
$ss->assign('quoteData', $this->quoteData);
$ss->assign('height', $this->height);
$str = $ss->fetch('custom/modules/Home/FrtwQuotesDashlet/FrtwQuotesDashlet.tpl');
return parent::display().$str;
}
}
?>