netsuite
Scripting ricerche con Filter Expressions
Ricerca…
introduzione
Quando si creano ricerche con Suitescript, è possibile fornire come "filtri" una matrice di oggetti Filtro o un'espressione filtro. La seconda opzione è più leggibile e offre un'opzione molto flessibile per fornire espressioni nidificate (fino a 3 livelli) utilizzando non solo gli operatori predefiniti "AND", ma anche "OR" e "NOT".
Termine del filtro
Per capire le espressioni del filtro, dovremmo iniziare con Filter Term. Questa è una semplice serie di stringhe , contenente almeno 3 elementi:
- Filtro (campo / campo Join / Formula / Riepilogo)
- Operatore (search.Operator)
- Valori (valore stringa (o matrice di valori stringa), da utilizzare come parametro filtro)
// Simple example:
['amount', 'equalto', '0.00']
// When the field is checkbox, use 'T' or 'F'
['mainline', 'is', 'T']
// You can use join fields
['customer.companyname', 'contains', 'ltd']
// summary filter term
['sum(amount)', 'notlessthan', '170.50']
// summary of joined fields
['sum(transaction.amount)', 'greatherthan', '1000.00']
// formula:
["formulatext: NVL({fullname},'John')", "contains", "ohn"]
// and even summary formula refering joined fields:
['sum(formulanumeric: {transaction.netamount} + {transaction.taxtotal})', 'greaterthanorequalto','100.00']
// for selection fields, you may use 'anyof'
// and put values in array
['type','anyof',['CustInvc','VendBill','VendCred']]
// when using unary operator, like isempty/isnotempty
// don't forget that the filter term array contains at least 3 elements
// and put an empty string as third:
['email', 'isnotempty', '']
// you may have more than 3 elements in Filter Term array,
// when the operator requires more than one value:
['grossamount','between','100.00','200.00']
In alcuni campi di selezione, puoi usare valori speciali.
// When filtering the user related fields, you can use:
// Me (Current user): @CURRENT@
// My Team (somebody from the team I am leading): @HIERARCHY@
['nextapprover','is','@CURRENT@']
// The same is valid for Subsidiary, Department, Location, etc.
// @CURRENT@ means MINE (Subsidiary, Department...)
// @HIERARCHY@ means MINE or DESCENDANTS
["subsidiary","is","@HIERARCHY@"]
// on selection fields you may use @ANY@ and @NONE@
['nextapprover','is','@NONE@']
Espressione del filtro
L'espressione filtro semplice è anche una matrice . Contiene uno o più termini di filtro, combinati con operatori: "AND", "OR", "NOT". (Gli operatori non fanno distinzione tra maiuscole e minuscole):
[
['mainline', 'is', 'T'],
'and', ['type','anyof',['CustInvc','CustCred']],
'and', 'not', ['amount', 'equalto', '0.00'],
'or', ['customer.companyname', 'contains', 'ltd']
]
Espressioni di filtri più complesse, potrebbero contenere termini di filtro E espressioni di filtro annidate, combinate con operatori. Non sono consentiti più di 3 livelli di espressioni nidificate:
[
['mainline', 'is', 'T'],
'and', ['type','anyof',['CustInvc','CustCred']],
'and', [ ['customer.companyname', 'contains', 'ltd'],
'or', ['customer.companyname', 'contains', 'inc']
],
'and', [ ['subsidiary', 'is', 'HQ'],
'or', ['subsidiary', 'anyof', '@HIERARCHY@']
],
'and', ['trandate', 'notbefore', 'yesterday']
]
E infine, mettiamo tutto questo in un campione di SS2.0:
var s = search.create({
type : 'transaction',
columns : [
'trandate',
'tranid',
'currency',
'customer.companyname',
'customer.country',
'amount'
],
filters : [
['mainline', 'is', 'T'],
'and', ['type','anyof',['VendBill','VendCred']],
'and', [ ['customer.companyname', 'contains', 'ltd'],
'or', ['customer.companyname', 'contains', 'inc']
],
'and', [ ['subsidiary', 'is', 'HQ'],
'or', ['subsidiary', 'anyof', '@HIERARCHY@']
],
'and', ['trandate', 'notbefore', 'yesterday']
]
});
Filtra le espressioni e filtra gli oggetti
Le espressioni di filtro non possono includere oggetti filtro. Questo è molto importante. Se si decide di formare i filtri con Filter Expression, si utilizza una matrice di matrici di stringhe. La seguente sintassi è errata :
// WRONG!!!
var f1 = search.createFilter({
name: 'mainline',
operator: search.Operator.IS,
values: 'T'
});
var f2 = search.createFilter({
name: 'type',
operator: search.Operator.ANYOF,
values: ['VendBill','VendCred']
});
// here you will receive an error message
var s = search.create({
type : 'transaction',
filters : [ f1, 'and', f2 ] // f1,f2 are Filter Objects, instead of string arrays
});
Invece, usa il corretto :
// CORRECT!!!
var f1 = ['mainline', search.Operator.IS, 'T'];
var f2 = ['type', search.Operator.ANYOF, ['VendBill','VendCred'] ];
var s = search.create({
type : 'transaction',
filters : [ f1, 'and', f2 ]
});
oppure se si desidera mantenere l'approccio Oggetti filtro, passare una serie di oggetti filtro e dimenticare gli operatori 'AND', 'OR', 'NOT'. Sarà sempre AND
// correct, but not useful
var f1 = search.createFilter({
name: 'mainline',
operator: search.Operator.IS,
values: 'T'
});
var f2 = search.createFilter({
name: 'type',
operator: search.Operator.ANYOF,
values: ['VendBill','VendCred']
});
var s = search.create({
type : 'transaction',
filters : [ f1, f2 ] // here you have array of Filter Objects,
// filtering only when all of them are TRUE
});
Suggerimenti utili
- Qui puoi trovare l'elenco dei valori del filtro di ricerca disponibili per i campi data:
https://system.netsuite.com/app/help/helpcenter.nl?fid=section_N3010842.html
Questi puoi usare in espressioni come:
['trandate', 'notbefore', 'daysAgo17']
Ecco gli operatori di ricerca:
https://system.netsuite.com/app/help/helpcenter.nl?fid=section_N3005172.html
Ovviamente puoi usare serach.Operator enum:
https://system.netsuite.com/app/help/helpcenter.nl?fid=section_4345782273.htmlEcco i tipi di riepilogo della ricerca:
https://system.netsuite.com/app/help/helpcenter.nl?fid=section_N3010474.htmlÈ possibile utilizzare l'operatore ANOOF solo nei campi del tipo selezionato (Elenco / Record). Se si desidera utilizzarlo su campi di testo libero (come nomi, e-mail, ecc.), L'unico modo è creare un'espressione filtro nidificata con operatori "OR":
[ ['email', 'startswith', '[email protected]'],
'or', ['email', 'startswith', '[email protected]'],
'or', ['email', 'startswith', '[email protected]'],
'or', ['email', 'startswith', '[email protected]']
]
oppure puoi scrivere un piccolo script, facendo questo al posto tuo:
function stringFieldAnyOf(fieldId, listOfValues) {
var result = [];
if (listOfValues.length > 0) {
for (var i = 0; i < listOfValues.length; i++) {
result.push([fieldId, 'startswith', listOfValues[i]]);
result.push('or');
}
result.pop(); // remove the last 'or'
}
return result;
}
// usage: (two more filters added just to illustrate how to combine with other filters)
var custSearch = search.create({
type: record.Type.CUSTOMER,
columns: searchColumn,
filters: [
['companyname', 'startswith', 'A'],
'and', stringFieldAnyOf('email', ['[email protected]', '[email protected]']),
'and', ['companyname', 'contains', 'b']
]
});
- Non sei ancora sicuro? Stai cercando un imbroglione? :)
Crea una ricerca salvata nell'interfaccia utente di Netsuite, utilizza l'ID di ricerca (diciamo: customsearch1234) e log.debug l'espressione di filtro:
var s = search.load('customsearch1234');
log.debug('filterExpression', JSON.stringify(s.filterExpression));