Merge pull request #39181 from frappe/mergify/bp/version-15-hotfix/pr-39159
refactor: prevent permission error by always processing bulk transaction in background (backport #39159)
This commit is contained in:
commit
1eee52c59c
@ -15,7 +15,6 @@ def transaction_processing(data, from_doctype, to_doctype):
|
|||||||
|
|
||||||
length_of_data = len(deserialized_data)
|
length_of_data = len(deserialized_data)
|
||||||
|
|
||||||
if length_of_data > 10:
|
|
||||||
frappe.msgprint(
|
frappe.msgprint(
|
||||||
_("Started a background job to create {1} {0}").format(to_doctype, length_of_data)
|
_("Started a background job to create {1} {0}").format(to_doctype, length_of_data)
|
||||||
)
|
)
|
||||||
@ -25,8 +24,6 @@ def transaction_processing(data, from_doctype, to_doctype):
|
|||||||
from_doctype=from_doctype,
|
from_doctype=from_doctype,
|
||||||
to_doctype=to_doctype,
|
to_doctype=to_doctype,
|
||||||
)
|
)
|
||||||
else:
|
|
||||||
job(deserialized_data, from_doctype, to_doctype)
|
|
||||||
|
|
||||||
|
|
||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user