Commit bff61c61 authored by Quxl's avatar Quxl

x

parent aefaa353
......@@ -300,6 +300,19 @@ public class AdminReviewController {
if(cancelList.size() > 0) {
reviewService.deleteReviewRecord(review_id, review_round, cancelList.toArray(new Integer[cancelList.size()]));
}
Fc_review review = reviewService.queryReviewById(review_id);
if(review_round.intValue() == 5
|| (review_round.intValue() > review.getReview_round().intValue() && review.getOpt_state().intValue() == 2)) {
if(review.getEnroll_type_id().intValue() == 2) {
if((review.getReview_round().intValue() <= 1 && review_round.intValue() >= 3)
|| (review.getReview_round().intValue() <= 2 && review_round.intValue() >= 4)) {
throw new XRException("亚新二选和三选评分不能跳过");
}
}
reviewService.toRound(review_id, review_round);
} else {
throw new XRException("审片流程不能后退");
}
return Rjx.jsonOk();
}
......
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