[IMP]override name_create method of analytic account for not do not open contract page on quick create

bzr revid: cod@tinyerp.com-20131223113138-pj0bgtf31lh5jcg8
This commit is contained in:
Chirag Dodiya (OpenERP) 2013-12-23 17:01:38 +05:30
parent e453001a7f
commit fbfe9936a1
1 changed files with 9 additions and 1 deletions

View File

@ -250,7 +250,15 @@ class account_analytic_line(osv.osv):
#if we don't get the dates from the timesheet, we return the default value from super()
return res
class account_analytic_account(osv.osv):
_inherit = "account.analytic.account"
def name_create(self, cr, uid, name, context=None):
if not context.get('default_use_timesheets') == True:
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]
class hr_timesheet_line(osv.osv):
_inherit = "hr.analytic.timesheet"