Merge pull request #38216 from frappe/mergify/bp/version-15-hotfix/pr-38212
refactor: update scheduled job for bulk transaction (backport #38212)
This commit is contained in:
commit
f88ec533e6
@ -421,7 +421,7 @@ scheduler_events = {
|
||||
"hourly_long": [
|
||||
"erpnext.accounts.doctype.process_subscription.process_subscription.create_subscription_process",
|
||||
"erpnext.stock.doctype.repost_item_valuation.repost_item_valuation.repost_entries",
|
||||
"erpnext.bulk_transaction.doctype.bulk_transaction_log.bulk_transaction_log.retry_failing_transaction",
|
||||
"erpnext.utilities.bulk_transaction.retry",
|
||||
],
|
||||
"daily": [
|
||||
"erpnext.support.doctype.issue.issue.auto_close_tickets",
|
||||
|
@ -30,7 +30,10 @@ def transaction_processing(data, from_doctype, to_doctype):
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
def retry(date: str | None):
|
||||
def retry(date: str | None = None):
|
||||
if not date:
|
||||
date = today()
|
||||
|
||||
if date:
|
||||
failed_docs = frappe.db.get_all(
|
||||
"Bulk Transaction Log Detail",
|
||||
|
Loading…
x
Reference in New Issue
Block a user