如何在Sugar CRM get_relationships soap api中传递查询多列搜索查询? 我把related_module_query传递给:“accounts.name喜欢'abc'或者accounts.phone_office喜欢'abc'
如果我只通过名称搜索或仅通过电话搜索其工作正确,但如果我像上面那样合并,则会提取所有记录。
答案 0 :(得分:0)
我相信内部工作,它有一个先前的查询,并使用AND子句加入您的查询。 你尝试过使用这样的括号吗?
"(accounts.name like 'abc' OR accounts.phone_office like 'abc')"
希望它有所帮助!