mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-01 03:09:09 +00:00
fix: correct function name
This commit is contained in:
@@ -29,7 +29,7 @@ class PartyLedgerSummaryReport:
|
|||||||
self.filters.party_type = args.get("party_type")
|
self.filters.party_type = args.get("party_type")
|
||||||
|
|
||||||
self.validate_filters()
|
self.validate_filters()
|
||||||
self.get_paty_details()
|
self.get_party_details()
|
||||||
|
|
||||||
if not self.parties:
|
if not self.parties:
|
||||||
return [], []
|
return [], []
|
||||||
@@ -59,7 +59,7 @@ class PartyLedgerSummaryReport:
|
|||||||
if self.filters.get(key):
|
if self.filters.get(key):
|
||||||
self.filters[key] = get_children(doctype, self.filters[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
|
Additional Columns for 'User Permission' based access control
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user