From d7df2cbdc528ee4121a039480b7aa47a87796499 Mon Sep 17 00:00:00 2001 From: jabir-elat <44110258+jabir-elat@users.noreply.github.com> Date: Tue, 21 May 2024 14:38:13 +0530 Subject: [PATCH] fix: correct report name in inner button (#41568) Previously, the report name was incorrectly listed as "Cash Flow Statement" instead of "Cash Flow". This mismatch caused the "Cash Flow" report to not open correctly in the chart of accounts tree view, as the report ID is "Cash Flow". --- erpnext/accounts/doctype/account/account_tree.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/accounts/doctype/account/account_tree.js b/erpnext/accounts/doctype/account/account_tree.js index 93de49d9002..06ad7b25673 100644 --- a/erpnext/accounts/doctype/account/account_tree.js +++ b/erpnext/accounts/doctype/account/account_tree.js @@ -222,7 +222,7 @@ frappe.treeview_settings["Account"] = { "General Ledger", "Balance Sheet", "Profit and Loss Statement", - "Cash Flow Statement", + "Cash Flow", "Accounts Payable", "Accounts Receivable", ]) {