[IMP] warning message replace is posterior to by comes before

bzr revid: shp@tinyerp.com-20121019045723-rt8fqmuk11vsgiak
This commit is contained in:
pankita shah (Open ERP) 2012-10-19 10:27:23 +05:30
parent 5cf77ecb5a
commit 1bb1b98a31
1 changed files with 2 additions and 2 deletions

View File

@ -159,9 +159,9 @@ class hr_employee(osv.osv):
if not self._action_check(cr, uid, employee.id, action_date, context):
if action == 'sign_out':
raise osv.except_osv(_('Warning'), _('You are trying to sign out for a date that is posterior to the starting date of the project. Please contact the HR Manager to correct attendances.'))
raise osv.except_osv(_('Warning'), _('You are trying to sign out for a date that comes before the starting date of the project. Please contact the HR Manager to correct attendances.'))
elif action == 'action':
raise osv.except_osv(_('Warning'), _('You are trying to sign out and switch project for a date that is posterior to the starting date of the current project. Please contact the HR Manager to correct attendances.'))
raise osv.except_osv(_('Warning'), _('You are trying to sign out and switch project for a date that comes before the starting date of the current project. Please contact the HR Manager to correct attendances.'))
vals = {'action': action, 'employee_id': employee.id}
if action_date: