Commit 331bd6c2 authored by Quxl's avatar Quxl

x

parent a5f15362
...@@ -379,7 +379,6 @@ public class ReviewServiceImpl implements ReviewService { ...@@ -379,7 +379,6 @@ public class ReviewServiceImpl implements ReviewService {
Integer enroll_type_id = review.getEnroll_type_id(); Integer enroll_type_id = review.getEnroll_type_id();
if(review_state.intValue() == 2) {//否决 if(review_state.intValue() == 2) {//否决
jdbcTemplate.executeUpdate("update fc_review set opt_state = 3, review_state = 2 where id = ?", review.getId()); jdbcTemplate.executeUpdate("update fc_review set opt_state = 3, review_state = 2 where id = ?", review.getId());
return;
} }
if(review_state.intValue() == -1) {//争议 if(review_state.intValue() == -1) {//争议
if(enroll_type_id.intValue() == 4 && review_round.intValue() == 4 && this.queryRoundReviewCount(review.getId(), review_round) >= 2) {//展映把关已经产生两次争议,需要审片委员会介入 if(enroll_type_id.intValue() == 4 && review_round.intValue() == 4 && this.queryRoundReviewCount(review.getId(), review_round) >= 2) {//展映把关已经产生两次争议,需要审片委员会介入
...@@ -397,7 +396,6 @@ public class ReviewServiceImpl implements ReviewService { ...@@ -397,7 +396,6 @@ public class ReviewServiceImpl implements ReviewService {
throw new XRException("第1轮审片结论错误,正确应为:通过,否决"); throw new XRException("第1轮审片结论错误,正确应为:通过,否决");
} }
} }
if(enroll_type_id.intValue() == 4) {//展映 if(enroll_type_id.intValue() == 4) {//展映
if(review_round.intValue() == 2) {//二选 if(review_round.intValue() == 2) {//二选
if(review_state.intValue() == 1) { if(review_state.intValue() == 1) {
...@@ -458,7 +456,6 @@ public class ReviewServiceImpl implements ReviewService { ...@@ -458,7 +456,6 @@ public class ReviewServiceImpl implements ReviewService {
} else { } else {
throw new XRException("亚新审片轮数错误[" + review_round + "]"); throw new XRException("亚新审片轮数错误[" + review_round + "]");
} }
return;
} else if(enroll_type_id.intValue() == 1) { } else if(enroll_type_id.intValue() == 1) {
Fc_member_film film = filmService.queryMemberFilmById(review.getFilm_id().longValue()); Fc_member_film film = filmService.queryMemberFilmById(review.getFilm_id().longValue());
Integer film_type_id = Integer.valueOf(film.getFilm_type_name()); Integer film_type_id = Integer.valueOf(film.getFilm_type_name());
...@@ -539,7 +536,6 @@ public class ReviewServiceImpl implements ReviewService { ...@@ -539,7 +536,6 @@ public class ReviewServiceImpl implements ReviewService {
throw new XRException("金爵长片审片轮数错误[" + review_round + "]"); throw new XRException("金爵长片审片轮数错误[" + review_round + "]");
} }
} }
return;
} }
Fc_review_history history = new Fc_review_history(); Fc_review_history history = new Fc_review_history();
history.setReview_id(review.getId()); history.setReview_id(review.getId());
......
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