From 07d073da0de62a96c710c47d186fffd8f876465c Mon Sep 17 00:00:00 2001 From: Diptanil Saha Date: Tue, 16 Jun 2026 14:34:52 +0530 Subject: [PATCH] fix(accounts): removed whitelist on `get_balance_on` (#55956) --- erpnext/accounts/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/erpnext/accounts/utils.py b/erpnext/accounts/utils.py index 93c1bf1af05..e2f78f00116 100644 --- a/erpnext/accounts/utils.py +++ b/erpnext/accounts/utils.py @@ -200,7 +200,6 @@ def validate_fiscal_year(date, fiscal_year, company, label="Date", doc=None): throw(_("{0} '{1}' not in Fiscal Year {2}").format(_(label), formatdate(date), fiscal_year)) -@frappe.whitelist() def get_balance_on( account: str | None = None, date: DateTimeLikeObject | None = None,