From ecdff8f320f3f1779d2e87e1e71f13e80cffad8f Mon Sep 17 00:00:00 2001 From: HENRY Florian Date: Wed, 22 Jan 2025 07:41:16 +0100 Subject: [PATCH] fix: heatmap for Customer and Supplier not rendering (#44717) --- erpnext/buying/doctype/supplier/supplier.py | 1 + erpnext/selling/doctype/customer/customer.py | 1 + 2 files changed, 2 insertions(+) diff --git a/erpnext/buying/doctype/supplier/supplier.py b/erpnext/buying/doctype/supplier/supplier.py index 2774f1aeffb..9c30715351f 100644 --- a/erpnext/buying/doctype/supplier/supplier.py +++ b/erpnext/buying/doctype/supplier/supplier.py @@ -13,6 +13,7 @@ from frappe.model.naming import set_name_by_naming_series, set_name_from_naming_ from erpnext.accounts.party import ( get_dashboard_info, + get_timeline_data, validate_party_accounts, ) from erpnext.utilities.transaction_base import TransactionBase diff --git a/erpnext/selling/doctype/customer/customer.py b/erpnext/selling/doctype/customer/customer.py index 182e10a4765..11345ea7d95 100644 --- a/erpnext/selling/doctype/customer/customer.py +++ b/erpnext/selling/doctype/customer/customer.py @@ -20,6 +20,7 @@ from frappe.utils.user import get_users_with_role from erpnext.accounts.party import ( get_dashboard_info, + get_timeline_data, validate_party_accounts, ) from erpnext.utilities.transaction_base import TransactionBase