From eeae0ed3f6ce8d3516f3453d4bad6a15d5f3f359 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 27 Jan 2026 13:48:56 +0000 Subject: [PATCH] final one? --- etl/month_end_automation_wave_accent_housing.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/etl/month_end_automation_wave_accent_housing.py b/etl/month_end_automation_wave_accent_housing.py index 42f02ba..28100d7 100644 --- a/etl/month_end_automation_wave_accent_housing.py +++ b/etl/month_end_automation_wave_accent_housing.py @@ -21,10 +21,10 @@ rate_card_data_2502_accent_housing = { "First half of MTP", "Second half of MTP", "full cost mtp", "Design Archetype Complex", "Design Archetype Simple", "Design Repetitive Complex", "Design Repetitive Simple", "Design Revision", "design type not specified", "Coordination Stage 2", "POST EPC", "POST EPR", "POST ATT", "post EPC NO SHOW", "RE", - "Lodgement" + "Lodgement", "RA" ], "rate": [ - 150, 130, 280, junte, junte, junte, junte, junte, "please ask andreas", junte, junte, junte, junte, junte, junte, junte + 150, 130, 280, 650, 415, 225, 195, 195, "please ask andreas", 175, 150, 60, 125, 45, 60, 255, 259 ] } # ToDO @@ -83,6 +83,10 @@ def get_df(df, column_name, success_critera, job_name=None): return _ +# RA +ra = get_df(df, "ra invoicing status", ["to invoice"], "RA") +if not ra.empty: + filtered_dfs.append(ra) modeling = get_df(df, "mtp invoicing status", ["modelling to invoice"], "First half of mtp")