commit | edb3ef7222daa371d191aad4854fdd8f102d7855 | [log] [tgz] |
---|---|---|
author | Deepesh Garg <deepeshgarg6@gmail.com> | Thu May 12 13:48:09 2022 +0530 |
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | Sun May 15 15:04:19 2022 +0000 |
tree | 549e6ea4d48f7d2396d6fef858e939341ed3e72d | |
parent | c1f47d36cf0a3d3e7e617beb64221e0dd52c9088 [diff] |
fix: UOM in HSN-wise summary of outward supply (cherry picked from commit cd7d5cdb2201b904bcf5ccfdcb1c4f29cd7e1369)
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 3f42668..5ceb2c0 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
@@ -221,7 +221,7 @@ 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"):