Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我一直在开发 openerp 模块。我一直在使用 python 和 eclipse IDE 进行开发。我已经开发了一些 openerp 模块作为用户界面的简单表单设计。我想知道res.users. 我已经看到这个对象被多次使用,但我并没有真正弄清楚它的需要和用途。我想清除它,因为我是 openerp 开发世界的新手。我还需要一些关于如何使用它的指导?请尽快回复我。
res.users
谢谢。希望提出建议
res.users是包含系统所有用户及其详细信息的模型。匹配的 Postgres 表是 res_users
以如下方式使用它:
def do_stuff(self, cr, uid, ids, context = None): user = self.pool.get('res.users').browse(cr, uid, uid, context = context) print(user.name)