commit | 61d8088be406822d224aec1399cfce3d9d3fd092 | [log] [tgz] |
---|---|---|
author | Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> | Wed Jul 10 17:05:25 2019 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Wed Jul 10 17:05:25 2019 +0530 |
tree | 57d33ded4a2b08c35ee9fa9bd8d9cd6f9872f3bd | |
parent | 058787d2044b83c8a12885e1879b711b388f570f [diff] |
fix: Return fieldtype so that the client-side can format chart values (#18211)
diff --git a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py index 48d7361..ac11868 100644 --- a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py +++ b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py
@@ -93,4 +93,6 @@ else: chart["type"] = "line" + chart["fieldtype"] = "Currency" + return chart \ No newline at end of file