blob: 296c6280d84851028cf9e969dc022294fa344478 [file] [log] [blame]
Anand Doshi825d0142014-07-18 18:05:26 +05301frappe.provide("erpnext.financial_statements");
2
3erpnext.financial_statements = {
Rohit Waghchaure4275c302016-08-19 11:48:58 +05304 "filters": get_filters(),
Faris Ansari5986d592018-07-20 15:11:55 +05305 "formatter": function(value, row, column, data, default_formatter) {
6 if (column.fieldname=="account") {
thefalconx33a639f162019-12-04 09:46:42 +05307 value = data.account_name || value;
Anand Doshi825d0142014-07-18 18:05:26 +05308
Faris Ansari5986d592018-07-20 15:11:55 +05309 column.link_onclick =
10 "erpnext.financial_statements.open_general_ledger(" + JSON.stringify(data) + ")";
11 column.is_tree = true;
Anand Doshi825d0142014-07-18 18:05:26 +053012 }
13
Faris Ansari5986d592018-07-20 15:11:55 +053014 value = default_formatter(value, row, column, data);
Anand Doshicb86d592014-07-22 19:02:11 +053015
Faris Ansari5986d592018-07-20 15:11:55 +053016 if (!data.parent_account) {
17 value = $(`<span>${value}</span>`);
18
Anand Doshi5f0459c2014-07-21 16:13:06 +053019 var $value = $(value).css("font-weight", "bold");
Faris Ansari5986d592018-07-20 15:11:55 +053020 if (data.warn_if_negative && data[column.fieldname] < 0) {
Anand Doshi5f0459c2014-07-21 16:13:06 +053021 $value.addClass("text-danger");
22 }
23
24 value = $value.wrap("<p></p>").parent().html();
Anand Doshi825d0142014-07-18 18:05:26 +053025 }
26
27 return value;
28 },
Anand Doshi5f0459c2014-07-21 16:13:06 +053029 "open_general_ledger": function(data) {
30 if (!data.account) return;
Rohit Waghchaure019501e2017-04-19 17:53:31 +053031 var project = $.grep(frappe.query_report.filters, function(e){ return e.df.fieldname == 'project'; })
Anand Doshi825d0142014-07-18 18:05:26 +053032
33 frappe.route_options = {
Anand Doshi5f0459c2014-07-21 16:13:06 +053034 "account": data.account,
Faris Ansari9e874af2018-07-18 09:28:44 +053035 "company": frappe.query_report.get_filter_value('company'),
Anand Doshi561e6cd2016-02-16 11:56:53 +053036 "from_date": data.from_date || data.year_start_date,
Ricardo Johann34354232017-01-24 06:42:24 -030037 "to_date": data.to_date || data.year_end_date,
Rohit Waghchaure019501e2017-04-19 17:53:31 +053038 "project": (project && project.length > 0) ? project[0].$input.val() : ""
Anand Doshi825d0142014-07-18 18:05:26 +053039 };
40 frappe.set_route("query-report", "General Ledger");
Anand Doshicb86d592014-07-22 19:02:11 +053041 },
42 "tree": true,
43 "name_field": "account",
44 "parent_field": "parent_account",
Rushabh Mehta05253872016-04-18 19:27:36 +053045 "initial_depth": 3,
46 onload: function(report) {
47 // dropdown for links to other financial statements
Rohit Waghchaure4275c302016-08-19 11:48:58 +053048 erpnext.financial_statements.filters = get_filters()
49
Rushabh Mehta05253872016-04-18 19:27:36 +053050 report.page.add_inner_button(__("Balance Sheet"), function() {
51 var filters = report.get_values();
52 frappe.set_route('query-report', 'Balance Sheet', {company: filters.company});
Francisco Roldán44c1a612017-05-26 13:02:51 -030053 }, __('Financial Statements'));
Rushabh Mehta05253872016-04-18 19:27:36 +053054 report.page.add_inner_button(__("Profit and Loss"), function() {
55 var filters = report.get_values();
56 frappe.set_route('query-report', 'Profit and Loss Statement', {company: filters.company});
Francisco Roldán44c1a612017-05-26 13:02:51 -030057 }, __('Financial Statements'));
Rushabh Mehta05253872016-04-18 19:27:36 +053058 report.page.add_inner_button(__("Cash Flow Statement"), function() {
59 var filters = report.get_values();
60 frappe.set_route('query-report', 'Cash Flow', {company: filters.company});
Francisco Roldán44c1a612017-05-26 13:02:51 -030061 }, __('Financial Statements'));
Nabin Hait44c1b8e2016-05-20 11:44:08 +053062 }
Anand Doshi825d0142014-07-18 18:05:26 +053063};
Rohit Waghchaure4275c302016-08-19 11:48:58 +053064
65function get_filters(){
deepeshgarg007d83cf652019-05-12 18:34:23 +053066 let filters = [
Rohit Waghchaure4275c302016-08-19 11:48:58 +053067 {
68 "fieldname":"company",
69 "label": __("Company"),
70 "fieldtype": "Link",
71 "options": "Company",
72 "default": frappe.defaults.get_user_default("Company"),
73 "reqd": 1
74 },
75 {
Gaurav Naik8cbbdfd2018-04-23 03:36:02 +053076 "fieldname":"finance_book",
77 "label": __("Finance Book"),
78 "fieldtype": "Link",
Nabin Haitb9fed2a2018-05-09 15:10:29 +053079 "options": "Finance Book"
Gaurav Naik8cbbdfd2018-04-23 03:36:02 +053080 },
81 {
Deepesh Garg24a2c9b2020-04-07 12:16:25 +053082 "fieldname":"filter_based_on",
83 "label": __("Filter Based On"),
84 "fieldtype": "Select",
85 "options": ["Fiscal Year", "Date Range"],
86 "default": ["Fiscal Year"],
87 "reqd": 1,
88 on_change: function() {
89 let filter_based_on = frappe.query_report.get_filter_value('filter_based_on');
90 frappe.query_report.toggle_filter_display('from_fiscal_year', filter_based_on === 'Date Range');
91 frappe.query_report.toggle_filter_display('to_fiscal_year', filter_based_on === 'Date Range');
92 frappe.query_report.toggle_filter_display('period_start_date', filter_based_on === 'Fiscal Year');
93 frappe.query_report.toggle_filter_display('period_end_date', filter_based_on === 'Fiscal Year');
94
95 frappe.query_report.refresh();
96 }
97 },
98 {
99 "fieldname":"period_start_date",
100 "label": __("Start Date"),
101 "fieldtype": "Date",
102 "default": frappe.datetime.nowdate(),
103 "hidden": 1,
104 "reqd": 1
105 },
106 {
107 "fieldname":"period_end_date",
108 "label": __("End Date"),
109 "fieldtype": "Date",
110 "default": frappe.datetime.add_months(frappe.datetime.nowdate(), 12),
111 "hidden": 1,
112 "reqd": 1
113 },
114 {
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530115 "fieldname":"from_fiscal_year",
Rohit Waghchaure26b646f2016-08-21 17:14:12 +0530116 "label": __("Start Year"),
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530117 "fieldtype": "Link",
118 "options": "Fiscal Year",
119 "default": frappe.defaults.get_user_default("fiscal_year"),
120 "reqd": 1
121 },
122 {
123 "fieldname":"to_fiscal_year",
Rohit Waghchaure26b646f2016-08-21 17:14:12 +0530124 "label": __("End Year"),
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530125 "fieldtype": "Link",
126 "options": "Fiscal Year",
127 "default": frappe.defaults.get_user_default("fiscal_year"),
128 "reqd": 1
129 },
130 {
131 "fieldname": "periodicity",
132 "label": __("Periodicity"),
133 "fieldtype": "Select",
134 "options": [
135 { "value": "Monthly", "label": __("Monthly") },
136 { "value": "Quarterly", "label": __("Quarterly") },
137 { "value": "Half-Yearly", "label": __("Half-Yearly") },
138 { "value": "Yearly", "label": __("Yearly") }
139 ],
Nabin Haitf6b784e2018-08-30 18:42:35 +0530140 "default": "Yearly",
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530141 "reqd": 1
tundebabzyc8978252018-02-12 10:34:50 +0100142 },
143 // Note:
144 // If you are modifying this array such that the presentation_currency object
145 // is no longer the last object, please make adjustments in cash_flow.js
146 // accordingly.
147 {
148 "fieldname": "presentation_currency",
149 "label": __("Currency"),
150 "fieldtype": "Select",
151 "options": erpnext.get_presentation_currency_list()
deepeshgarg007f5b6ee92019-05-28 12:15:56 +0530152 },
153 {
Faris Ansari26321072019-06-19 12:15:37 +0530154 "fieldname": "cost_center",
deepeshgarg007f5b6ee92019-05-28 12:15:56 +0530155 "label": __("Cost Center"),
Faris Ansari26321072019-06-19 12:15:37 +0530156 "fieldtype": "MultiSelectList",
157 get_data: function(txt) {
158 return frappe.db.get_link_options('Cost Center', txt, {
159 company: frappe.query_report.get_filter_value("company")
deepeshgarg007f5b6ee92019-05-28 12:15:56 +0530160 });
deepeshgarg007f5b6ee92019-05-28 12:15:56 +0530161 }
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530162 }
163 ]
deepeshgarg007d83cf652019-05-12 18:34:23 +0530164
deepeshgarg007f1f79ff2019-07-18 08:54:15 +0530165 erpnext.dimension_filters.forEach((dimension) => {
deepeshgarg0077d270ed2019-07-17 15:38:21 +0530166 filters.push({
167 "fieldname": dimension["fieldname"],
168 "label": __(dimension["label"]),
169 "fieldtype": "Link",
170 "options": dimension["document_type"]
deepeshgarg007d83cf652019-05-12 18:34:23 +0530171 });
172 });
173
174 return filters;
175}
176
deepeshgarg007d83cf652019-05-12 18:34:23 +0530177