SS2.0显示记录消息

时间:2016-10-25 17:18:02

标签: netsuite suitescript

我想使用SS2.0和'new'N / ui / message模块在用户查看记录时显示警告或错误。实际上,我想了解如何在记录视图上运行任何2.0客户端脚本代码。

我管理了一个我可以运行的例子,它可以在控制台上运行:

require(['N/currentRecord', 'N/ui/message'],
    function(curr, mess) {
        var rec = curr.get();
        var status = rec.getValue('status');
        if (status === 'Unapproved Payment') {
            var myMsg = mess.create({
                title: "PAYMENT ERROR",
                message: status,
                type: mess.Type.ERROR
            }).show({
                duration: 500000
            });
        }});

在编辑模式(pageInit或任何地方)运行正常,但尚未找到在“查看”上加载和执行的方法。这在2.0中是否可能?我还必须使用1.0技巧吗?

4 个答案:

答案 0 :(得分:3)

自2018.2版以来,他们在N/ui/serverWidget模块中添加了一个名为Form.addPageInitMessage(options)的新方法,并且完全执行OP想要做的事情。

鉴于上面的示例,它应该看起来像这样。

/**
 *@NApiVersion 2.0
 *@NScriptType UserEventScript
*/
define(['N/ui/serverWidget', 'N/record'],
    function(serverWidget, record) {
        function beforeLoad(context) {

          var rec = context.newRecord;
          var status = rec.getValue('status');
          if (status === 'Unapproved Payment') {
           var myMsg = mess.create({
                title: "PAYMENT ERROR",
                message: status,
                type: mess.Type.ERROR,
                duration: 500000
           });
           context.form.addPageInitMessage({message: myMsg});
        }

    return {
        beforeLoad: beforeLoad 
    };
});

答案 1 :(得分:2)

这是一个有效的例子。这不好(不是很便携,当然也不是捆绑友好的)但是它有效:

服务器端:

/**
 *@NApiVersion 2.x
 *@NScriptType UserEventScript
 */
define(['N/record', 'N/log', 'N/ui/serverWidget'],
    function(record, log, ui) {
        function beforeLoad(context) {
            log.debug({title:'before load with '+ context.type +' on '+ context.form.title});
            if (context.type != 'view') return;
            log.debug({title:'setting client script'});

            var inline = context.form.addField({
                id:'custpage_trigger_it',
                label:'not shown',
                type: ui.FieldType.INLINEHTML,
            });
            inline.defaultValue = "jQuery(function($){ require(['/SuiteScripts/testSS2/testSimpleClient'], function(mod){ console.log('loaded'); mod.showMessage();});});</script>";



            //context.form.clientScriptModulePath = './testSimpleClient.js';
        }


    return {
        beforeLoad: beforeLoad 
    };
});

客户端:

define(['N/ui/message', 'N/currentRecord'], function(msg, currentRecord){
    window.console.log('processing script');
    function showMessage() {
        var rec = currentRecord.get();
        window.console.log('record status is '+ rec.getValue('status'));
        if('Pending Approval' == rec.getValue('status')){
            var myMsg = msg.create({
                title: "Not Committed",
                message: rec.getValue('status'), //'Please Approve',
                type: msg.Type.ERROR
            }).show({
                duration: 10000
            });
        }
    }



    return {
        showMessage:showMessage
    };
});

答案 2 :(得分:0)

FWIW以下内容适用于编辑模式,但不适用于查看模式。 (请参阅我在2016年10月发布的有关黑客攻击的其他答案)我怀疑这个问题会在某个地方修复,因为类似的代码在SS1.0中已经工作了多年。如果您有商业案例,请向Netsuite提交支持案例。

用户事件脚本:

/**
 *@NApiVersion 2.x
 *@NScriptType UserEventScript
 */
define(['N/record', 'N/log'],
    function(record, log) {
        function beforeLoad(context) {
            log.debug({title:'before load with '+ context.type +' on '+ context.form.title});
            //if (context.type != 'view') return;
            log.debug({title:'setting client script'});
            context.form.clientScriptModulePath = './testSimpleClient.js'; //relative to the user event script file
        }

    return {
        beforeLoad: beforeLoad 
    };
});

testSimpleClient为:

define(['N/ui/message', 'N/currentRecord'], function(msg, currentRecord){
    window.console.log('processing script');
    function showMessage(rec) {
        window.console.log('record status is '+ rec.getValue('status'));
        //if('Pending Approval' == rec.getValue('status')){
            var myMsg = msg.create({
                title: "PAYMENT ERROR",
                message: rec.getValue('status'), //'Please Approve',
                type: msg.Type.ERROR
            }).show({
                duration: 100000
            });
        //}
    }

    setTimeout(function(){
        showMessage(currentRecord.get());
    }, 1500);


});

答案 3 :(得分:0)

基于帮助主题:

A current record instance can be accessed via the following ways:
 - The context object that gets passed into the client script entry point.

在查看模式下,您只能附加用户事件脚本(beforeLoad)。

N / currentRecord模块仅在客户端脚本上运行,这就是它无效的原因。

改为使用N /记录模块。