Merge pull request #39320 from ruthra-kumar/possible_typeerror_in_consolidated_report

fix: possible typeerror in consolidated report
This commit is contained in:
ruthra kumar 2024-01-11 16:54:30 +05:30 committed by GitHub
commit 2a195d457e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,7 @@ frappe.query_reports["Consolidated Financial Statement"] = {
}
value = default_formatter(value, row, column, data);
if (!data.parent_account) {
if (data && !data.parent_account) {
value = $(`<span>${value}</span>`);
var $value = $(value).css("font-weight", "bold");