Hi all! Must be a simple question. How to filter I...
# suitescript
d
Hi all! Must be a simple question. How to filter Invoices by status, excluding those that are paid in full? I use the following filter: but it returns all the invoices, including paid in full anyway:
Copy code
{
    name: 'status',
    operator: search.Operator.NONEOF,
    values: ['paidInFull', ]
},
n
@Dmitry Masanov try "CustInvc:B"
d
Thank you! This works!
n
Cool, see my DM 😉
j