[FIX] Remove the readonly attribute on the Manager of the department

bzr revid: stephane@openerp.com-20110228123817-e9xstt1ugcduoqmy
This commit is contained in:
Stephane Wirtel 2011-02-28 13:38:17 +01:00
parent 6e3a357e8b
commit fb544b4212
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ class hr_employee(osv.osv):
'work_email': fields.char('Work E-mail', size=240),
'work_location': fields.char('Office Location', size=32),
'notes': fields.text('Notes'),
'parent_id': fields.related('department_id', 'manager_id', relation='hr.employee', string='Manager', type='many2one', store=True, select=True, readonly=True, help="It is linked with manager of Department"),
'parent_id': fields.related('department_id', 'manager_id', relation='hr.employee', string='Manager', type='many2one', store=True, select=True, help="It is linked with manager of Department"),
'category_ids': fields.many2many('hr.employee.category', 'employee_category_rel','category_id','emp_id','Category'),
'child_ids': fields.one2many('hr.employee', 'parent_id', 'Subordinates'),
'resource_id': fields.many2one('resource.resource', 'Resource', ondelete='cascade', required=True),