Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
3123 Prikazi

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
Opusti
Related Posts Odgovori Prikazi Aktivnost
0
mar. 15
3680
3
feb. 25
35556
2
feb. 25
8680
1
sep. 24
2308
3
jul. 24
24715