fixed description for ttaz

This commit is contained in:
Khalim Conn-Kowlessar 2024-04-03 16:30:45 +01:00
parent 2234269ca6
commit f2cec8de11

View file

@ -162,6 +162,7 @@ class HeatingControlRecommender:
self.recommendation.append( self.recommendation.append(
{ {
"type": "heating_control", "type": "heating_control",
"parts": [],
"description": "upgrade heating controls to Room thermostat, programmer and TRVs", "description": "upgrade heating controls to Room thermostat, programmer and TRVs",
**self.costs.roomstat_programmer_trvs( **self.costs.roomstat_programmer_trvs(
number_heated_rooms=int(self.property.data["number-heated-rooms"]), number_heated_rooms=int(self.property.data["number-heated-rooms"]),
@ -213,7 +214,8 @@ class HeatingControlRecommender:
self.recommendation.append( self.recommendation.append(
{ {
"type": "heating_control", "type": "heating_control",
"description": "upgrade heating controls to Room thermostat, programmer and TRVs", "parts": [],
"description": "Upgrade heating controls to Time and Temperature Zone Controls",
**self.costs.time_and_temperature_zone_control( **self.costs.time_and_temperature_zone_control(
number_heated_rooms=int(self.property.data["number-heated-rooms"]) number_heated_rooms=int(self.property.data["number-heated-rooms"])
), ),