Commit 51b784e3 authored by Frank Bergmann's avatar Frank Bergmann

-- bugfix: Planned days would return wrong value due to missing where clause - year not considered

parent f2b0d5a3
......@@ -220,7 +220,8 @@ set title_sql "
c.user_id= p.person_id and
c.project_id = proj.project_id and
proj.project_status_id not in ([join $exclude_status_id ","]) and
c.month = $cap_month
c.month = $cap_month and
c.year = $cap_year
) as
workload
from
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment