目前我正在odoo中開發一個模塊。在我的模塊中,用戶只能編輯自己的數據,但是管理員可以做任何事情。但與我的代碼管理員也無法編輯。如果我知道管理員已登錄,那麼我可以繞過管理員帳戶。那麼如何知道管理員何時登錄?如何檢查管理員或用戶是否登錄odoo
def write(self, vals):
//if admin is logged in i need to bypass the below code//
if self.create_uid != self.env.user:
raise Warning('You can not able to edit this document as this is not your record')
return super(request_room, self).write(vals)