Hello,
I am performing queries using xmlrpc and i am facing a counter intuitive behaviour :
I try to fetch all the products of my odoo db by doing something like that :
models.execute_kw(db, uid, password,
'product.product', 'search',
[[]])
and i notice that this query filter out products whose field "active" is set to false.
To retrieve all the products, i have to do something like this :
models.execute_kw(db, uid, password,
'product.product', 'search',
[[["active", "in", [True, False]]]])
Is this implicit filtering normal ? Where is it documented ? Is there other implicit filterings that i should know about ?
Thanks