将客户端脚本重定向到记录类型

时间:2019-06-13 16:37:14

标签: javascript netsuite clientscript

在客户端脚本中执行命令后,如何重定向到记录类型。更好的解释是,我在客户端脚本中,单击按钮后,会以另一种记录类型生成新记录,我想在那里重定向。

谢谢

执行完这些步骤后,我需要离开此页面,并重定向到我刚刚创建的记录

1 个答案:

答案 0 :(得分:1)

var newType = <NetSuite ID of record type>;

  // making new record code

var newId = newRecord.save();

  // performing the procedures

// Requires the N/url module
var output = url.resolveRecord({
    recordType: newType,
    recordId: newId,
    isEditMode: true
});

window.location.replace(output);