mirror of
https://github.com/Hestia-Homes/survey-extraction.git
synced 2026-06-08 11:17:29 +00:00
month end automation complete
This commit is contained in:
parent
d034cfecda
commit
7b491dcb80
1 changed files with 19 additions and 0 deletions
|
|
@ -24,6 +24,7 @@ class BoardID(Enum):
|
|||
_9929454382 = "NCHA SHDF Wave 3 Main Operation Board"
|
||||
_18232420839 = "Powys County Council"
|
||||
_18380751311 = "Devon County Council"
|
||||
_18397425376 = "CRG"
|
||||
|
||||
|
||||
board_ids = [
|
||||
|
|
@ -36,6 +37,7 @@ board_ids = [
|
|||
"9929454382", # NCHA SHDF Wave 3 Main Operation Board
|
||||
"18232420839", # Powys County Council:
|
||||
"18380751311", # Devon County Council
|
||||
"", # CRG
|
||||
]
|
||||
|
||||
empty = "Rate card info missing"
|
||||
|
|
@ -212,6 +214,23 @@ rate_card_data_seddon = {
|
|||
|
||||
rate_cards.update({"9671463094": pd.DataFrame(rate_card_data_seddon)})
|
||||
|
||||
rate_card_data_seddon = {
|
||||
"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","Design Repetitive Complex", "Coordination Stage 2", "Lodgement", "Full lodgement phase 2",
|
||||
"Post EPR", "Post EPC", "Post ATT", "retrofit evaluation",
|
||||
"RA no show", "ATT no show", "post EPC no show", "Full cost MTP", "measure modelling", "design type not specified"
|
||||
],
|
||||
"rate": [
|
||||
empty, empty, empty, empty, empty,
|
||||
empty, empty, empty, empty, empty,
|
||||
empty, empty , empty, empty, empty,
|
||||
empty, empty, empty, empty, empty, empty,empty
|
||||
]
|
||||
}
|
||||
|
||||
rate_cards.update({"18397425376": pd.DataFrame(rate_card_data_seddon)})
|
||||
|
||||
|
||||
board_to_record = {}
|
||||
for board in tqdm(board_ids):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue