-3

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

谢谢

完成程序后我需要离开这个页面,并被重定向到我刚刚创建的记录

4

1 回答 1

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);
于 2019-06-13T17:00:32.833 回答