如何在 suitescript 2.0 中获取新创建的销售订单内部 ID?
How to get newly created sales order internal id in suitescript 2.0?
我正在编写一个 suitescript 来将订单详细信息发送到客户的电子邮件地址。
是否可以通过scriptContext或者类似的方法获取销售订单id?
我的功能是 运行 提交后的销售订单。
function afterSubmit(scriptContext){
soid = scriptContext.soid; //<--trying to get the sales order id
}
在 afterSubmit 中,您可以使用 scriptContext.newRecord.id
.
在此处查看 afterSubmit
文档:https://system.netsuite.com/app/help/helpcenter.nl?fid=section_4407992281.html
和 record.Record
对象成员文档在此处:https://system.netsuite.com/app/help/helpcenter.nl?fid=section_4267255811.html#bridgehead_4273190849
我正在编写一个 suitescript 来将订单详细信息发送到客户的电子邮件地址。
是否可以通过scriptContext或者类似的方法获取销售订单id?
我的功能是 运行 提交后的销售订单。
function afterSubmit(scriptContext){
soid = scriptContext.soid; //<--trying to get the sales order id
}
在 afterSubmit 中,您可以使用 scriptContext.newRecord.id
.
在此处查看 afterSubmit
文档:https://system.netsuite.com/app/help/helpcenter.nl?fid=section_4407992281.html
和 record.Record
对象成员文档在此处:https://system.netsuite.com/app/help/helpcenter.nl?fid=section_4267255811.html#bridgehead_4273190849