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)])
誰でもこれを手伝ってもらえますか?