[IMP] Improved code of name_create method

bzr revid: cod@tinyerp.com-20131223122433-9svu8iyoruutdmjd
This commit is contained in:
Chirag Dodiya (OpenERP) 2013-12-23 17:54:33 +05:30
parent bda62ace29
commit d9ab20e1b9
1 changed files with 3 additions and 1 deletions

View File

@ -254,7 +254,9 @@ class account_analytic_account(osv.osv):
_inherit = "account.analytic.account"
def name_create(self, cr, uid, name, context=None):
if context.get('default_use_timesheets') == False:
if context is None:
context = {}
if not context.get('default_use_timesheets', False):
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]