diff --git a/backend/app/plan/router.py b/backend/app/plan/router.py index 41a651d0..9ba1b023 100644 --- a/backend/app/plan/router.py +++ b/backend/app/plan/router.py @@ -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 diff --git a/recommendations/FloorRecommendations.py b/recommendations/FloorRecommendations.py index caab80c8..f194ebd9 100644 --- a/recommendations/FloorRecommendations.py +++ b/recommendations/FloorRecommendations.py @@ -298,6 +298,7 @@ class FloorRecommendations(BaseUtility): "parts": [ get_recommended_part(part, depth), ], + "starting_u_value": u_value, "new_u_value": new_u_value, } )