Skip to Content
Menu
This question has been flagged
2 Replies
5154 Rodiniai


As mentioned in odoo 13 external API documentation we can query like this:

https://www.odoo.com/documentation/13.0/webservices/odoo.html

models.execute_kw(db, uid, password,
    'res.partner', 'search',
    [[['is_company', '=', True]]])

how can I add another term to 'is_company = True' like' partner_id = 8 ' and  'and' them together?

Portretas
Atmesti

Hey i havent tried it yet but u let me know by using

models.execute_kw(db, uid, password,

'res.partner', 'search',

[[['is_company', '=', True],['partner_id','=',your_id]]])

Best Answer

By default AND operator is applied in the domain. If you want to apply OR condition, use "|" symbol.

Ex:

[['|', ['is_company', '=', True], ['name', '=', 'My Company']]]

# is_company=True or name='My Company'
Portretas
Atmesti
Autorius

It works thanks a lot

Related Posts Replies Rodiniai Veikla
0
kov. 20
19847
0
saus. 23
2172
0
liep. 25
182
1
birž. 25
1866
1
liep. 25
852