我们可以使用XML-RPC从Odoo中读取和搜索数据,如下所述: https://www.odoo.com/documentation/8.0/api_integration.html
但是,对于“搜索”,所有示例都使用了juste简单字段,没有示例来过滤关系字段。
我的情况是:
我有一个合作伙伴(res.partner),他在“user_id”字段上有一个相关用户(res.user)。
在此示例中,我尝试在“user_id”字段中获取与用户相关的合作伙伴ID(id = 36),但它不起作用:
ids = models.execute_kw(db, uid, password,
'res.partner', 'search',
[[['user_id', '=', 36]]],
{'limit': 10})
有什么想法吗?
谢谢,