我有一个 SuiteScript,它会在任何案例更新的 AfterSubmit 上触发。对于正常更新,它工作正常。
但是当我尝试在线编辑案例时(通过案例搜索),该事件没有被触发。
在脚本部署期间,我是否需要配置任何特定的东西来处理内联编辑?
请找到我用来识别 xedit 操作的脚本。
function handleSupportCaseCreateUpdateReqeust(type, form, request) {
try {
if(type == 'xedit'){
nlapiLogExecution('AUDIT', 'TFSNSIntegrator Log', 'Type of the event is :'+ type);
}
} catch (e) {
nlapiLogExecution('ERROR', 'Exception', e.message);
}