fix: Consider paryt and party type as well in group by consolidated view

This commit is contained in:
Deepesh Garg 2022-05-04 15:59:24 +05:30
parent 1b285cf662
commit c2d52a1ac0

View File

@ -435,7 +435,13 @@ def get_accountwise_gle(filters, accounting_dimensions, gl_entries, gle_map):
gle_map[group_by_value].entries.append(gle) gle_map[group_by_value].entries.append(gle)
elif group_by_voucher_consolidated: elif group_by_voucher_consolidated:
keylist = [gle.get("voucher_type"), gle.get("voucher_no"), gle.get("account")] keylist = [
gle.get("voucher_type"),
gle.get("voucher_no"),
gle.get("account"),
gle.get("party_type"),
gle.get("party"),
]
if filters.get("include_dimensions"): if filters.get("include_dimensions"):
for dim in accounting_dimensions: for dim in accounting_dimensions:
keylist.append(gle.get(dim)) keylist.append(gle.get(dim))