diff --git a/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js b/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js index 736dbed53d3..c1421a916e3 100644 --- a/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js +++ b/erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js @@ -115,6 +115,12 @@ frappe.query_reports["Customer Ledger Summary"] = { }); }, }, + { + fieldname: "show_dr_cr", + label: __("Closing Balance in Dr/Cr"), + fieldtype: "Check", + default: 0, + }, ], }; 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 df0a204be8a..e0bfb4910c9 100644 --- a/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js +++ b/erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js @@ -96,6 +96,12 @@ frappe.query_reports["Supplier Ledger Summary"] = { }); }, }, + { + fieldname: "show_dr_cr", + label: __("Closing Balnce in Dr/Cr"), + fieldtype: "Check", + default: 0, + }, ], };