在弹出窗口中显示字段为 NULL 的记录 window

Show records where a field is NULL inside the pop-up window

我能够过滤当我们点击子面板内的 select 按钮时出现的记录。可以通过覆盖 $initial_filter 值来完成,如下所示:

public function display($widget_data, $additionalFormFields = null, $nonbutton = false) {
    global $app_strings; $initial_filter = '';
    $initial_filter.='&SOME_FIELD='.urlencode("SOMEVALUE");
}

当弹出窗口打开时,初始过滤器将用作 $_GET 参数,因此它会知道要显示哪些记录

现在棘手的部分是我想弄清楚如何过滤它,以便它显示 SOME_FIELD 为空的记录……我尝试了 SOME_FIELD=nullSOME_FIELD=false 之类的东西但是它不起作用......如果有人能提出任何建议,我们将不胜感激。

您将需要修改列表视图查询和数据获取逻辑。查看以下详细信息以获得进一步帮助:

仅限列表视图custom/modules/MODULE_NAME/views/view.list.php

下面是帮助代码:

require_once('include/MVC/View/views/view.list.php');
class MODULE_NAMEViewList extends ViewList {

    function listViewProcess() {
        global $current_user;
        $this->params['custom_where'] = ' AND module_name.name = "test" ';

        parent::listViewProcess();
}

}



对于列表和弹出视图(两者)

您需要更改 create_new_list_query 函数中实际准备查询的逻辑。一些模块在 bean 级别覆盖了它(例如,参见 modules/Leads/Lead.php)。

如果你想以升级安全的方式覆盖它,那么在自定义目录中创建一个文件,例如:custom/modules/Leads/Lead.php,然后从核心 bean class 扩展它,如下所示:

<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');

require_once('modules/Leads/Lead.php');
class CustomLead extends Lead {

    function create_new_list_query($order_by, $where,$filter=array(),$params=array(), $show_deleted = 0,$join_type='', $return_array = false,$parentbean=null, $singleSelect = false, $ifListForExport = false)
    { 
        // Code from create_new_list_query in and then modify it accordingly. 
    }
}

在此位置注册新 bean class:custom/Extension/application/Ext/Include/custom_leads_class.php 注册代码如下所示:

<?php
$objectList['Leads'] = 'Lead';
$beanList['Leads'] = 'CustomLead';
$beanFiles['CustomLead'] = 'custom/modules/Leads/Lead.php';
?>