Skip to content
Snippets Groups Projects
Commit 15715e82 authored by Jeremy Kersten's avatar Jeremy Kersten
Browse files

[FIX] hr_timesheet_sheet: avoid ambigous field action in sql.

ERROR: column reference "action" is ambiguous

This commit closes #13839
parent 6488682c
No related branches found
No related tags found
No related merge requests found
......@@ -580,7 +580,7 @@ class hr_timesheet_sheet_sheet_day(osv.osv):
ON r.user_id = u.id
LEFT JOIN res_partner p
ON u.partner_id = p.id
WHERE action in ('sign_in', 'sign_out')
WHERE a.action in ('sign_in', 'sign_out')
group by (a.name AT TIME ZONE 'UTC' AT TIME ZONE coalesce(p.tz, 'UTC'))::date, s.id, timezone
)) AS foo
GROUP BY name, sheet_id, timezone
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment