Commit 4ad1de89 authored by Quxl's avatar Quxl

x

parent 840032a6
......@@ -271,11 +271,11 @@ public class AdminReviewController {
reviewService.deleteReviewRecord(review_id, review_round, cancelList.toArray(new Integer[cancelList.size()]));
}
Fc_review review = reviewService.queryReviewById(review_id);
if(review.getAllot_state() != 2) {
throw new XRException("当前审片环节没有结论,不能分配下一环节评委.");
}
if(review_round.intValue() == 5
|| (review_round.intValue() > review.getReview_round().intValue() && review.getOpt_state().intValue() == 2)) {
if(review.getAllot_state() != 2) {
throw new XRException("当前审片结论不能分配下一环节评委");
}
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)) {
......
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