gpt4 book ai didi

javascript - 如何在sugarcrm中制作弹出窗口?

转载 作者:行者123 更新时间:2023-11-28 00:00:18 24 4
gpt4 key购买 nike

我是 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>';
}
}

自定义PopUpAccounts.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'} );
}

}

最佳答案

总结评论并详细说明:

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

因此,您需要调用数据库来确定帐户值(value)。我在详细 View 中进行了以下操作:

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>';
}
}

关于javascript - 如何在sugarcrm中制作弹出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31867854/

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