Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
37108 มุมมอง

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.

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
What is 'better': search or browse? แก้ไขแล้ว
1
ธ.ค. 23
21044
8
ก.ค. 24
16468
Using search count แก้ไขแล้ว
2
ธ.ค. 23
20127
0
มี.ค. 15
8547
1
มี.ค. 15
7308