Merge pull request #25557 from rohitwaghchaure/increased-timeout-of-stoc-reco

fix: stock reconciliation getting time out error during submission
This commit is contained in:
rohitwaghchaure 2021-05-03 18:25:33 +05:30 committed by GitHub
commit 88734eea14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -469,7 +469,7 @@ class StockReconciliation(StockController):
def submit(self):
if len(self.items) > 100:
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"))
self.queue_action('submit')
self.queue_action('submit', timeout=2000)
else:
self._submit()