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.
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
Daftar| Post Terkait | Replies | Tampilan | Aktivitas | |
|---|---|---|---|---|
|
What is 'better': search or browse?
Diselesaikan
|
1
Des 23
|
23204 | ||
|
8
Jul 24
|
18960 | |||
|
Using search count
Diselesaikan
|
2
Des 23
|
22104 | ||
|
0
Mar 15
|
10518 | |||
|
1
Mar 15
|
9488 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.