From cd7d5cdb2201b904bcf5ccfdcb1c4f29cd7e1369 Mon Sep 17 00:00:00 2001 From: Deepesh Garg Date: Thu, 12 May 2022 13:48:09 +0530 Subject: [PATCH] fix: UOM in HSN-wise summary of outward supply --- .../hsn_wise_summary_of_outward_supplies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/regional/report/hsn_wise_summary_of_outward_supplies/hsn_wise_summary_of_outward_supplies.py b/erpnext/regional/report/hsn_wise_summary_of_outward_supplies/hsn_wise_summary_of_outward_supplies.py index 77e616a717e..84721c03081 100644 --- a/erpnext/regional/report/hsn_wise_summary_of_outward_supplies/hsn_wise_summary_of_outward_supplies.py +++ b/erpnext/regional/report/hsn_wise_summary_of_outward_supplies/hsn_wise_summary_of_outward_supplies.py @@ -222,7 +222,7 @@ def get_merged_data(columns, data): result = [] for row in data: - key = row[0] + "-" + str(row[4]) + key = row[0] + "-" + row[2] + "-" + str(row[4]) merged_hsn_dict.setdefault(key, {}) for i, d in enumerate(columns): if d["fieldtype"] not in ("Int", "Float", "Currency"):