Added performance reviews

This commit is contained in:
2025-06-17 17:06:57 +02:00
parent 3b3a9dd7c1
commit 48d0762c15
11 changed files with 474 additions and 16 deletions

View File

@@ -0,0 +1,58 @@
{{ config(materialized='table') }}
with step_agg as (
select
user_id::text as user_id,
task_name,
max(step_submission_date::date) filter (where task_status = 'Completed') as completed_at,
max(task_status) as status
from {{ source('tap_spreadsheets_anywhere', 'performance_review_steps') }}
where is_not_removed_from_task = 1
group by 1,2
),
total_scoring as (
select
user_id::text as user_id,
task_name,
max(final_rating) as overall_rating
from {{ source('tap_spreadsheets_anywhere', 'performance_review_total_scoring') }}
group by 1,2
),
worker_map as (
select id as worker_id, worker_hris_id::text
from {{ ref('worker') }}
),
cycle_map as (
select id as cycle_id, name
from {{ ref('performance_cycle') }}
),
combined as (
select
s.user_id,
s.task_name,
s.status,
s.completed_at,
ts.overall_rating,
w.worker_id,
c.cycle_id
from step_agg s
left join total_scoring ts using (user_id, task_name)
left join worker_map w on w.worker_hris_id = s.user_id
left join cycle_map c on c.name = s.task_name
)
select
row_number() over (order by user_id, task_name)::bigint as id,
null::date as start,
status,
overall_rating,
cycle_id,
worker_id,
null::bigint as reviewer_id,
completed_at as completed,
null::date as due
from combined