Skip to content

Commit

Permalink
Merge pull request #37970 from s-aga-r/FIX-5528
Browse files Browse the repository at this point in the history
chore: typo in `Stock Entry` enqueue msg
  • Loading branch information
s-aga-r authored Nov 7, 2023
2 parents 6210b24 + ee60fa9 commit 67b36a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions erpnext/stock/doctype/stock_entry/stock_entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def submit(self):
if self.is_enqueue_action():
frappe.msgprint(
_(
"The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
"The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Entry and revert to the Draft stage"
)
)
self.queue_action("submit", timeout=2000)
Expand All @@ -172,7 +172,7 @@ def cancel(self):
if self.is_enqueue_action():
frappe.msgprint(
_(
"The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage"
"The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Entry and revert to the Submitted stage"
)
)
self.queue_action("cancel", timeout=2000)
Expand Down

0 comments on commit 67b36a0

Please sign in to comment.