Commit 63d7db89 authored by Quxl's avatar Quxl

x

parent f3873dc6
...@@ -119,5 +119,7 @@ public interface ReviewService { ...@@ -119,5 +119,7 @@ public interface ReviewService {
List<Map<String, Object>> queryUserShowList(Integer user_id); List<Map<String, Object>> queryUserShowList(Integer user_id);
void toType4(Integer id);
} }
\ No newline at end of file
...@@ -598,4 +598,9 @@ public class ReviewServiceImpl implements ReviewService { ...@@ -598,4 +598,9 @@ public class ReviewServiceImpl implements ReviewService {
return jdbcTemplate.queryForList(sql, user_id); return jdbcTemplate.queryForList(sql, user_id);
} }
@Override
public void toType4(Integer review_id) {
jdbcTemplate.executeUpdate("update fc_review set enroll_type_id = 4 where id = ?", review_id);
}
} }
\ No newline at end of file
...@@ -309,6 +309,9 @@ public class AdminReviewController { ...@@ -309,6 +309,9 @@ public class AdminReviewController {
throw new XRException("亚新二选和三选评分不能跳过"); throw new XRException("亚新二选和三选评分不能跳过");
} }
} }
if(review.getReview_state().intValue() == 5 && review.getEnroll_type_id().intValue() != 4) {
reviewService.toType4(review.getId());
}
reviewService.toRound(review_id, review_round); reviewService.toRound(review_id, review_round);
} else { } else {
throw new XRException("审片流程不能后退"); throw new XRException("审片流程不能后退");
......
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