Skip to content

Commit

Permalink
fix: permissions during bulk transaction logs
Browse files Browse the repository at this point in the history
(cherry picked from commit 49dd4c1)
  • Loading branch information
blaggacao authored and mergify[bot] committed Mar 22, 2024
1 parent 6d39a78 commit 99faafb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erpnext/utilities/bulk_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def create_log(doc_name, e, from_doctype, to_doctype, status, log_date=None, res
transaction_log.from_doctype = from_doctype
transaction_log.to_doctype = to_doctype
transaction_log.retried = restarted
transaction_log.save()
transaction_log.save(ignore_permissions=True)


def show_job_status(fail_count, deserialized_data_count, to_doctype):
Expand Down

0 comments on commit 99faafb

Please sign in to comment.