2015-12-12 02:33:01 +00:00
|
|
|
// Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors
|
|
|
|
// For license information, please see license.txt
|
|
|
|
|
2016-04-29 11:52:42 +00:00
|
|
|
frappe.require("assets/erpnext/js/financial_statements.js", function() {
|
2016-08-19 06:18:58 +00:00
|
|
|
frappe.query_reports["Cash Flow"] = $.extend({},
|
|
|
|
erpnext.financial_statements);
|
2015-12-12 02:33:01 +00:00
|
|
|
|
2016-04-29 11:52:42 +00:00
|
|
|
frappe.query_reports["Cash Flow"]["filters"].push({
|
|
|
|
"fieldname": "accumulated_values",
|
|
|
|
"label": __("Accumulated Values"),
|
|
|
|
"fieldtype": "Check"
|
|
|
|
});
|
|
|
|
});
|