我正在尝试使用Suitelet中的n / record模块加载记录,但是出现以下错误:
org.mozilla.javascript.EcmaError: TypeError: Cannot read property "SALES_ORDER" from undefined
* @NApiVersion 2.x
* @NScriptType Suitelet
*/
define(['./form', 'N/record'],
function(form, record) {
function onRequest(context) {
if(context.request.method === 'GET'){
var ratingForm = form.build(context);
var customRec = record.load({
type: record.TYPE.SALES_ORDER,
id: 18
});
这是在表单内,我想加载一条记录,并使用现有的SALES_ORDER记录预填充我可以的任何字段。
也许我需要以其他方式来解决这个问题?
答案 0 :(得分:3)
如下更新您的record.load
var customRec = record.load({
type: record.Type.SALES_ORDER,
id: 18
});
您可以检出this以获取所有受支持的记录类型列表。