added starting u value to floor recommendations

This commit is contained in:
Khalim Conn-Kowlessar 2023-08-11 20:31:48 +01:00
parent 35d4d3af03
commit 51f443a3b5
2 changed files with 2 additions and 1 deletions

View file

@ -278,7 +278,7 @@ async def trigger_plan(body: PlanTriggerRequest):
"description": rec["description"], # TODO: Add this to output
"estimated_cost": estimated_cost,
"default": True,
"starting_u_value": rec.get("starting_u_value"), # TODO: Add this to output
"starting_u_value": rec.get("starting_u_value"),
"new_u_value": rec.get("new_u_value"),
"sap_points": rec["sap_points"] # TODO: Add this to output
# Remaining outputs yet to be handled

View file

@ -298,6 +298,7 @@ class FloorRecommendations(BaseUtility):
"parts": [
get_recommended_part(part, depth),
],
"starting_u_value": u_value,
"new_u_value": new_u_value,
}
)