NetSuite为记录上传文件

时间:2014-04-20 18:53:14

标签: netsuite

是否有办法允许用户通过在线表单上传文件并将其附加到记录中?我有一个自定义记录类型,潜在资源,我已经创建了一个在线表单。我们的想法是,任何人都可以使用在线表单创建潜在资源记录并上传该记录的简历。

2 个答案:

答案 0 :(得分:0)

我认为有一个文档类型字段:

Document
This lets you select a file cabinet document to preview or download. The field is searchable and can be added to search results.
Note: The user of the document custom field must have file cabinet access in order to view, select or upload documents.

您可能需要稍微玩一下角色。

答案 1 :(得分:0)

通过在线表格,你指的是一个kitlet?

我相信你可以通过一个像这样的

这样的套件来做到这一点
function imageUpload(request, response) {

if (request.getMethod() === 'GET') {

    var form = nlapiCreateForm(formTitle);

    var file = form.addField('file1', 'file', 'Logo');
    file.setMandatory(true);

    form.addSubmitButton('SUBMIT');

    response.writePage(form);
}
else {
    var file = request.getFile('file1');

    // 133 is the id of the folder you want to save the file
    file.setFolder(133);
    file.setIsOnline(true);

    var id = nlapiSubmitFile(file);

}

}