mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-04 20:59:11 +00:00
15 lines
440 B
JavaScript
15 lines
440 B
JavaScript
// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
// License: GNU General Public License v3. See license.txt
|
|
|
|
frappe.require("assets/erpnext/js/financial_statements.js", function() {
|
|
frappe.query_reports["Balance Sheet"] = erpnext.financial_statements;
|
|
|
|
frappe.query_reports["Balance Sheet"]["filters"].push({
|
|
"fieldname": "accumulated_values",
|
|
"label": __("Accumulated Values"),
|
|
"fieldtype": "Check"
|
|
});
|
|
});
|
|
|
|
|