getSubmission(); // Record the decision. import('classes.workflow.EditorDecisionActionsManager'); $actionLabels = EditorDecisionActionsManager::getActionLabels($request->getContext(), array($this->_decision)); import('lib.pkp.classes.submission.action.EditorAction'); $editorAction = new EditorAction(); $editorAction->recordDecision($request, $submission, $this->_decision, $actionLabels); // Move to the internal review stage. $editorAction->incrementWorkflowStage($submission, WORKFLOW_STAGE_ID_EXTERNAL_REVIEW, $request); // Create an initial internal review round. $this->_initiateReviewRound($submission, WORKFLOW_STAGE_ID_EXTERNAL_REVIEW, $request, REVIEW_ROUND_STATUS_PENDING_REVIEWERS); } } ?>