[FIX] hr_recruitment:can not change stage in hr recruitment

bzr revid: ara@tinyerp.com-20110304072551-87ioninlg9hbncym
This commit is contained in:
ARA (OpenERP) 2011-03-04 12:55:51 +05:30
parent 2ee329f399
commit 5c331b606d
1 changed files with 7 additions and 7 deletions

View File

@ -185,13 +185,13 @@ class hr_applicant(crm.crm_case, osv.osv):
return {'value': result}
return {'value': {'department_id': False}}
def onchange_department_id(self,cr, uid, ids, department_id=False, context=None):
obj_recu_stage = self.pool.get('hr.recruitment.stage')
if department_id:
stage_ids = obj_recu_stage.search(cr, uid, ['|',('department_id','=',department_id),('department_id','=',False)], context=context)
if stage_ids:
return {'value': {'stage_id': stage_ids[0]}}
return {'value': {'stage_id': False}}
def onchange_department_id(self, cr, uid, ids, department_id=False, context=None):
if not department_id:
return {'value': {'stage_id': False}}
obj_recru_stage = self.pool.get('hr.recruitment.stage')
stage_ids = obj_recru_stage.search(cr, uid, ['|',('department_id','=',department_id),('department_id','=',False)], context=context)
stage_id = stage_ids and stage_ids[0] or False
return {'value': {'stage_id': stage_id}}
def stage_previous(self, cr, uid, ids, context=None):
"""This function computes previous stage for case from its current stage