mirror of
https://github.com/Hestia-Homes/survey-extraction.git
synced 2026-06-30 13:10:56 +00:00
Merge pull request #84 from Hestia-Homes/feature/month_end_capture_more
finsih review with typhain
This commit is contained in:
commit
d1a8ac98ee
2 changed files with 3 additions and 9 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue