blob: 36746cddc30b56d2bd871de6b2cc2ca2c00c1df2 [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") {
7 value = data.account_name;
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(){
66 return [
67 {
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 {
Sanjay Kumar1b49f3a2018-09-06 13:09:35 +040082 "fieldname":"cost_center",
83 "label": __("Cost Center"),
Nabin Haitb479a872018-09-07 13:17:11 +053084 "fieldtype": "MultiSelect",
85 get_data: function() {
86 var cost_centers = frappe.query_report.get_filter_value("cost_center") || "";
87
88 const values = cost_centers.split(/\s*,\s*/).filter(d => d);
89 const txt = cost_centers.match(/[^,\s*]*$/)[0] || '';
90 let data = [];
91
92 frappe.call({
93 type: "GET",
94 method:'frappe.desk.search.search_link',
95 async: false,
96 no_spinner: true,
97 args: {
98 doctype: "Cost Center",
99 txt: txt,
100 filters: {
101 "company": frappe.query_report.get_filter_value("company"),
102 "name": ["not in", values]
103 }
104 },
105 callback: function(r) {
106 data = r.results;
Sanjay Kumar1b49f3a2018-09-06 13:09:35 +0400107 }
Nabin Haitb479a872018-09-07 13:17:11 +0530108 });
109 return data;
Sanjay Kumar1b49f3a2018-09-06 13:09:35 +0400110 }
111 },
112 {
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530113 "fieldname":"from_fiscal_year",
Rohit Waghchaure26b646f2016-08-21 17:14:12 +0530114 "label": __("Start Year"),
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530115 "fieldtype": "Link",
116 "options": "Fiscal Year",
117 "default": frappe.defaults.get_user_default("fiscal_year"),
118 "reqd": 1
119 },
120 {
121 "fieldname":"to_fiscal_year",
Rohit Waghchaure26b646f2016-08-21 17:14:12 +0530122 "label": __("End Year"),
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530123 "fieldtype": "Link",
124 "options": "Fiscal Year",
125 "default": frappe.defaults.get_user_default("fiscal_year"),
126 "reqd": 1
127 },
128 {
129 "fieldname": "periodicity",
130 "label": __("Periodicity"),
131 "fieldtype": "Select",
132 "options": [
133 { "value": "Monthly", "label": __("Monthly") },
134 { "value": "Quarterly", "label": __("Quarterly") },
135 { "value": "Half-Yearly", "label": __("Half-Yearly") },
136 { "value": "Yearly", "label": __("Yearly") }
137 ],
Nabin Haitf6b784e2018-08-30 18:42:35 +0530138 "default": "Yearly",
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530139 "reqd": 1
tundebabzyc8978252018-02-12 10:34:50 +0100140 },
141 // Note:
142 // If you are modifying this array such that the presentation_currency object
143 // is no longer the last object, please make adjustments in cash_flow.js
144 // accordingly.
145 {
146 "fieldname": "presentation_currency",
147 "label": __("Currency"),
148 "fieldtype": "Select",
149 "options": erpnext.get_presentation_currency_list()
Rohit Waghchaure4275c302016-08-19 11:48:58 +0530150 }
151 ]
152}