[REF] hr_timesheet: unused piece of code

bzr revid: rim@openerp.com-20140414132634-xaps5ydbic5jriw4
This commit is contained in:
Richard Mathot (OpenERP) 2014-04-14 15:26:34 +02:00
parent fe6ef26720
commit e1cebe9003
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ class account_analytic_account(osv.osv):
if context is None:
context = {}
group_template_required = self.pool['res.users'].has_group(cr, uid, 'account_analytic_analysis.group_template_required')
if not context.get('default_use_timesheets', False) or group_template_required:
if not context.get('default_use_timesheets') or group_template_required:
return super(account_analytic_account, self).name_create(cr, uid, name, context=context)
rec_id = self.create(cr, uid, {self._rec_name: name}, context)
return self.name_get(cr, uid, [rec_id], context)[0]