如何在odoo中实现以下场景?

时间:2022-03-09 03:33:15

I am trying to get the list of attendees from calendar event to be autopopulated in my custom module

我试图让日历事件中的与会者列表在我的自定义模块中自动填充

def get_meet_dets(self, cr, uid, ids, meet_ref, context=None):
    val = {}
    res = []
    if meet_ref:
        for det in self.pool.get('calendar.event').browse(cr,uid,meet_ref,context=context):
            for asst in det.attendee_ids:
                val = {
                    'emp_i' : asst.partner_id.name,
                    }
                res.append(val)
        val.update({'matp':res})
    return {'value': val}

The above code gets the name from res.partner table and fills the details from user. How can I get the the user's details from hr.employee.

上面的代码从res.partner表中获取名称,并填写用户的详细信息。如何从hr.employee获取用户的详细信息。

Kindly anyone help me on this. Thanks a lot

请有人帮我这个。非常感谢

1 个解决方案

#1


0  

Search with the partner_id on the employee model

使用员工模型上的partner_id进行搜索

employee_model = self.pool.get('hr.employee')
employee_ids = employee_model.search(cr, uid, [('partner_id', '=', asst.partner_id.id)], context=context)

then you could browse on the ids you've been given. KEEP IN MIND that ONE partner could be linked to MULTIPLE employees

然后你可以浏览你已经给出的ID。保持一个合作伙伴可以与MULTIPLE员工联系

#1


0  

Search with the partner_id on the employee model

使用员工模型上的partner_id进行搜索

employee_model = self.pool.get('hr.employee')
employee_ids = employee_model.search(cr, uid, [('partner_id', '=', asst.partner_id.id)], context=context)

then you could browse on the ids you've been given. KEEP IN MIND that ONE partner could be linked to MULTIPLE employees

然后你可以浏览你已经给出的ID。保持一个合作伙伴可以与MULTIPLE员工联系