diff --git a/etl/month_end_automation_wave_3_layout.py b/etl/month_end_automation_wave_3_layout.py index bf25fc1..0f37c77 100644 --- a/etl/month_end_automation_wave_3_layout.py +++ b/etl/month_end_automation_wave_3_layout.py @@ -364,9 +364,10 @@ for board, all_records in board_to_record.items(): filtered_dfs.append(lodg1) # Retrofit Evaluation - re = get_df(df, "evaluation invoicing status", ["to invoice"], "retrofit evaluation") - if not re.empty: - filtered_dfs.append(re) + if board not in ignore: + re = get_df(df, "evaluation invoicing status", ["to invoice"], "retrofit evaluation") + if not re.empty: + filtered_dfs.append(re) # POST EPC post_epc = get_df(df, "Post EPC invoicing status", ["epc to invoice"], "POST EPC")