From 3a94b28c04448973a937869010cbbd3bdd284573 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 26 Jan 2026 14:48:31 +0000 Subject: [PATCH] re run --- etl/month_end_automation_wave_3_layout.py | 6 +++--- etl/month_end_automation_wave_accent_housing.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/etl/month_end_automation_wave_3_layout.py b/etl/month_end_automation_wave_3_layout.py index 0977ce4..133a634 100644 --- a/etl/month_end_automation_wave_3_layout.py +++ b/etl/month_end_automation_wave_3_layout.py @@ -350,17 +350,17 @@ for board, all_records in board_to_record.items(): filtered_dfs.append(lodg1) # Retrofit Evaluation - re = get_df(df, "retrofit evaluation status", ["uploaded"], "retrofit evaluation") + re = get_df(df, "Retrofit Evaluation Status", ["uploaded"], "retrofit evaluation") if not re.empty: filtered_dfs.append(re) # POST EPC - post_epc = get_df(df, "post epc/epr status", ["epc uploaded"], "POST EPC") + post_epc = get_df(df, "Post EPC/EPR Status", ["epc uploaded"], "POST EPC") if not post_epc.empty: filtered_dfs.append(post_epc) # POST EPR - post_epr = get_df(df, "post epc/epr status", ["epr uploaded"], "POST EPR") + post_epr = get_df(df, "Post EPC/EPR Status", ["epr uploaded"], "POST EPR") if not post_epr.empty: filtered_dfs.append(post_epr) diff --git a/etl/month_end_automation_wave_accent_housing.py b/etl/month_end_automation_wave_accent_housing.py index 17ffecd..c3e97e4 100644 --- a/etl/month_end_automation_wave_accent_housing.py +++ b/etl/month_end_automation_wave_accent_housing.py @@ -148,17 +148,17 @@ if not rc.empty: filtered_dfs.append(rc) # Retrofit Evaluation -re = get_df(df, "retrofit evaluation status", ["uploaded"], "re") +re = get_df(df, "Retrofit Evaluation Status", ["uploaded"], "re") if not re.empty: filtered_dfs.append(re) # POST EPC -post_epc = get_df(df, "post epc/epr status", ["epc uploaded"], "POST EPC") +post_epc = get_df(df, "Post EPC/EPR Status", ["epc uploaded"], "POST EPC") if not post_epc.empty: filtered_dfs.append(post_epc) # POST EPR -post_epr = get_df(df, "post epc/epr status", ["epr uploaded"], "POST EPR") +post_epr = get_df(df, "POST EPC/EPR Status", ["epr uploaded"], "POST EPR") if not post_epr.empty: filtered_dfs.append(post_epr)