mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +00:00
added starting u value to floor recommendations
This commit is contained in:
parent
35d4d3af03
commit
51f443a3b5
2 changed files with 2 additions and 1 deletions
|
|
@ -278,7 +278,7 @@ async def trigger_plan(body: PlanTriggerRequest):
|
||||||
"description": rec["description"], # TODO: Add this to output
|
"description": rec["description"], # TODO: Add this to output
|
||||||
"estimated_cost": estimated_cost,
|
"estimated_cost": estimated_cost,
|
||||||
"default": True,
|
"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"),
|
"new_u_value": rec.get("new_u_value"),
|
||||||
"sap_points": rec["sap_points"] # TODO: Add this to output
|
"sap_points": rec["sap_points"] # TODO: Add this to output
|
||||||
# Remaining outputs yet to be handled
|
# Remaining outputs yet to be handled
|
||||||
|
|
|
||||||
|
|
@ -298,6 +298,7 @@ class FloorRecommendations(BaseUtility):
|
||||||
"parts": [
|
"parts": [
|
||||||
get_recommended_part(part, depth),
|
get_recommended_part(part, depth),
|
||||||
],
|
],
|
||||||
|
"starting_u_value": u_value,
|
||||||
"new_u_value": new_u_value,
|
"new_u_value": new_u_value,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue