madcat
02/14/2018, 9:42 PMvar itemSearchObj = _search.create({
type: "item",
filters: [
["isinactive","is","F"],
"AND",
["costestimate","greaterthan","0"],
"AND",
["custitem_sellable_item","is","T"],
"AND",
["custitem_calculated_margin","isempty",""],
"AND",
["baseprice","greaterthan","0.00"] // Is not working
],
columns: [
"internalid",
"displayname",
"baseprice",
"costestimate",
"type",
"custitem_calculated_margin"
]
});