Skip to content

Commit

Permalink
Merge pull request frappe#39394 from noec764/Fix_UntranslatedColumnsI…
Browse files Browse the repository at this point in the history
…nGlobalLedger

fix: Untranslated columns in Global Ledger Report
  • Loading branch information
deepeshgarg007 authored Jan 16, 2024
2 parents 80f5026 + bdd382b commit 3273863
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions erpnext/accounts/report/general_ledger/general_ledger.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,10 @@ def update_value_in_dict(data, key, gle):
for gle in gl_entries:
group_by_value = gle.get(group_by)
gle.voucher_type = _(gle.voucher_type)
gle.voucher_subtype = _(gle.voucher_subtype)
gle.against_voucher_type = _(gle.against_voucher_type)
gle.remarks = _(gle.remarks)
gle.party_type = _(gle.party_type)

if gle.posting_date < from_date or (cstr(gle.is_opening) == "Yes" and not show_opening_entries):
if not group_by_voucher_consolidated:
Expand Down

0 comments on commit 3273863

Please sign in to comment.