gpt4 book ai didi

php - 在 SuiteCRM 中使用原始 SQL

转载 作者:行者123 更新时间:2023-11-29 02:22:15 26 4
gpt4 key购买 nike

因此,这是我第一次接触 SuiteCRM 或任何其他 CRM。我需要在 CRM 未为我们的报价系统使用的表上查询数据库。因此,我使用模块生成器创建了模块并修改了模块文件,以便它使用正确的表。问题在于,当查询运行时,SuiteCRM 仍然添加其默认的 where 子句并将 deleted = 0 条件添加到查询中。因此,我尝试使用 this SO page 中描述的方法.这不起作用,因为我得到一个错误,我正在使用 undefined variable (db) 并且我正在调用非对象上的成员函数 fetchByAssoc()。现在,我将代码放在 moduleName.php 文件中。也许那是我的问题。我不知道,因为我从未参与过任何其他 CRM 项目。如果有人能指出我需要做什么才能查询默认 CRM 表以外的其他表,然后在 dashlet 中显示该查询的结果,我将向您指出正确的方向,将不胜感激您的帮助.我修复了错误。他们是我的错,因为我没有引用该对象。因此,根据要求,这是我的一些代码。这是我的 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;
}
}
?>

最佳答案

问题出在 foreach 循环上。我删除了它,现在它工作正常。在分析代码时,while 循环实际上执行了所需的迭代。因此,通过添加 foreach,发生的事情是代码遍历从数据库返回的每一行,然后做一些奇怪的事情——例如,它只会返回每个值应该是什么的部分字符串。由于我在 3 个字段上查询,它还会在每一行上循环 3 次,从而从每一行创建 3 个不同的行。因此,对于遇到类似问题的任何人,这就是工作代码的样子。

<?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']))
$this->height = $def['height'];

parent::Dashlet($id);

$this->isConfigurable = true;
$this->hasScript = false;

// 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, revnbr, crmname, ShipToCity FROM quotes.quotehdr LIMIT 10";
$result = $GLOBALS["db"]->query($sql);
$this->quoteData = "Need headers here when we determine exact fields....";
while($quotes = $GLOBALS["db"]->fetchByAssoc($result)){

$this->quoteData .="<tr><td width = \"30%\">".$quotes["QuoteNbr"].' '.$quotes['revnbr']."</td><td width = \"30%\">".$quotes["crmname"]."</td><td width = \"30%\">".$quotes["ShipToCity"]."</td></tr>";

}

$ss = new Sugar_Smarty();
//assign variables
// $ss->assign('greeting', $this->dashletStrings['LBL_GREETING']);
$ss->assign('greeting', "This is the Greeting....");
$ss->assign('quoteData', $this->quoteData);
$ss->assign('height', $this->height);

$str = $ss->fetch('modules/Home/Dashlets/FrtwQuotesDashlet/FrtwQuotesDashlet.tpl');
return parent::display().$str; // return parent::display for title and such
}
}
?>

关于php - 在 SuiteCRM 中使用原始 SQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29781597/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com