How I can customize query in view.popup in SugarCRM

前端 未结 1 1381
广开言路
广开言路 2020-12-19 06:50

I am are using SugarCRM 6.7, I wanna customize the listview query in popup. I need a custom query when I open the Accounts popup in Cases module.

I was created a fil

相关标签:
1条回答
  • 2020-12-19 07:18

    This is a way to customize the sql queries inside the popup( view.popup.php ) in SugarCRM.

    Create a file called view.popup.php in \custom\modules\< module >\views with this:

    if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
    
    class CustomAccountsViewPopup extends ViewPopup{
    
        public function listViewProcess(){
    
            parent::listViewProcess();
    
            $this->params['custom_select'] = " CUSTOM SELEC";
            $this->params['custom_from'] = "CUSTOM FROM";
            $this->where .= " CUSTOM WHERE CONDITION";
        }
    
        function CustomAccountsViewPopup(){
    
            parent::ViewPopup();
        }
    
        function preDisplay(){
            parent::preDisplay();       
    
        }
    }
    
    0 讨论(0)
提交回复
热议问题