33 lines
1011 B
Python
33 lines
1011 B
Python
from .fplEntity import FplEntity
|
|
|
|
|
|
class AllDataSensor(FplEntity):
|
|
def __init__(self, coordinator, config, account):
|
|
super().__init__(coordinator, config, account, "")
|
|
|
|
@property
|
|
def state(self):
|
|
budget = self.getData("budget_bill")
|
|
budget_billing_projected_bill = self.getData("budget_billing_projected_bill")
|
|
|
|
if budget == True and budget_billing_projected_bill is not None:
|
|
return self.getData("budget_billing_projected_bill")
|
|
|
|
try:
|
|
self._state=self.getData("projected_bill")
|
|
except:
|
|
pass
|
|
return self._state
|
|
|
|
@property
|
|
def icon(self):
|
|
return "mdi:currency-usd"
|
|
|
|
def defineAttributes(self):
|
|
"""Return the state attributes."""
|
|
attributes = {}
|
|
attributes["friendly_name"] = "Budget Projected Bill"
|
|
attributes["device_class"] = "monetary"
|
|
attributes["state_class"] = "total"
|
|
attributes["unit_of_measurement"] = "$"
|
|
return attributes |