added measure type for ventilation, draught proofing

This commit is contained in:
Khalim Conn-Kowlessar 2024-10-03 10:39:59 +01:00
parent 1f1bf9981c
commit 0c2463efe0
2 changed files with 3 additions and 0 deletions

View file

@ -38,6 +38,7 @@ class DraughtProofingRecommendations:
"phase": None,
"parts": [],
"type": "draught_proofing",
"measure_type": "draught_proofing",
"description": description,
"starting_u_value": None,
"new_u_value": None,

View file

@ -66,6 +66,7 @@ class VentilationRecommendations(Definitions):
"phase": None,
"parts": part,
"type": part[0]["type"],
"measure_type": "mechanical_ventilation",
"description": f"Install {n_units} {part[0]['description']} units",
"starting_u_value": None,
"new_u_value": None,
@ -106,6 +107,7 @@ class VentilationRecommendations(Definitions):
"phase": None,
"parts": [],
"type": "trickle_vents",
"measure_type": "trickle_vents",
"description": description,
"starting_u_value": None,
"new_u_value": None,