Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I10618 #1774

Merged
merged 2 commits into from
Nov 28, 2024
Merged

I10618 #1774

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions classes/submission/maps/Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
use APP\decision\types\AcceptFromInternal;
use APP\decision\types\CancelInternalReviewRound;
use APP\decision\types\DeclineInternal;
use APP\decision\types\NewInternalReviewRound;
use APP\decision\types\RequestRevisionsInternal;
use APP\decision\types\RevertDeclineInternal;
use APP\decision\types\SendExternalReview;
Expand All @@ -35,7 +36,9 @@
use PKP\decision\types\CancelReviewRound;
use PKP\decision\types\Decline;
use PKP\decision\types\InitialDecline;
use PKP\decision\types\NewExternalReviewRound;
use PKP\decision\types\RequestRevisions;
use PKP\decision\types\Resubmit;
use PKP\decision\types\RevertDecline;
use PKP\decision\types\RevertInitialDecline;
use PKP\decision\types\SendToProduction;
Expand Down Expand Up @@ -179,6 +182,8 @@ protected function getAvailableEditorialDecisions(int $stageId, Submission $subm
new RequestRevisionsInternal(),
new SendExternalReview(),
new AcceptFromInternal(),
new NewInternalReviewRound()

];
$cancelInternalReviewRound = new CancelInternalReviewRound();

Expand All @@ -196,7 +201,10 @@ protected function getAvailableEditorialDecisions(int $stageId, Submission $subm
case WORKFLOW_STAGE_ID_EXTERNAL_REVIEW:
$decisionTypes = [
new RequestRevisions(),
new Resubmit(),
new Accept(),
new NewExternalReviewRound()

];

$cancelReviewRound = new CancelReviewRound();
Expand Down
4 changes: 4 additions & 0 deletions registry/uiLocaleKeysBackend.json
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,10 @@
"doi.manager.versions.view",
"editor.activityLog",
"editor.review.ReviewerResendRequest",
"editor.review.allSections",
"editor.review.authorOnly",
"editor.review.cancelReviewer",
"editor.review.download",
"editor.review.emailReviewer",
"editor.review.notInitiated",
"editor.review.readReview",
Expand Down Expand Up @@ -339,6 +342,7 @@
"manager.workflow",
"monograph.audience",
"navigation.backTo",
"notification.notifications",
"notification.type.roundStatusTitle",
"orcid.field.authorEmailModal.message",
"orcid.field.authorEmailModal.title",
Expand Down
Loading