commit | a59c2ce17a5858bd3628b7ef7ae8d577ef4bbe80 | [log] [tgz] |
---|---|---|
author | Shivam Mishra <scm.mymail@gmail.com> | Tue Jan 14 17:55:49 2020 +0530 |
committer | Shivam Mishra <scm.mymail@gmail.com> | Tue Jan 14 17:55:49 2020 +0530 |
tree | 7232c2234ebd89dbbd0fc3563342f547daa8d0d9 | |
parent | 748c3d9e8bd5e18462e0f39a09bdc6f721f6dab1 [diff] |
fix: profit and loss indicator bug
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 08cabed..b96fe69 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
@@ -58,7 +58,7 @@ return [ { "value": net_profit[-1], - "indicator": "Green" if income_data[-1] > 0 else "Red", + "indicator": "Green" if net_profit[-1] > 0 else "Red", "label": profit_label, "datatype": "Currency", "currency": net_profit_loss.get("currency")