如何在sugarcrm中创建一个弹出窗口?

时间:2015-08-07 00:27:51

标签: javascript php jquery sugarcrm

我是SugarCRM的新手,所以请耐心等待。我想在SugarCRM中添加一个弹出窗口。每当用户点击状态设置为“无效”的帐户时,我都需要显示此弹出窗口。

现在,我正在尝试按照此链接中提到的说明进行操作,除非我使用的更加花哨?弹出窗口,它基于YUI 2 SimpleDialog组件。

SugarCRM- How to get POPUP when click on Save button?

目前,当我点击编辑按钮编辑帐户时,会出现一个弹出窗口。但是,我希望它出现在DetailView中,当帐户处于非活动状态时,应显示弹出窗口。

到目前为止,我的代码看起来像这样:

manifest.php:

        <?php
        $manifest = array(
                array(
                        'acceptable_sugar_versions' => array()
                ),
                array(
                        'acceptable_sugar_flavors' => array()
                ),
                'readme' => 'Please consult the operating manual for detailed installation instructions.',
                'key' => 'customSugarMod1',
                'author' => 'Abhay Hans',
                'description' => 'Adds pop-up Message when an account is inactive.',
                'icon' => '',
                'is_uninstallable' => true,
                'name' => 'Pop-Up Dialog if inactive account',
                'published_date' => '2015-07-08 12:00:00',
                'type' => 'module',
                'version' => 'v1.7',
                'remove_tables' => 'prompt'
        );

        $installdefs = array(
                'id' => 'customSugarMod1',
                'copy' => array(
                        array(
                                'from' => '<basepath>/custom/',
                                'to' => 'custom/'
                        )
                ),
                'logic_hooks' => array(
                        array(
                                'module' => 'Accounts',
                                'hook' => 'after_ui_frame',
                                'order' => 1,
                                'description' => 'Creates pop-up message on load if user inactive',
                                'file' => 'custom/include/customPopUps/custom_popup_js_include.php',
                                'class' => 'CustomPopJs',
                                'function' => 'getAccountJs'
                        )
                )
        );

Custom_popup_js_include.php:

    <?php
    // prevent people from accessing this file directly
    /*if (! defined('sugarEntry') || ! sugarEntry) {
        die('Not a valid entry point.');
    }*/
    class CustomPopJs {
        function getAccountJs($event, $arguments) {
            // Prevent this script from being injected anywhere but the EditView.
            /*if ($_REQUEST['action'] != 'DetailView' ) {
                // we are not in the EditView, so simply return without injecting
                // the Javascript
                return;
            }*/
            echo '<script type="text/javascript" src="custom/include/customPopUps/customPopUpAccounts.js"></script>';
            echo '<script type="text/javascript" src="custom/include/javascript/sugarwidgets/SugarYUIWidgets.js"></script>';
        }
    }

customPopUpAccounts.js

document.addEventListener('DOMContentLoaded', function() {
    checkUserStatus();
}, false);


function checkUserStatus()
{
    if($("#aq_account_status_c").val() != "Active" )
    {   
        YAHOO.SUGAR.MessageBox.show({msg: 'This account is inactive ', title: 'Inactive Account'} );
    }

}

1 个答案:

答案 0 :(得分:1)

总结评论,并详细说明:

  • EditView有几个带id属性的输入字段,可作为Javascript值获取的良好标识符。
  • 但是,详细视图没有。它创建一个表,并根据定义将值放在它所属的位置。

因此,您需要进行数据库调用以确定帐户值。我的详细信息视图中有以下内容:

function getAccountJs($event, $arguments) {

    //This is in case the DB connection file isn't included by default  
    require_once 'include/database/DBManagerFactory.php';

    echo '<script type="text/javascript" src="custom/include/javascript/sugarwidgets/SugarYUIWidgets.js"></script>';    
    // Check if the view is Detail View, if so, check the DB if account is inactive
    if ($_REQUEST['action'] == 'DetailView' ) {

        $accountID = $_REQUEST["record"];

        $db =  DBManagerFactory::getInstance();
        $query =    "select aq_account_status_c  from accounts_cstm
                    where id_c = '". $accountID . "'";
        $result = $db->query($query);   
        $row = $db->fetchByAssoc($result);  

        //If the returned row is not "Active" show 
        if ($row['aq_account_status_c'] != "Active") {
            echo "<script>YAHOO.SUGAR.MessageBox.show({msg: 'This account is inactive ', title: 'Inactive Account'} );</script>";
        }
    }

    //If it is Edit view, use the same javascript as before
    if ($_REQUEST['action'] == 'EditView' ) {
        echo '<script type="text/javascript" src="custom/include/customPopUps/customPopUpAccounts.js"></script>';
    }   
}