From 30272cce8fffaca05ecb4f861327b832e008edd3 Mon Sep 17 00:00:00 2001 From: barredterra <14891507+barredterra@users.noreply.github.com> Date: Tue, 25 Mar 2025 11:12:35 +0100 Subject: [PATCH] feat(Customer): add Dunning to dashboard --- erpnext/selling/doctype/customer/customer_dashboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/doctype/customer/customer_dashboard.py b/erpnext/selling/doctype/customer/customer_dashboard.py index 997953f33b7..afa08f26283 100644 --- a/erpnext/selling/doctype/customer/customer_dashboard.py +++ b/erpnext/selling/doctype/customer/customer_dashboard.py @@ -22,7 +22,7 @@ def get_data(): "transactions": [ {"label": _("Pre Sales"), "items": ["Opportunity", "Quotation", "Contract"]}, {"label": _("Orders"), "items": ["Sales Order", "Delivery Note", "Sales Invoice"]}, - {"label": _("Payments"), "items": ["Payment Entry", "Bank Account"]}, + {"label": _("Payments"), "items": ["Payment Entry", "Bank Account", "Dunning"]}, { "label": _("Support"), "items": ["Issue", "Maintenance Visit", "Installation Note", "Warranty Claim"], -- GitLab