[FIX] use inner join to avoid null id's in read_group

This commit is contained in:
Nicolas Seinlet 2014-12-29 15:08:18 +01:00 committed by Cécile Tonglet
parent 52f7fad109
commit 8347d36bf1
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class hr_timesheet_report(osv.osv):
def _from(self):
from_str = """
account_analytic_line as aal
left join hr_analytic_timesheet as hat ON (hat.line_id=aal.id)
inner join hr_analytic_timesheet as hat ON (hat.line_id=aal.id)
"""
return from_str