Skip to Content
मेन्यू
This question has been flagged
3107 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
मार्च 15
3673
3
फ़र॰ 25
35538
2
फ़र॰ 25
8674
1
सित॰ 24
2297
3
जुल॰ 24
24707