From 198970cdee58bb506afc2b2a9030e8354791fe61 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Wed, 27 May 2026 07:17:24 +0000 Subject: [PATCH] =?UTF-8?q?fix(selling):=20handle=20None=20values=20while?= =?UTF-8?q?=20grouping=20opportunities=20by=20utm=20=E2=80=A6=20(backport?= =?UTF-8?q?=20#55300)=20(#55328)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Pandiyan P fix(selling): handle None values while grouping opportunities by utm … (#55300) --- erpnext/selling/page/sales_funnel/sales_funnel.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/selling/page/sales_funnel/sales_funnel.py b/erpnext/selling/page/sales_funnel/sales_funnel.py index 3c979a60367..92ef546acd5 100644 --- a/erpnext/selling/page/sales_funnel/sales_funnel.py +++ b/erpnext/selling/page/sales_funnel/sales_funnel.py @@ -102,6 +102,7 @@ def get_opp_by(by_field, from_date, to_date, company): }, ) for x in opportunities + if x.get(by_field) ] summary = {}