blob: d89d4712e6dc930b7cdbb09ee1bf017462ace33a [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
Deepesh Garg1f3fe592020-05-28 18:36:21 +053050 let fiscal_year = frappe.defaults.get_user_default("fiscal_year")
51
52 frappe.model.with_doc("Fiscal Year", fiscal_year, function(r) {
53 var fy = frappe.model.get_doc("Fiscal Year", fiscal_year);
54 frappe.query_report.set_filter_value({
55 period_start_date: fy.year_start_date,
56 period_end_date: fy.year_end_date
57 });
58 });
59
Rushabh Mehta05253872016-04-18 19:27:36 +053060 report.page.add_inner_button(__("Balance Sheet"), function() {
61 var filters = report.get_values();
62 frappe.set_route('query-report', 'Balance Sheet', {company: filters.company});
Francisco Roldán44c1a612017-05-26 13:02:51 -030063 }, __('Financial Statements'));
Rushabh Mehta05253872016-04-18 19:27:36 +053064 report.page.add_inner_button(__("Profit and Loss"), function() {
65 var filters = report.get_values();
66 frappe.set_route('query-report', 'Profit and Loss Statement', {company: filters.company});
Francisco Roldán44c1a612017-05-26 13:02:51 -030067 }, __('Financial Statements'));
Rushabh Mehta05253872016-04-18 19:27:36 +053068 report.page.add_inner_button(__("Cash Flow Statement"), function() {
69 var filters = report.get_values();
70 frappe.set_route('query-report', 'Cash Flow', {company: filters.company});
Francisco Roldán44c1a612017-05-26 13:02:51 -030071 }, __('Financial Statements'));
Nabin Hait44c1b8e2016-05-20 11:44:08 +053072 }
Anand Doshi825d0142014-07-18 18:05:26 +053073};
Rohit Waghchaure4275c302016-08-19 11:48:58 +053074
Deepesh Garg11ea0b12020-05-26 19:23:45 +053075function get_filters() {
deepeshgarg007d83cf652019-05-12 18:34:23 +053076 let filters = [
Rohit Waghchaure4275c302016-08-19 11:48:58 +053077 {
78 "fieldname":"company",
79 "label": __("Company"),
80 "fieldtype": "Link",
81 "options": "Company",
82 "default": frappe.defaults.get_user_default("Company"),
83 "reqd": 1
84 },
85 {
Gaurav Naik8cbbdfd2018-04-23 03:36:02 +053086 "fieldname":"finance_book",
87 "label": __("Finance Book"),
88 "fieldtype": "Link",
Nabin Haitb9fed2a2018-05-09 15:10:29 +053089 "options": "Finance Book"
Gaurav Naik8cbbdfd2018-04-23 03:36:02 +053090 },
91 {
Deepesh Garg24a2c9b2020-04-07 12:16:25 +053092 "fieldname":"filter_based_on",
93 "label": __("Filter Based On"),
94 "fieldtype": "Select",
95 "options": ["Fiscal Year", "Date Range"],
96 "default": ["Fiscal Year"],
97 "reqd": 1,
98 on_change: function() {
99 let filter_based_on = frappe.query_report.get_filter_value('filter_based_on');
100 frappe.query_report.toggle_filter_display('from_fiscal_year', filter_based_on === 'Date Range');
101 frappe.query_report.toggle_filter_display('to_fiscal_year', filter_based_on === 'Date Range');
102 frappe.query_report.toggle_filter_display('period_start_date', filter_based_on === 'Fiscal Year');
103 frappe.query_report.toggle_filter_display('period_end_date', filter_based_on === 'Fiscal Year');
104
105 frappe.query_report.refresh();
106 }
107 },
108 {
109 "fieldname":"period_start_date",
110 "label": __("Start Date"),
111 "fieldtype": "Date",
Deepesh Garg24a2c9b2020-04-07 12:16:25 +0530112 "hidden": 1,
113 "reqd": 1
114 },
115 {
116 "fieldname":"period_end_date",
117 "label": __("End Date"),
118 "fieldtype": "Date",
Deepesh Garg24a2c9b2020-04-07 12:16:25 +0530119 "hidden": 1,
120 "reqd": 1
121 },
122 {
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530123 "fieldname":"from_fiscal_year",
Rohit Waghchaure26b646f2016-08-21 17:14:12 +0530124 "label": __("Start 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":"to_fiscal_year",
Rohit Waghchaure26b646f2016-08-21 17:14:12 +0530132 "label": __("End Year"),
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530133 "fieldtype": "Link",
134 "options": "Fiscal Year",
135 "default": frappe.defaults.get_user_default("fiscal_year"),
136 "reqd": 1
137 },
138 {
139 "fieldname": "periodicity",
140 "label": __("Periodicity"),
141 "fieldtype": "Select",
142 "options": [
143 { "value": "Monthly", "label": __("Monthly") },
144 { "value": "Quarterly", "label": __("Quarterly") },
145 { "value": "Half-Yearly", "label": __("Half-Yearly") },
146 { "value": "Yearly", "label": __("Yearly") }
147 ],
Nabin Haitf6b784e2018-08-30 18:42:35 +0530148 "default": "Yearly",
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530149 "reqd": 1
tundebabzyc8978252018-02-12 10:34:50 +0100150 },
151 // Note:
152 // If you are modifying this array such that the presentation_currency object
153 // is no longer the last object, please make adjustments in cash_flow.js
154 // accordingly.
155 {
156 "fieldname": "presentation_currency",
157 "label": __("Currency"),
158 "fieldtype": "Select",
159 "options": erpnext.get_presentation_currency_list()
deepeshgarg007f5b6ee92019-05-28 12:15:56 +0530160 },
161 {
Faris Ansari26321072019-06-19 12:15:37 +0530162 "fieldname": "cost_center",
deepeshgarg007f5b6ee92019-05-28 12:15:56 +0530163 "label": __("Cost Center"),
Faris Ansari26321072019-06-19 12:15:37 +0530164 "fieldtype": "MultiSelectList",
165 get_data: function(txt) {
166 return frappe.db.get_link_options('Cost Center', txt, {
167 company: frappe.query_report.get_filter_value("company")
deepeshgarg007f5b6ee92019-05-28 12:15:56 +0530168 });
deepeshgarg007f5b6ee92019-05-28 12:15:56 +0530169 }
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530170 }
171 ]
deepeshgarg007d83cf652019-05-12 18:34:23 +0530172
deepeshgarg007d83cf652019-05-12 18:34:23 +0530173 return filters;
174}
175
deepeshgarg007d83cf652019-05-12 18:34:23 +0530176