mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-04 04:39:11 +00:00
Merge pull request #40714 from khushi8112/general_ledger_report_voucher_no
fix: voucher no. is link field for non english user interface
This commit is contained in:
@@ -453,7 +453,7 @@ def get_accountwise_gle(filters, accounting_dimensions, gl_entries, gle_map):
|
|||||||
|
|
||||||
for gle in gl_entries:
|
for gle in gl_entries:
|
||||||
group_by_value = gle.get(group_by)
|
group_by_value = gle.get(group_by)
|
||||||
gle.voucher_type = _(gle.voucher_type)
|
gle.voucher_type = gle.voucher_type
|
||||||
gle.voucher_subtype = _(gle.voucher_subtype)
|
gle.voucher_subtype = _(gle.voucher_subtype)
|
||||||
gle.against_voucher_type = _(gle.against_voucher_type)
|
gle.against_voucher_type = _(gle.against_voucher_type)
|
||||||
gle.remarks = _(gle.remarks)
|
gle.remarks = _(gle.remarks)
|
||||||
|
|||||||
Reference in New Issue
Block a user