commit | 8b21d27f04be4e56eb41f18988e720b2fb49736f | [log] [tgz] |
---|---|---|
author | ruthra kumar <ruthra@erpnext.com> | Mon Sep 26 11:27:47 2022 +0530 |
committer | GitHub <noreply@github.com> | Mon Sep 26 11:27:47 2022 +0530 |
tree | a3d582c9389c357d9f2b3e2b21d69132165b8228 | |
parent | b33fb26b8409472cd4f93f45491e21e0541561cd [diff] | |
parent | 6919f389aa704f21a83d6a4e8cb6e8a754582663 [diff] |
Merge pull request #32310 from nishibakabeer/patch-4 fix: total value in all keys
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