[MERGE] lp: 760493

bzr revid: qdp-launchpad@openerp.com-20110420161656-9gs5obthhvcoicjw
This commit is contained in:
Quentin (OpenERP) 2011-04-20 18:16:56 +02:00
commit 8b54c67264
1 changed files with 11 additions and 10 deletions

View File

@ -481,21 +481,22 @@ class hr_timesheet_line(osv.osv):
'date': _get_default_date,
}
def create(self, cr, uid, vals, *args, **kwargs):
if vals.get('sheet_id', False):
ts = self.pool.get('hr_timesheet_sheet.sheet').browse(cr, uid, vals['sheet_id'])
if not ts.state in ('draft', 'new'):
raise osv.except_osv(_('Error !'), _('You can not modify an entry in a confirmed timesheet !'))
return super(hr_timesheet_line,self).create(cr, uid, vals, *args, **kwargs)
def _check_sheet_state(self, cr, uid, ids, context=None):
if context is None:
context = {}
for timesheet_line in self.browse(cr, uid, ids, context=context):
if timesheet_line.sheet_id and timesheet_line.sheet_id.state not in ('draft', 'new'):
return False
return True
_constraints = [
(_check_sheet_state, 'You can not modify an entry in a Confirmed/Done timesheet !.', ['state']),
]
def unlink(self, cr, uid, ids, *args, **kwargs):
self._check(cr, uid, ids)
return super(hr_timesheet_line,self).unlink(cr, uid, ids,*args, **kwargs)
def write(self, cr, uid, ids, *args, **kwargs):
self._check(cr, uid, ids)
return super(hr_timesheet_line,self).write(cr, uid, ids,*args, **kwargs)
def _check(self, cr, uid, ids):
for att in self.browse(cr, uid, ids):
if att.sheet_id and att.sheet_id.state not in ('draft', 'new'):