commit | 6919f389aa704f21a83d6a4e8cb6e8a754582663 | [log] [tgz] |
---|---|---|
author | nishibakabeer <59765279+nishibakabeer@users.noreply.github.com> | Wed Sep 21 13:40:03 2022 +0400 |
committer | ruthra kumar <ruthra@erpnext.com> | Mon Sep 26 10:40:55 2022 +0530 |
tree | 149b50e98e7ec099d3f8fd7219765322b17a788d | |
parent | 07f87b91475f7922ac29ba87e127a1a6affde342 [diff] |
fix: total value in all keys Gross and net profit report showing wrong values in monthly quarterly and half yearly filters which is the total value @ruthra-kumar added in develop branch as suggested ( https://github.com/frappe/erpnext/pull/32020)
diff --git a/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py b/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py index 9d56678..cd5f366 100644 --- a/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py +++ b/erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py
@@ -155,7 +155,6 @@ for d in data: for period in period_list: key = period if consolidated else period.key - d[key] = totals[d["account"]] d["total"] = totals[d["account"]] return data