From 8b313bcff30c1481032a18ab158fbe6dbccfedd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20S=C3=A1nchez?= Date: Wed, 18 Dec 2024 07:05:25 -0300 Subject: [PATCH] fix article stage for accepted draft decisions --- src/review/logic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/review/logic.py b/src/review/logic.py index b9c1e32c5..cc5603061 100755 --- a/src/review/logic.py +++ b/src/review/logic.py @@ -483,7 +483,7 @@ def handle_decision_action(article, draft, request): } if draft.decision == ED.ACCEPT.value: - article.accept_article(stage=submission_models.STAGE_EDITOR_COPYEDITING) + article.accept_article(stage=submission_models.STAGE_ACCEPTED) event_logic.Events.raise_event( event_logic.Events.ON_ARTICLE_ACCEPTED, task_object=article,