Skip to content

Commit

Permalink
fix: wrong currency in Stock Balance report (backport #38778) (#38780)
Browse files Browse the repository at this point in the history
fix: wrong currency in Stock Balance report

(cherry picked from commit 5a83a16)

Co-authored-by: s-aga-r <sagarsharma.s312@gmail.com>
  • Loading branch information
mergify[bot] and s-aga-r authored Dec 15, 2023
1 parent 6e92c78 commit 7fc8150
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions erpnext/stock/report/stock_balance/stock_balance.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ def get_columns(self):
"fieldname": "bal_val",
"fieldtype": "Currency",
"width": 100,
"options": "currency",
"options": "Company:company:default_currency",
},
{
"label": _("Opening Qty"),
Expand All @@ -427,7 +427,7 @@ def get_columns(self):
"fieldname": "opening_val",
"fieldtype": "Currency",
"width": 110,
"options": "currency",
"options": "Company:company:default_currency",
},
{
"label": _("In Qty"),
Expand Down

0 comments on commit 7fc8150

Please sign in to comment.