gpt4 book ai didi

javascript - Netsuite - 为部门设置行项目值

转载 作者:行者123 更新时间:2023-11-29 18:01:36 24 4
gpt4 key购买 nike

我正在尝试使用 JS 脚本在 netsuite 上进行自定义批量更新,但它不起作用。

代码:

function updateDepartment(rec_type, rec_id)
{
var transaction = nlapiLoadRecord(rec_type, rec_id);
transaction.setLineItemValue ('item','department', nlapiGetContext().getSetting('SCRIPT','custscript_dept_update'));
nlapiSubmitRecord(transaction, false, true);
}

最佳答案

nlobjRecord.setLineItemValue 需要行号。您需要执行以下操作:

var dept = nlapiGetContext().getSetting('SCRIPT','custscript_dept_update');
for(var i = transaction.getLineItemCount('item'); i> 0; i--){
transaction.setLineItemValue('item', 'department', i, dept);
}

关于javascript - Netsuite - 为部门设置行项目值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34532366/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com