创建子列表并在suitescript 2.0中添加数据

时间:2018-05-17 06:25:48

标签: netsuite

如何在Suitlet中创建数据并将其添加到子列表中。我的问题是我想要第一个字段作为复选框,在其他字段我想要从销售订单中放置项目列表..但它不起作用..甚至复选框没有出现。你能告诉我怎么办吗?

/**
* @NApiVersion 2.0
* @NScriptType suitelet
*/

define(['N/ui/serverWidget'],function(serverWidget) {


function onRequest(context) {
 if (context.request.method === 'GET') {

var form = serverWidget.createForm({
 title : 'Simple Form with List type Sublist'
});
var sublist = form.addSublist({
 id : 'sublist',
 type : serverWidget.SublistType.LIST,
 label : 'List Type Sublist'
});
var checkbox = sublist.addField({
 id : 'id',
 label : 'Internal ID',
 type : serverWidget.FieldType.CHECKBOX
});
checkbox.updateDisplayType({displayType: serverWidget.FieldDisplayType.ENTRY});

var itm_id = sublist.addField({
 id : 'item_id',
 label : 'Internal ID',
 type : serverWidget.FieldType.TEXT
});


//sublist.setSublistValue({
// id : 'id',
// line : 1,
// value : "Text"
//});

//sublist.setSublistValue({
// id : 'item_id',
//line : 1,
// value : "Text"
//});


context.response.writePage(form);

 }

}

return {
 onRequest: onRequest
 };

 });

1 个答案:

答案 0 :(得分:2)

我能够创造。请查看以下

SELECT   TRUNC (SYSDATE - (ROWNUM / (24 / 9)), 'HH24') AS the_hour
   FROM   DUAL
CONNECT BY   ROWNUM <= ROUND ( (724 / 9), 0);