fix: UOM in HSN-wise summary of outward supply

This commit is contained in:
Deepesh Garg
2022-05-12 13:48:09 +05:30
parent 7369db59aa
commit cd7d5cdb22

View File

@@ -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"):