Merge pull request #15990 from rohitwaghchaure/patch_code_refactor

[Minor] Patch fixes
This commit is contained in:
rohitwaghchaure 2018-11-15 12:21:46 +05:30 committed by GitHub
commit 93f358778b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,8 +36,8 @@ def execute():
where dt_item.name in ({rows_name})
""".format(dt=dt, rows_name=", ".join(['%s']*len(transaction_rows_name))), tuple(transaction_rows_name))
for t in transactions:
print(t.name)
trans_doc = frappe.get_doc(dt, t.name)
parent = set([d.name for d in transactions])
for t in list(parent):
trans_doc = frappe.get_doc(dt, t)
hsnwise_tax = get_itemised_tax_breakup_html(trans_doc)
frappe.db.set_value(dt, t.name, "other_charges_calculation", hsnwise_tax, update_modified=False)
frappe.db.set_value(dt, t, "other_charges_calculation", hsnwise_tax, update_modified=False)