[FIX] hr_timesheet_sheet: Cannot use the timesheet program because of a warning message Please Enter A Value

lp bug: https://launchpad.net/bugs/724201 fixed

bzr revid: ara@tinyerp.com-20110314091003-v8zxjg9l56wcussd
This commit is contained in:
ARA (OpenERP) 2011-03-14 14:40:03 +05:30
parent 2f4e4f3614
commit 708c8a1cca
1 changed files with 4 additions and 0 deletions

View File

@ -177,6 +177,10 @@ class hr_timesheet_sheet(osv.osv):
if 'employee_id' in vals:
if not self.pool.get('hr.employee').browse(cr, uid, vals['employee_id']).user_id:
raise osv.except_osv(_('Error !'), _('You cannot create a timesheet for an employee that does not have any user defined !'))
if not self.pool.get('hr.employee').browse(cr, uid, vals['employee_id']).product_id:
raise osv.except_osv(_('Error !'), _('You cannot create a timesheet for an employee that does not have any product defined !'))
if not self.pool.get('hr.employee').browse(cr, uid, vals['employee_id']).journal_id:
raise osv.except_osv(_('Error !'), _('You cannot create a timesheet for an employee that does not have any analytic journal defined !'))
return super(hr_timesheet_sheet, self).create(cr, uid, vals, *args, **argv)
def write(self, cr, uid, ids, vals, *args, **argv):