SugarCRM-点击“保存”按钮后如何获取POPUP?

时间:2013-03-06 18:02:36

标签: popup sugarcrm editview

我想在单击某个模块的编辑视图中保存(示例联系人)时弹出一些消息(稍后我会在弹出窗口中获得选项确定和取消。)。

我的功能

YAHOO.SUGAR.MessageBox.show({msg: 'Foo'} );
当我把它放在editviewdefs.php的顶部时,

正在工作(我也必须包括 cache/include/javascript/sugar_grp_yui_widgets.js))文件,当打开该视图时,我弹出窗口。但我希望它在Save上弹出,而不是在打开EditView时(这只是测试显示YAHOO函数正在运行)。因此,我尝试在customJavascript.js中创建单独的custom/modules/Contacts文件:

    //<script type="text/javascript"
 src="cache/include/javascript/sugar_grp_yui_widgets.js"></script>
    function check_custom_data()
    {
    YAHOO.SUGAR.MessageBox.show({msg: 'Foo'} );

    }

我修改了custom/modules/Contacts/metadata/editviewdefs.php

<?php
$module_name = 'Contacts';
$viewdefs ['Contacts'] = 
array (
  'EditView' => 
  array (
    'templateMeta' => 
    array (
      'form' => 
      array (
        'hidden' => 
        array (
          0 => '<input type="hidden" name="opportunity_id" value="{$smarty.request.opportunity_id}">',
          1 => '<input type="hidden" name="case_id" value="{$smarty.request.case_id}">',
          2 => '<input type="hidden" name="bug_id" value="{$smarty.request.bug_id}">',
          3 => '<input type="hidden" name="email_id" value="{$smarty.request.email_id}">',
          4 => '<input type="hidden" name="inbound_email_id" value="{$smarty.request.inbound_email_id}">',
        ),
      ),

      array(
         'buttons' =>
        array (
         0 =>
          array(
           'customCode' =>
            '<input title="Save [Alt+S]" accessKey="S" onclick="this.form.action.value=\'Save\'; return check_custom_data();" type="submit" name="button" value="'.$GLOBALS['app_strings']['LBL_SAVE_BUTTON_LABEL'].'">',
          ),
         1 =>'Cancel'
        )
      ),
        'includes'=> array(
   array('file'=>'custom/modules/Contacts/customJavascript.js'),
      ),
..........
.......

但是当我在EditView中单击Save时没有任何反应,但我想在那一刻弹出消息(稍后我会添加OK和Cancel选项)。

我做错了什么? 谢谢

更新了只有某些条件弹出的代码:

....
     window.formToCheck = formname;

        var contactTypeField = document.getElementById('first_name');
        if (contactTypeField.value == 'Tori')
        {
        if (confirm("This dialog will pop-up whenever the user click on the Save button. "
                + "If you click OK, then you can execute some custom code, and then "
                + "execute the old form check function, which will process and submit "
                + "the form, using SugarCRM's standard behavior.")) {

            var customCodeVariable = 5;
            customCodeVariable = 55 + (customCodeVariable * 5);

            return window.old_check_form(formname);
        }

        return false;
        }

2 个答案:

答案 0 :(得分:11)

在SugarCRM中有很多方法可以做到这一点,这使得它既强大又有时很难定制 - 因为有很多不同的选择可供你使用。

要点击“保存”按钮进行某种弹出或任何自定义日志,我建议使用以下解决方案,而不是更改editviewdefs

以下解决方案不需要您修改任何核心SugarCRM文件,因此它是升级安全的,可以轻松安装在另一个实例上。

您需要做的是创建一个自定义可安装程序包,并使用Module Loader将其安装到SugarCRM中。

这是您最终需要最终得到的目录结构的布局:

SugarModuelPopUp
   ->custom
      ->include
         ->customPopUps
            ->custom_popup_js_include.php
            ->customPopUpContacts.js
   ->manifest.php

创建SugarModuelPopUp文件夹,该文件夹将作为此自定义程序包的根目录服务。

SugarModuelPopUp内,创建一个名为manifest.php的新PHP文件。该文件告诉SugarCRM如何安装软件包。

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' => 'Kyle Lowry',
        'description' => 'Adds pop-up dialog on save on Contacts module.',
        'icon' => '',
        'is_uninstallable' => true,
        'name' => 'Pop-Up Dialog On Save',
        'published_date' => '2013-03-06 12:00:00',
        'type' => 'module',
        'version' => 'v1',
        'remove_tables' => 'prompt'
);

$installdefs = array(
        'id' => 'customSugarMod1',
        'copy' => array(
                array(
                        'from' => '<basepath>/custom/',
                        'to' => 'custom/'
                )
        ),
        'logic_hooks' => array(
                array(
                        'module' => 'Contacts',
                        'hook' => 'after_ui_frame',
                        'order' => 1,
                        'description' => 'Creates pop-up dialog on save action.',
                        'file' => 'custom/include/customPopUps/custom_popup_js_include.php',
                        'class' => 'CustomPopJs',
                        'function' => 'getContactJs'
                )
        )
);

接下来,您需要创建custom文件夹。在其中,创建include文件夹。在其中,创建customPopUps文件夹。

接下来,您需要创建custom_popup_js_include.php文件。此文件控制自定义JavaScript包含在页面上的时间和位置。粘贴以下代码:

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

接下来,您需要创建customPopUpContacts.js文件,该文件会在单击“联系人”模块EditView中的“保存”按钮后创建自定义弹出窗口。粘贴以下代码:

function override_check_form() {
    // store a reference to the old form checking function
    window.old_check_form = window.check_form;
    // set the form checking function equal to something custom
    window.check_form = function(formname) {
        window.formToCheck = formname;
        // you can create the dialog however you wish, but for simplicity I am
        // just using standard javascript functions
        if (confirm("This dialog will pop-up whenever the user click on the Save button. "
                + "If you click OK, then you can execute some custom code, and then "
                + "execute the old form check function, which will process and submit "
                + "the form, using SugarCRM's standard behavior.")) {
            // you have clicked OK, so do some custom code here,
            // replace this code with whatever you really want to do.
            var customCodeVariable = 5;
            customCodeVariable = 55 + (customCodeVariable * 5);
            // now that your custom code has executed, you can let
            // SugarCRM take control, process the form, and submit
            return window.old_check_form(formname);
        }
        // the user clicked on Cancel, so you can either just return false
        // and leave the person on the form, or you can execute some custom
        // code or do whatever else you want.
        return false;
    }
}

// call the override function, which will replace the old form checker
// with something custom
override_check_form();

创建上述目录结构,并在正确的文件夹中创建文件后,即可创建项目的ZIP文件。请务必注意,对于SugarCRM可安装程序包,ZIP文件必须包含项目目录中的所有内容。也就是说,你不会压缩SugarModuelPopUp文件夹,而是内部的所有内容。

接下来,您将需要使用SugarCRM的模块加载器安装自定义程序包。您可以通过以下方式执行此操作:

  1. 转到SugarCRM管理页面。
  2. 点击“Module Loader”。
  3. 点击“浏览”并选择ZIP包。
  4. 点击“上传”按钮。
  5. 上传软件包后,在可安装软件包列表中找到其条目,然后单击“安装”;继续使用标准的SugarCRM安装过程。
  6. 安装此自定义程序包后,只要单击“联系人”模块EditView中的“保存”按钮,就会弹出一个对话框。您可以将对话框代码替换为您想要的任何内容,以便记录日志,因为您不会修改构成它的代码。

    此外,您应该能够将此项目用作SugarCRM EditViews的未来功能添加的基础。单击“保存”按钮时使用check_form方法的任何模块都可以执行此类自定义逻辑。

    例如,要对帐户执行此操作,您将执行以下操作:

    在manifest.php中为Accounts。

    添加一个条目到logic_hooks数组元素
    'logic_hooks' => array(
                    array(
                            'module' => 'Contacts',
                            'hook' => 'after_ui_frame',
                            'order' => 1,
                            'description' => 'Creates pop-up dialog on save action.',
                            'file' => 'custom/include/customPopUps/custom_popup_js_include.php',
                            'class' => 'CustomPopJs',
                            'function' => 'getContactJs'
                    ),
                    array(
                            'module' => 'Accounts',
                            'hook' => 'after_ui_frame',
                            'order' => 1,
                            'description' => 'Creates pop-up dialog on save action.',
                            'file' => 'custom/include/customPopUps/custom_popup_js_include.php',
                            'class' => 'CustomPopJs',
                            'function' => 'getAccountJs'
                    )
            )
    

    为帐户JavaScript的CustomPopJs文件中的custom_popup_js_include.php添加新方法。

    function getAccountJs($event, $arguments) {
            // Prevent this script from being injected anywhere but the EditView.
            if ($_REQUEST['action'] != 'EditView') {
                // 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>';
        }
    

    创建customPopUpAccounts.js文件,并使用customPopUpContacts.js代码作为所需功能的基础。

    在SugarCRM中还有其他方法可以实现您的目标,但这是我个人使用的方法,它具有升级安全且可以轻松迁移到其他SugarCRM实例的好处。

答案 1 :(得分:2)

我有SugarCRM CE 6.5,这个方法对我不起作用(我的意思是创建新模块)。但是,我修改了logic_hook并将文件直接放在custom / include文件夹中,它可以工作!