コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
1321 ビュー

i m facing an issue ,in which i have list of name (list of values) i need to pattern match with (ilike) condition to match contains name with list of values.

this take 'IN' as argument in domain search:

[('payment_ref','in', tuple(label_data.mapped('name')))]

but i need to match with contains name(ilike) condition with label_data.mapped('name')

how can i do that.

list = ['abc','def']

matching should be 'xxabcyy', 'aadef' should match.

アバター
破棄
最善の回答

Hi,

You can use the '|' operator in the domain to combine multiple ilike conditions. Here's an example of how you can modify your domain search:


domain=[]

for name in list_of_names:

    domain.extend(['|', ('name', 'ilike', name)])

domain.pop(-2)


Hope it helps

アバター
破棄
関連投稿 返信 ビュー 活動
1
11月 23
1127
1
5月 23
1725
2
3月 24
1079
1
11月 23
1393
4
11月 23
1992