fix: TooManyWritesError during reposting of stock

(cherry picked from commit aaabba9b1e)
This commit is contained in:
Rohit Waghchaure
2022-10-05 10:58:21 +05:30
committed by Mergify
parent 3648745e5e
commit 476175b307

View File

@@ -128,6 +128,9 @@ def repost(doc):
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()