开发者问题收集

“SuiteScript 2.0 入口点脚本必须实现一个脚本类型函数”错误

2020-09-25
7345

我正尝试将此代码上传到 NetSuite

/**
 * @NApiVersion 2.0
 * @NScriptType ClientScript
 * @NModuleScope SameAccount
 */
define(['N/ui/dialog'],

function(dialog){

   /**
     * Validation function to be executed when sublist line is committed.
     *
     * @param {Object} context
     * @param {Record} context.currentRecord - Current form record
     * @param {string} context.sublistId - Sublist name
     *
     * @returns {boolean} Return true if sublist line is valid
     *
     * @since 2015.2
     */





   function validadeRate(context){

    try{

        var currentRecord = context.currentRecord
        var sublistName = context.sublistId

        if(sublistname ==='expense'){

            var categ = CurrentRecord.getCurrentSublistValue({
                sublistId: sublistName,
                fieldId: 'category'

            })
            if ((categ = 259) && (rate != 0.819)){
                var currIndex = currentRecord.getCurrentSublistIndex({
                    sublistId: sublistName
                })
             currIndex +=1

             var options = {
                title : 'Rate Incorreto!',
                message:'Por favor, verifique o valor informado no campo Rate na linha ' + currIndex + '.',                            
                }
                dialog.alert(options).then(function (result) { }).catch(function(result){})
                    
                return false
             }
            }
            return true
    }
    catch(ex){
        log.error('validateLine: ', ex.message)
    }

   }


    return {

        validadeRate : validadeRate

    }
});

但是,当我尝试将文件上传到 Netsuite 时,出现了此错误:

Notice

SuiteScript 2.0 entry point scripts must implement one script type function.*

这是验证某一费用类别的费率的功能的一部分。

我该如何解决这个问题?

提前致谢!

3个回答

这是 NetSuite 的“入口点脚本验证”,表示该脚本无效,因为它不包含预定义的入口点(事件)函数之一。这些函数是:

fieldChanged

lineInit

pageInit

postSourcing

saveRecord

sublistChanged

validateDelete

validateField

validateInsert

validateLine

您可以绕过此验证并通过添加其中一个入口点上传脚本,即使它不执行任何操作。例如,在您的 function (dialog) 函数中,您可以添加一个 pageInit() 函数:

function pageInit(scriptContext) {}

并将您的返回块更改为:

return {

    validadeRate : validadeRate,
    pageInit: pageInit

}

现在它有一个有效的入口点,验证应该会通过。

但是,可能还有更简单的方法。看起来(根据 JSDoc 块),您的 validadeRate 函数应该在每次添加子列表行时触发。这正是 validateLine 入口点的用途。因此,您只需将返回块中的键更改为“validateLine”

return {
    validateLine: validadeRate
}

,NetSuite 就会知道每次添加一行时都调用 validadeRate

Krypton
2020-09-25

您已将其指定为客户端脚本模块,但尚未为任何客户端脚本入口点分配处理程序。请阅读帮助文档 SuiteScript 2.0 客户端脚本入口点和 API ,并在您的模块中实现任意一个入口点。

erictgrubaugh
2020-09-25

按如下方式更改返回函数。并测试一次。


return { validateLine : validadeRate

Phanikumar Jatavallabhula
2020-09-26