commit | aaabba9b1e93ab90fd2afa9fb7b404b10fe8a3a4 | [log] [tgz] |
---|---|---|
author | Rohit Waghchaure <rohitw1991@gmail.com> | Wed Oct 05 10:58:21 2022 +0530 |
committer | Rohit Waghchaure <rohitw1991@gmail.com> | Wed Oct 05 10:58:21 2022 +0530 |
tree | a98194f2035721e7b1654673e7c4a105f7651de3 | |
parent | 601880f1ce9d4e6097f7f04703c0a5ed1ff9699c [diff] |
fix: TooManyWritesError during reposting of stock
diff --git a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py index c470524..d6f9bae 100644 --- a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py +++ b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py
@@ -128,6 +128,9 @@ if not frappe.db.exists("Repost Item Valuation", doc.name): return + # This is to avoid TooManyWritesError in case of large reposts + frappe.db.MAX_WRITES_PER_TRANSACTION *= 4 + doc.set_status("In Progress") if not frappe.flags.in_test: frappe.db.commit()