From 218e7927ffcf82aca7d934ba2d89a069a7be6be6 Mon Sep 17 00:00:00 2001 From: Vishnu Priya Baskaran <145791817+ervishnucs@users.noreply.github.com> Date: Tue, 8 Sep 2026 16:47:46 +0530 Subject: [PATCH] fix: fetch accounts by company (#58523) --- erpnext/accounts/report/cash_flow/cash_flow.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/accounts/report/cash_flow/cash_flow.py b/erpnext/accounts/report/cash_flow/cash_flow.py index 4f8f6db15ab..7487ea952cf 100644 --- a/erpnext/accounts/report/cash_flow/cash_flow.py +++ b/erpnext/accounts/report/cash_flow/cash_flow.py @@ -114,6 +114,7 @@ def execute(filters=None): filters={ "account_type": row["account_type"], "is_group": 0, + "company": filters.company, }, pluck="name", )