Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RAIN-2346 Fixes GRO and LME name not being shown in pgr-reports. #829

Merged
merged 1 commit into from
May 3, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions reports/config/pgr-reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2272,7 +2272,7 @@ ReportDefinitions:
from pgr_data
INNER JOIN (VALUES tbl_dept) AS deptmap(serviceCode, department, slaHours) ON deptmap.serviceCode = pgr_data.servicecode
INNER JOIN (VALUES tbl_def_dept) AS deptmap_def(name,code) ON deptmap.department = deptmap_def.code
WHERE 1=1
WHERE 1=1 AND pgr_data.assignee IS NOT NULL
orderby: ORDER BY assignee NULLS LAST,deptmap_def.name,rating
groupby: GROUP BY assignee,deptmap_def.name,rating

Expand Down Expand Up @@ -2381,7 +2381,7 @@ ReportDefinitions:
from pgr_data
INNER JOIN (VALUES tbl_dept) AS deptmap(serviceCode, department, slaHours) ON deptmap.serviceCode = pgr_data.servicecode
INNER JOIN (VALUES tbl_def_dept) AS deptmap_def(name,code) ON deptmap.department = deptmap_def.code
WHERE 1=1
WHERE 1=1 AND pgr_data.assignee IS NOT NULL
orderby: ORDER BY assignee NULLS LAST,deptmap_def.name
groupby: GROUP BY assignee,deptmap_def.name

Expand Down