Commit cc99158e authored by Quxl's avatar Quxl

x

parent c52c77cd
......@@ -372,7 +372,7 @@ public class ReviewServiceImpl implements ReviewService {
throw new XRException("展映第2轮审片结论错误");
}
} else {
throw new XRException("展映只有2轮审片流程");
throw new XRException("展映审片轮数错误[" + review_round + "]");
}
return;
}
......@@ -405,6 +405,8 @@ public class ReviewServiceImpl implements ReviewService {
} else {
throw new XRException("亚新第5轮审片结论错误");
}
} else {
throw new XRException("亚新审片轮数错误[" + review_round + "]");
}
return;
}
......@@ -439,6 +441,8 @@ public class ReviewServiceImpl implements ReviewService {
} else {
throw new XRException("金爵短片5轮审片结论错误");
}
} else {
throw new XRException("金爵短片审片轮数错误[" + review_round + "]");
}
} else {//金爵长片
if(review_round.intValue() == 2) {
......@@ -471,6 +475,8 @@ public class ReviewServiceImpl implements ReviewService {
} else {
throw new XRException("金爵长片5轮审片结论错误");
}
} else {
throw new XRException("金爵长片审片轮数错误[" + review_round + "]");
}
}
return;
......
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