Skip to content

Commit

Permalink
fix: wrong currency in Stock Balance report
Browse files Browse the repository at this point in the history
  • Loading branch information
s-aga-r committed Dec 15, 2023
1 parent d6201ce commit 5a83a16
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 5a83a16

Please sign in to comment.