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)