feat: show Dr/Cr in Supplier ledger summary & Customer ledger summary

This commit is contained in:
Khushi Rawat
2025-06-03 12:04:27 +05:30
parent 0670765baa
commit d15e3bb52b
2 changed files with 12 additions and 0 deletions

View File

@@ -115,6 +115,12 @@ frappe.query_reports["Customer Ledger Summary"] = {
});
},
},
{
fieldname: "show_dr_cr",
label: __("Closing Balance in Dr/Cr"),
fieldtype: "Check",
default: 0,
},
],
};

View File

@@ -96,6 +96,12 @@ frappe.query_reports["Supplier Ledger Summary"] = {
});
},
},
{
fieldname: "show_dr_cr",
label: __("Closing Balnce in Dr/Cr"),
fieldtype: "Check",
default: 0,
},
],
};