Commit e7969977 authored by Quxl's avatar Quxl

x

parent 8c8e35e9
...@@ -274,7 +274,7 @@ public class AdminReviewController { ...@@ -274,7 +274,7 @@ public class AdminReviewController {
int optState = review.getOpt_state(); int optState = review.getOpt_state();
int reviewState = review.getReview_state(); int reviewState = review.getReview_state();
if(toRoundNumber > reviewRound) { if(toRoundNumber > reviewRound) {
if(optState == 2 || (optState == 1 && reviewRound == 4 && toRoundNumber == 5)) { if(optState == 1 || optState == 2) {
if(enrollType == 2 && ((reviewRound <= 1 && reviewRound >= 3) || (reviewRound <= 2 && reviewRound >= 4))) { if(enrollType == 2 && ((reviewRound <= 1 && reviewRound >= 3) || (reviewRound <= 2 && reviewRound >= 4))) {
throw new XRException("亚新二选和三选评分步骤不能跳过"); throw new XRException("亚新二选和三选评分步骤不能跳过");
} }
...@@ -289,8 +289,9 @@ public class AdminReviewController { ...@@ -289,8 +289,9 @@ public class AdminReviewController {
if(reviewState == 5 && (isJinJue23Round || isAsia2Round)) {//金爵二选三选或亚新二选转参赛影片把关流程 if(reviewState == 5 && (isJinJue23Round || isAsia2Round)) {//金爵二选三选或亚新二选转参赛影片把关流程
reviewService.toType4(review.getId()); reviewService.toType4(review.getId());
reviewService.toRound(review.getId(), 4); reviewService.toRound(review.getId(), 4);
} } else {
reviewService.toRound(review_id, toRoundNumber); reviewService.toRound(review_id, toRoundNumber);
}
} else { } else {
throw new XRException("当前审片状态为" + rounds[reviewRound] + opts[optState] + ",不能分配" + rounds[toRoundNumber] + "评委"); throw new XRException("当前审片状态为" + rounds[reviewRound] + opts[optState] + ",不能分配" + rounds[toRoundNumber] + "评委");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment