Skip to Content
Menu
This question has been flagged
2149 Views

Hello everybody!!!

Please can anyone help me know how to make a search on a many2one field.

Here is my code:

 obj_contract = self.pool.get('hr.contract')

for emp in self.browse(cr, uid, ids, context=context):

contract_ids = obj_contract.search(cr, uid, [('employee_id', '=', emp.id)], order='date_start', context=context)

if contract_ids:

vals = obj_contract.read(cr,uid,contract_ids,['department_id'],context=context)

print contract_ids

print vals[0]['department_id']

if vals:

obj_department = self.pool.get('hr.department')

department_ids = obj_department.search(cr, uid, [('id', '=', vals[0]['department_id'])], order='id', context=context)


Thanks a lot in advance.

Best Regards.

Avatar
Discard
Related Posts Replies Views Activity
0
Mar 15
2672
1
Sep 24
365
3
Jul 24
22478
3
Jul 23
32434
2
Sep 18
6849