Merge pull request #84 from Hestia-Homes/feature/month_end_capture_more

finsih review with typhain
This commit is contained in:
Jun-te Kim 2025-09-05 16:47:33 +01:00 committed by GitHub
commit d1a8ac98ee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 9 deletions

View file

@ -119,10 +119,7 @@ filtered_dfs.append(v2)
# filtered_dfs.append(v3)
# Coordination stage 2 Please complete
cors2 = df[
df["rc stage 2 invoice"].str.lower().isin(["to invoice"])
].copy()
cors2["job_type"] = "Coordination Stage 2"
cors2 = get_df(df, "rc stage 2 invoice", ["to invoice"], "Coordination Stage 2")
filtered_dfs.append(cors2)
# Design stage 1
@ -163,7 +160,7 @@ post_epr["job_type"] = "POST epr"
filtered_dfs.append(post_epr)
# Post ATT
post_att = get_df(df, "post-att", ["uploaded", "completed", "to invoice"], "POST ATT")
post_att = get_df(df, "post-att", ["uploaded", "completed", "to invoice", "uploaded to client"], "POST ATT")
filtered_dfs.append(post_att)
# Retrofit Evaluation

View file

@ -153,10 +153,7 @@ v3 = get_df(df, "v3 rc status", ["rc completed"], "Coordination Stage 1 v3 remod
filtered_dfs.append(v3)
# Coordination stage 2 Please complete
cors2 = df[
df["rc stage 2"].str.lower().isin(["to invoice"])
]
cors2["job_type"] = "Coordination Stage 2"
cors2 = get_df(df, "rc stage 2",["to invoice"], "Coordination Stage 2")
filtered_dfs.append(cors2)
# Design stage Archetype