2

So, this is my first encounter with SuiteCRM or any other CRM for that matter. I need to query the db on a table that is not used by the CRM for our quote system. So, I have created the module using module builder and modified the module file so that it uses the correct table. The problem is that when the query runs, SuiteCRM still adds its default where clauses and adds the deleted = 0 condition to the query. So, I tried using the method that is described on this SO page. That doesn't work as I get the an error that I am using an undefined variable (db) and that I am calling to a member function fetchByAssoc() on a non-object. Now, I am placing the code in the moduleName.php file. Maybe that is my issue. I don't know as I have never worked on any other CRM project. If anyone can point me in the right direction as to what I will need to do to be able to query a different table other than the default CRM table and then show the results from that query inside of a dashlet, your help will be greatly appreciated. I got the errors fixed. They were my fault as I had not referenced the object. So, as requested, here is some of my code. This is my php file.

    <?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; 
    }
}
?>
Star
  • 2,969
  • 5
  • 28
  • 42
trouble706
  • 38
  • 2
  • 15
  • The link you've supplied should work. Can you provide some of the code? Also, where are you running the code? – Jim Apr 22 '15 at 11:01
  • I did add the code from the main php file. I am not sure that I understand what you meant when you asked where I am running the code. – trouble706 Apr 22 '15 at 15:28
  • I can't see anything wrong with the code you have. Could you check your `sugarcrm.log` (or `suitecrm.log` on newer installs) file and see if there's any errors in there? – Jim Apr 23 '15 at 08:17

1 Answers1

2

The issue was with the foreach loop. I removed it and now it works fine. In analyzing the code, the while loop actually does the iterations needed. So, by adding the foreach, what was happening was that the code was iterating over each row returned from the db and then doing some weird stuff -- as in, it would only return a partial string of what each value should be. Since I am querying on 3 fields, it would also loop over each row 3 times, thereby creating 3 different rows from each row. So, for anyone with similar issue, this is how working code looks.

<?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
    }
}
?>
trouble706
  • 38
  • 2
  • 15