From df77a8079cb739d6acb9f17228972e5189f75fa7 Mon Sep 17 00:00:00 2001 From: Paul Gilman Date: Thu, 23 Jan 2025 11:01:45 -0800 Subject: [PATCH] Remove land lease from cash flow for BTM hybrid configs --- deploy/runtime/cashflow.lk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/runtime/cashflow.lk b/deploy/runtime/cashflow.lk index 86e8cff153..5a981274a0 100644 --- a/deploy/runtime/cashflow.lk +++ b/deploy/runtime/cashflow.lk @@ -379,7 +379,7 @@ function cf_operating_expenses() cf_om_expenses(); cfline( 'cf_property_tax_expense', 0); cfline( 'cf_insurance_expense', 0); - if ( is_land_lease_config() ) { cfline('cf_land_lease_expense', 0); } + if ( is_land_lease_config() && strpos(technology(),'Hybrid') < 0 ) { cfline('cf_land_lease_expense', 0); } // hybrid land lease handled in cf_om_expenses() function if ( fin == 'Community Solar') { cfline('cf_community_solar_recurring_fixed', 0);