From 80b6008b131829db58fd741579485a92298d3755 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 27 Jan 2026 15:27:50 +0000 Subject: [PATCH] month end ignore some --- etl/month_end_automation_wave_3_layout.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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")