From: jimtng <2554958+jimtng@users.noreply.github.com> Date: Sat, 29 Jun 2024 14:13:03 +0000 (+1000) Subject: [energidataservice] Update JRuby example (#16961) X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=3770650bf47941fa1e9a017e98f7fca0b370ec5b;p=openhab-addons.git [energidataservice] Update JRuby example (#16961) Signed-off-by: Jimmy Tanagra --- diff --git a/bundles/org.openhab.binding.energidataservice/README.md b/bundles/org.openhab.binding.energidataservice/README.md index ed764749db..48b969c8eb 100644 --- a/bundles/org.openhab.binding.energidataservice/README.md +++ b/bundles/org.openhab.binding.energidataservice/README.md @@ -119,11 +119,11 @@ rule "Calculate total price" do time_series = TimeSeries.new # the default policy is replace spot_prices.each do |spot_price| - total_price = spot_price.state + - GridTariff.persisted_state(spot_price.timestamp).state + - SystemTariff.persisted_state(spot_price.timestamp).state + - TransmissionGridTariff.persisted_state(spot_price.timestamp).state + - ElectricityTax.persisted_state(spot_price.timestamp).state + total_price = spot_price + + GridTariff.persisted_state(spot_price.timestamp) + + SystemTariff.persisted_state(spot_price.timestamp) + + TransmissionGridTariff.persisted_state(spot_price.timestamp) + + ElectricityTax.persisted_state(spot_price.timestamp) time_series.add(spot_price.timestamp, total_price) end TotalPrice.persist(time_series)