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.
| 関連投稿 | 返信 | ビュー | 活動 | |
|---|---|---|---|---|
|
1
12月 23
|
23192 | |||
|
8
7月 24
|
18952 | |||
|
2
12月 23
|
22090 | |||
|
0
3月 15
|
10514 | |||
|
1
3月 15
|
9454 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.