fix: asset depreciation ledger (#37991) * fix: include opening acc depr while calculating asset depr ledger report * chore: include opening acc depr properly in acc depr amt * chore: add cost_center in asset depr ledger report * fix: handle finance books properly in asset depr ledger report * chore: rename 'include default book entries' to 'include default FB entries' (cherry picked from commit 9a171db97f67f88fad1589016afb4e808571d04c) Co-authored-by: Anand Baburajan <anandbaburajan@gmail.com>
24 lines
614 B
JavaScript
24 lines
614 B
JavaScript
// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
// License: GNU General Public License v3. See license.txt
|
|
|
|
frappe.query_reports["Balance Sheet"] = $.extend(
|
|
{},
|
|
erpnext.financial_statements
|
|
);
|
|
|
|
erpnext.utils.add_dimensions("Balance Sheet", 10);
|
|
|
|
frappe.query_reports["Balance Sheet"]["filters"].push({
|
|
fieldname: "accumulated_values",
|
|
label: __("Accumulated Values"),
|
|
fieldtype: "Check",
|
|
default: 1,
|
|
});
|
|
|
|
frappe.query_reports["Balance Sheet"]["filters"].push({
|
|
fieldname: "include_default_book_entries",
|
|
label: __("Include Default FB Entries"),
|
|
fieldtype: "Check",
|
|
default: 1,
|
|
});
|