我试图用相应的 trandate(提前 2 个月)的值填充自定义字段,例如,如果 trandate 是 13/05/2019,那么自定义字段应该是 13/07/2019。我在我的客户端脚本(字段更改函数)中使用 nlapiAddMoths() 但收到错误。谁能帮我这个?
function fieldchanged(type,name)//in netsuite, function will be field changed
{
if (name=='trandate')
{
var newdate = nlapiAddMonths(trandate, 2)
nlapiSetFieldValue('custbody_eta_date_test',newdate,true);//custbody_eta_date_test is my custom field where i want the incremented date to be populated
}
}