我在NetSuite中尝试了一个搜索脚本,我遇到的问题是,尽管我将订单号放在事务表搜索中,但搜索得到了几个结果。如果我通过IU进行相同的搜索,我只得到1个结果,这是正确的。
该脚本是
var filters = new Array();
filters[0] = new nlobjSearchFilter('item', null, 'is', 'ITEM123');
filters[1] = new nlobjSearchFilter('type', null, 'is', 'SalesOrd');
filters[2] = new nlobjSearchFilter('companyname', 'customer', 'contains', 'CustomerName');
filters[3] = new nlobjSearchFilter('number', null, 'is', 'ORDER9887');
var columns = new Array();
columns[0] = new nlobjSearchColumn('item');
columns[1] = new nlobjSearchColumn('type');
columns[2] = new nlobjSearchColumn('name','item');
columns[3] = new nlobjSearchColumn('companyname','customer');
columns[4] = new nlobjSearchColumn('number');
var searchResults = nlapiSearchRecord('transaction', null, filters, columns);
var values = 'TOTAL RESULTS: ' + searchResults.length;
if(searchResults != null)
{
for( i = 0 ; i< searchResults.length ; i++)
{
values = values + '\r\nITEM ' + searchResults[i].getValue(columns[0]) +
'\r\nTYPE ' + searchResults[i].getValue(columns[1]) +
'\r\nITEM NAME ' + searchResults[i].getValue(columns[2]) +
'\r\nCOMPANY NAME ' + searchResults[i].getValue(columns[3]) +
'\r\nTRANSACTION NUMBER ' + searchResults[i].getValue(columns[4]);
}
alert(values);
}
所以它对我没有多大意义,它假设过滤器隐含了 AND 运算符。
有什么线索我做错了吗?
提前致谢。
巴勃罗。
答案 0 :(得分:2)
搜索交易时,您需要了解并使用mainline
过滤器来调整所需的结果。有关更详细的说明,请参阅this answer。
不幸的是,我无法解释为什么在UI和脚本之间获得完全相同的标准会得到不同的结果。我还需要查看UI搜索以解决问题。
您是正确的,以这种方式提供的搜索过滤器总是使用AND
运算符。您可以改为使用过滤器表达式来显式声明逻辑运算符。有关过滤器表达式的示例,请参阅标题为过滤搜索的NetSuite帮助文档。
使用过滤器表达式和主线过滤器,我可能会将您的搜索编写为:
// Filter expression syntax
var filters = [
['item', 'is', 'ITEM123'], 'and',
['type', 'is', 'SalesOrd'], 'and',
['mainline', 'is', 'F'], 'and', // mainline=F gives me only line item results
['customer.companyname', 'contains', 'CustomerName'], 'and',
['number', 'is', 'ORDER9887']
];
var columns = [
new nlobjSearchColumn('item'),
new nlobjSearchColumn('type'),
new nlobjSearchColumn('name','item'),
new nlobjSearchColumn('companyname','customer'),
new nlobjSearchColumn('number')
];
// I always default my search results to [] to avoid the null check later
var searchResults = (nlapiSearchRecord('transaction', null, filters, columns) || []);
// Logging to console assuming client script, otherwise use nlapiLogExecution
console.log('TOTAL RESULTS: ' + searchResults.length);
// I prefer using Array.map or Array.forEach when iterating over arrays in SuiteScript
var resultString = searchResults.map(
function (result) { // Change each result to its String representation
return 'ITEM ' + result.getValue('item') +
'\r\nTYPE ' + result.getValue('type') +
'\r\nITEM NAME ' + result.getValue('name', 'item') +
'\r\nCOMPANY NAME ' + result.getValue('companyname','customer') +
'\r\nTRANSACTION NUMBER ' + result.getValue('number');
}
).join("\r\n"); // Join all of the result strings with a newline
console.log(resultString);