odoo8 or openerp 通过xml id获取数据库id

前端之家收集整理的这篇文章主要介绍了odoo8 or openerp 通过xml id获取数据库id前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

How to get the Database Id from an XML Id

The ir.model.data model also has a get_object() method returning a browsable record given a model name and an xml_id.

So,another solution could be:

m  = self.pool.get('ir.model.data')
id = m.get_object(cr,uid,'base','user_root').id

get_object(cr,module,xml_id)
module是路径名字,xml_id就是 xml文件中<record id='xxxx'/>中的id
原文链接:https://www.f2er.com/xml/293811.html

猜你在找的XML相关文章