How to call search method with "is not null" criteria :
picking_pool.search(cr, uid, [('sale_id','is not','null')], context=context)
(I know that's not the good syntax)
How to call search method with "is not null" criteria :
picking_pool.search(cr, uid, [('sale_id','is not','null')], context=context)
(I know that's not the good syntax)
'is not null' is not correct operator for using search method. List of operators you might use: =, !=, >, >=, <, <=, like, ilike, in, not in, child_of, parent_left, parent_right. to get you code working try this:
picking_pool.search(cr, uid, [('sale_id','!=',False)], context=context)
Hi,
you can use :
picking_pool.search(cr, uid, [('sale_id','!=','')], context=context)
Thanks.
Create an account today to enjoy exclusive features and engage with our awesome community!
साइन अप करें| Related Posts | Replies | डेटा देखने का तरीका | ऐक्टिविटी | |
|---|---|---|---|---|
|
1
दिस॰ 23
|
23273 | |||
|
8
जुल॰ 24
|
19064 | |||
|
Using search count
Solved
|
2
दिस॰ 23
|
22180 | ||
|
0
मार्च 15
|
10613 | |||
|
1
मार्च 15
|
9607 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.