Skip to content

Commit

Permalink
Merge pull request #1898 from bcgov/bugfix/ALCS-2259
Browse files Browse the repository at this point in the history
Fix Reconsiderations Not Showing in "Incoming" Column in commissioner…
  • Loading branch information
Abradat authored Oct 8, 2024
2 parents 25e3154 + 65099f3 commit 00a4ae4
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -545,8 +545,9 @@ export class ApplicationService {
SELECT *
FROM alcs.calculate_active_days(ARRAY(SELECT fa."application_uuid" FROM filtered_applications fa))
)
SELECT a.file_number, a.applicant, board.code, u.name, u.given_name, u.family_name, c.high_priority, calc.active_days FROM alcs.application a
INNER JOIN alcs.card c ON c."uuid" = a.card_uuid
SELECT a.file_number, a.applicant, board.code, u.name, u.given_name, u.family_name, c.high_priority, calc.active_days FROM alcs.application a
INNER JOIN alcs.application_reconsideration ar on ar.application_uuid = a.uuid
INNER JOIN alcs.card c ON c."uuid" = ar.card_uuid
INNER JOIN calculated calc ON a."uuid" = calc.application_uuid
INNER JOIN alcs.board board on c.board_uuid = board.uuid
LEFT JOIN alcs.user u on u.uuid = c.assignee_uuid
Expand Down

0 comments on commit 00a4ae4

Please sign in to comment.