From 393d2459b9980235cb5223b15a43656dd03a18b2 Mon Sep 17 00:00:00 2001 From: ljain112 Date: Tue, 1 Apr 2025 17:43:11 +0530 Subject: [PATCH] fix: correct function name (cherry picked from commit 038355f87b1950fd40546748d3528440ca461e26) --- .../report/customer_ledger_summary/customer_ledger_summary.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py b/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py index df6821b832a..3553b69044c 100644 --- a/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py +++ b/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py @@ -39,7 +39,7 @@ class PartyLedgerSummaryReport: >>>>>>> fca46e0b2d (fix: child values for tree doctypes and query refactor) self.validate_filters() - self.get_paty_details() + self.get_party_details() if not self.parties: return [], [] @@ -69,7 +69,7 @@ class PartyLedgerSummaryReport: if self.filters.get(key): self.filters[key] = get_children(doctype, self.filters[key]) - def get_paty_details(self): + def get_party_details(self): """ Additional Columns for 'User Permission' based access control """