如何在搜索过滤器中比较忽略大小写?例如在下面的代码中
ids = self.pool.get('product.product').search(cr, uid, [('name', '=', 'Service'))], context=context)
我正在将产品名称与字符串“服务”进行比较。我想比较忽略它的情况类似于下面
ids = self.pool.get('product.product').search(cr, uid, [('name'.upper(), '=', 'Service'.upper()))], context=context)
我可以使用'service'.upper 但不能使用'name'.upper。那么我如何比较忽略它的情况。谢谢你的时间。