[FIX] hr_recruitment: fix default value of company_id

bzr revid: rco@openerp.com-20120705122207-cs730asuew9w7vxz
This commit is contained in:
Raphael Collet 2012-07-05 14:22:07 +02:00
parent b891603849
commit c407fa45ce
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ class hr_applicant(base_stage, osv.Model):
'stage_id': lambda s, cr, uid, c: s._get_default_stage_id(cr, uid, c),
'department_id': lambda s, cr, uid, c: s._get_default_department_id(cr, uid, c),
'priority': lambda *a: '',
'company_id': lambda s, cr, uid, c: s.pool.get('res.company')._company_default_get(cr, uid, 'crm.helpdesk', context=c),
'company_id': lambda s, cr, uid, c: s.pool.get('res.company')._company_default_get(cr, uid, 'hr.applicant', context=c),
'color': 0,
}