brotherton-erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.js

23 lines
717 B
JavaScript
Raw Normal View History

// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
2014-07-14 13:36:52 +00:00
// License: GNU General Public License v3. See license.txt
frappe.require("assets/erpnext/js/financial_statements.js", function() {
frappe.query_reports["Balance Sheet"] = $.extend({}, erpnext.financial_statements);
2017-03-31 05:18:54 +00:00
erpnext.utils.add_dimensions('Balance Sheet', 10);
2017-03-31 05:18:54 +00:00
frappe.query_reports["Balance Sheet"]["filters"].push({
"fieldname": "accumulated_values",
"label": __("Accumulated Values"),
"fieldtype": "Check",
"default": 1
2017-03-31 05:18:54 +00:00
});
frappe.query_reports["Balance Sheet"]["filters"].push({
"fieldname": "include_default_book_entries",
"label": __("Include Default Book Entries"),
"fieldtype": "Check",
"default": 1
});
});