我有一个想要满足的要求是从数据库中获取一个值并在 UI 中显示,我们有一个应用程序,我们可以将“项目”分配给很多人,所以我必须在人员信息中显示当前项目的字段分配给他/她。
我正在考虑创建一个函数来使用“search()”方法检索该数据以获取所需的字段。
#for the moment i have added the variable in the class
project_name = fields.Char('Project Name', compute='_compute_get_employee_project')
#this is the function i am building (trying)
@api.model
def _compute_get_employee_project(self):
#verify the employee belongs to a project
employee_task = self.env['project.task'].search([('user_id','=',self.user_id.id),('status','=','assigned')],limit=1)
employee_project = self.env['project.project'].search([('id', '=', employee_task.project_id.id)], limit=1)
感谢您的时间!!