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 64b174f809c..0121d294955 100644 --- a/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py +++ b/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py @@ -244,7 +244,7 @@ class PartyLedgerSummaryReport: ] if self.filters.show_dr_cr: - columns.append({"label": "Dr/Cr", "fieldname": "dr_or_cr", "fieldtype": "Data", "width": 100}) + columns.append({"label": "Dr or Cr", "fieldname": "dr_or_cr", "fieldtype": "Data", "width": 100}) return columns def get_data(self): diff --git a/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js b/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js index e0bfb4910c9..76cc979de75 100644 --- a/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js +++ b/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js @@ -98,7 +98,7 @@ frappe.query_reports["Supplier Ledger Summary"] = { }, { fieldname: "show_dr_cr", - label: __("Closing Balnce in Dr/Cr"), + label: __("Closing Balance in Dr/Cr"), fieldtype: "Check", default: 0, },