我已经知道关于 sql 的操作员 ilike。放置在 where 类时它将以这种方式执行
'PSS01' ilike 'pss01' -> will return true
'PSS01' ilike '%ss01' -> will return true
'PSS01' ilike 'ss01' -> will return false
但是在 openerp 7 中,它以这种方式执行
'PSS01' ilike 'pss01' -> returns true
'PSS01' ilike 'ss01' -> returns true **(it should return false)**
我的代码如下
repeted_ids = prod_serial_obj.search(cr, uid, ['&',('name', 'ilike', line.prod_ser_no),('product_id', '=', product_id)])
有人能帮忙吗?