1b49f3a4e7
* Allow Cost Center In Entry of Balance Sheet Account * Add parent cost center in get payment entry * Add Tests for Allow Cost Center In Entry of Balance Sheet Account * Add tests for cost center wise account and party balance * set parent cost center in taxes * 1. Remove copy parent cost_center to child 2. Improve update party and account balance functionality on cost_center change 3. Add cost_center filter to get_outstanding_documents * fix Codacy and Travis issue
88 lines
2.3 KiB
JavaScript
88 lines
2.3 KiB
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["Trial Balance"] = {
|
|
"filters": [
|
|
{
|
|
"fieldname": "company",
|
|
"label": __("Company"),
|
|
"fieldtype": "Link",
|
|
"options": "Company",
|
|
"default": frappe.defaults.get_user_default("Company"),
|
|
"reqd": 1
|
|
},
|
|
{
|
|
"fieldname":"cost_center",
|
|
"label": __("Cost Center"),
|
|
"fieldtype": "Link",
|
|
"options": "Cost Center",
|
|
"get_query": function() {
|
|
var company = frappe.query_report.get_filter_value('company');
|
|
return {
|
|
"doctype": "Cost Center",
|
|
"filters": {
|
|
"company": company,
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"fieldname": "fiscal_year",
|
|
"label": __("Fiscal Year"),
|
|
"fieldtype": "Link",
|
|
"options": "Fiscal Year",
|
|
"default": frappe.defaults.get_user_default("fiscal_year"),
|
|
"reqd": 1,
|
|
"on_change": function(query_report) {
|
|
var fiscal_year = query_report.get_values().fiscal_year;
|
|
if (!fiscal_year) {
|
|
return;
|
|
}
|
|
frappe.model.with_doc("Fiscal Year", fiscal_year, function(r) {
|
|
var fy = frappe.model.get_doc("Fiscal Year", fiscal_year);
|
|
frappe.query_report.set_filter_value({
|
|
from_date: fy.year_start_date,
|
|
to_date: fy.year_end_date
|
|
});
|
|
});
|
|
}
|
|
},
|
|
{
|
|
"fieldname": "from_date",
|
|
"label": __("From Date"),
|
|
"fieldtype": "Date",
|
|
"default": frappe.defaults.get_user_default("year_start_date"),
|
|
},
|
|
{
|
|
"fieldname": "to_date",
|
|
"label": __("To Date"),
|
|
"fieldtype": "Date",
|
|
"default": frappe.defaults.get_user_default("year_end_date"),
|
|
},
|
|
{
|
|
"fieldname": "with_period_closing_entry",
|
|
"label": __("Period Closing Entry"),
|
|
"fieldtype": "Check",
|
|
"default": 1
|
|
},
|
|
{
|
|
"fieldname": "show_zero_values",
|
|
"label": __("Show zero values"),
|
|
"fieldtype": "Check"
|
|
},
|
|
{
|
|
"fieldname": "show_unclosed_fy_pl_balances",
|
|
"label": __("Show unclosed fiscal year's P&L balances"),
|
|
"fieldtype": "Check"
|
|
}
|
|
],
|
|
"formatter": erpnext.financial_statements.formatter,
|
|
"tree": true,
|
|
"name_field": "account",
|
|
"parent_field": "parent_account",
|
|
"initial_depth": 3
|
|
}
|
|
});
|
|
|