[IMP] hr_timesheet_invoice: made little change in condition

bzr revid: cha@tinyerp.com-20120928054445-ayg474ppng31318r
This commit is contained in:
Ajay Chauhan (OpenERP) 2012-09-28 11:14:45 +05:30
parent b478be2675
commit 425d285e2e
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ class account_analytic_line(osv.osv):
def _default_general_account(self, cr, uid, context=None):
proxy = self.pool.get('hr.employee')
record_ids = proxy.search(cr, uid, [('user_id', '=', uid)], context=context)
if not len(record_ids):
if not record_ids:
raise osv.except_osv(_('Error!'), _('Please create an employee and associate it with this user.'))
employee = proxy.browse(cr, uid, record_ids[0], context=context)
if employee.product_id and employee.product_id.property_account_income: