0
下面的代碼是選擇存款的訂單項。它將記錄保存到Net suite.But我只想選擇行項目,並沒有發生。下面的代碼是將記錄保存到Netsuite,我想選擇訂單項。我不想保存記錄
function OnPageInit()
{
var search = nlapiSearchRecord(null, 'customsearch322');
nlapiLogExecution('DEBUG', 'creating a `enter code here`deposit');
var d = nlapiCreateRecord('depo' + 'sit');
d.setFieldValue('department', 13);
d.setFieldValue('trandate', nlapiDateToString(new Date()));
d.setFieldValue('memo', 'created in code');
d.selectNewLineItem('other');
d.setCurrentLineItemValue('other','entity', 41877);
d.setCurrentLineItemValue('other','department', 13);
d.setCurrentLineItemValue('other','account', 135);
d.setCurrentLineItemValue('other','amount',23);
d.setCurrentLineItemValue('other','memo','Tgh');
d.commitLineItem('other');
// iF uncomment tbelow line it save records to Netsuite
//var id = nlapiSubmitRecord(d, true);
}
這是否對你有意義這是爲什麼正確的代碼,而不是你的第一個版本? – erictgrubaugh
是的,我剛剛開始學習suite-script..first版本創建新記錄並將其保存在提交功能。第二個版本是選擇行項目,其中1是行項目號..現在我已使所有的項目動態,這是工作正常..謝謝。 –