Skip to content

Commit

Permalink
fix: wrong currency in Stock Balance report (backport #38778) (#38779)
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 d4c131b commit e05b23c
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 @@ -397,7 +397,7 @@ def get_columns(self):
"fieldname": "bal_val",
"fieldtype": "Currency",
"width": 100,
"options": "currency",
"options": "Company:company:default_currency",
},
{
"label": _("Opening Qty"),
Expand All @@ -411,7 +411,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 e05b23c

Please sign in to comment.