This commit is contained in:
Jun-te Kim 2025-07-29 12:01:53 +00:00
parent c297a87776
commit 9c7e7ecdd9

View file

@ -15,13 +15,13 @@ rate_card_data = {
"job_type": [
"RA", "ATT", "Coordination Stage 1 v1", "Coordination Stage 1 v2 remodel", "Coordination Stage 1 v3 remodel",
"Design Archetype Complex", "Design Archetype Simple", "Design Repetitive Simple", "Coordination Stage 2", "Lodgement phase 1", "Full lodgement phase 2",
"Post EPC", "Post ATT", "retrofit evaluation",
"Post EPR", "Post EPC", "Post ATT", "retrofit evaluation",
"RA no show", "ATT no show", "post EPC no show"
],
"rate": [
259, 125, 280, 125, 125,
650, 415, 195, 175, 135,
120, 85, 125, 60,
120, "Post EPR Please Marianne", 85, 125, 60,
25, 25, 25
]
}
@ -138,9 +138,6 @@ design1 = get_df(design1, "design type", ["Design Repetitive Simple"])
design1 = get_df(design1, "design upload to sharepoint", ["done"], "Design Repetitive Simple")
filtered_dfs.append(design1)
# TOOD Kevin:
# Check with Design checks and check with cor dination stage 2 checks
# Design revision
# design2 = get_df(df, "design revision invoice", [
# "Rev. A to invoice".lower(),
@ -167,12 +164,12 @@ post_epc = get_df(df, "post epc status", ["uploaded"], "POST EPC")
filtered_dfs.append(post_epc)
# # POST EPR
# post_epr = df[
# df["post-epc status"].str.lower().isin(["post epr completed"])
# ].copy()
# post_epr["job_type"] = "POST ATT"
# filtered_dfs.append(post_epr)
# POST EPR
post_epr = df[
df["post epc status"].str.lower().isin(["post epr completed"])
].copy()
post_epr["job_type"] = "POST ATT"
filtered_dfs.append(post_epr)
# Post ATT
post_att = get_df(df, "post att", ["post att uploaded"], "POST ATT")
@ -221,4 +218,4 @@ import datetime
timestamp = datetime.datetime.now().strftime('%Y-%m-%d_%H-%M')
attribute = ['address', 'client', 'job_type', 'rate']
combined_with_rates[attribute].to_csv(f'NCHA SHDF 2.1 SBS_{timestamp}.csv', index=False)
combined_with_rates[attribute].to_excel(f'NCHA SHDF 2.1 SBS_{timestamp}.xlsx', index=False)