我正在使用此class通过PHP XMLRPC访问odoo。 一切都很好。我只是通过放置引用记录的id来搜索many2one字段。我想应该有一种特殊的方法来编码搜索中的many2one id。 EG:使用此代码在product_tmpl_id中搜索product.supplierinfo我返回了emtpy数组:
$rpc->searchread(array(array("product_tmpl_id","=","3673")),"product.supplierinfo");
按ID搜索记录我得到了这个结果:
$rpc->read(array(1),"", "product.supplierinfo");
Array
(
[0] => Array
(
[create_uid] => Array
(
[0] => xxxxx
[1] => xxxxx xxxxx
)
[product_code] =>
[create_date] => 2016-06-22 11:08:00
[name] => Array
(
[0] => 1438
[1] => Provider one
)
[product_uom] => Array
(
[0] => 1
[1] => Unit(s)
)
[sequence] => 1
[product_name] =>
[__last_update] => 2016-06-22 11:42:28
[company_id] => Array
(
[0] => 1
[1] => Company Name
)
[write_uid] => Array
(
[0] => xxxx
[1] => xxxxxx xxxxx
)
[delay] => 1
[write_date] => 2016-06-22 11:42:28
[pricelist_ids] => Array
(
)
[display_name] => Provider One
[min_qty] => 0
[qty] => 0
[product_tmpl_id] => Array
(
[0] => 3673
[1] => Product Name
)
[id] => 1
)
)
我应该如何编码many2one字段的id? 任何帮助将不胜感激。
答案 0 :(得分:1)
最后我得到了解决方案。正如@czoellner建议的那样,问题是ID的类型是一个字符串,必须是一个整数。所以,这段代码工作正常。
$rpc->searchread(array(array("product_tmpl_id","=",3673)),"product.supplierinfo");
另一方面,必须考虑product.product的id和product.template的id之间的问题,因为它们是不同的。表product.supplierinfo使用product.template的id而不是product.product。这导致搜索表produc.supplierinfo有必要首先找到产品的product_tmpl_id来引用产品。因此,找到产品的所有提供者:
#search it by id
$prod_odoo = $rpc->read(array(1),"product.product",array());
#every search returns a 2 dimension array
$prod_suppliers = $rpc->searchread(array(array("product_tmpl_id","=",(int)$prod_odoo[0]["product_tmpl_id"][0])),"product.supplierinfo");
希望这有帮助。