Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
sentinel
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
曲欣亮
sentinel
Commits
25a3023d
Commit
25a3023d
authored
Dec 21, 2018
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
25f60e47
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
12 deletions
+31
-12
ReviewServiceImpl.java
...va/com/egolm/film/api/service/impl/ReviewServiceImpl.java
+31
-12
No files found.
src/main/java/com/egolm/film/api/service/impl/ReviewServiceImpl.java
View file @
25a3023d
...
...
@@ -397,20 +397,27 @@ public class ReviewServiceImpl implements ReviewService {
}
else
{
throw
new
XRException
(
"亚新第3轮审片结论错误"
);
}
}
else
if
(
review_round
.
intValue
()
==
4
)
{
}
else
if
(
review_round
.
intValue
()
==
4
)
{
//把关
if
(
review_state
.
intValue
()
==
1
)
{
this
.
toNextRound
(
review
.
getId
());
}
else
{
throw
new
XRException
(
"亚新第4轮审片结论错误"
);
}
}
else
if
(
review_round
.
intValue
()
==
5
)
{
//选片委员会
if
(
review_state
.
intValue
()
==
3
)
{
//参赛,自动进入下一轮评选
this
.
toNextRound
(
review
.
getId
());
}
else
if
(
review_state
.
intValue
()
==
5
)
{
//参展,结束当前流程,启动新参展流程
this
.
transfer_4_Flow
(
review
);
}
else
{
throw
new
XRException
(
"亚新第
4
轮审片结论错误"
);
throw
new
XRException
(
"亚新第
5
轮审片结论错误"
);
}
}
else
if
(
review_round
.
intValue
()
==
5
)
{
}
else
if
(
review_round
.
intValue
()
==
6
)
{
//总局审片
if
(
review_state
.
intValue
()
==
1
)
{
jdbcTemplate
.
executeUpdate
(
"update fc_review set opt_state = 3, review_state = 1 where id = ?"
,
review
.
getId
());
}
else
{
throw
new
XRException
(
"亚新第
5
轮审片结论错误"
);
throw
new
XRException
(
"亚新第
6
轮审片结论错误"
);
}
}
else
{
throw
new
XRException
(
"亚新审片轮数错误["
+
review_round
+
"]"
);
}
...
...
@@ -433,19 +440,25 @@ public class ReviewServiceImpl implements ReviewService {
}
else
{
throw
new
XRException
(
"金爵短片3轮审片结论错误"
);
}
}
else
if
(
review_round
.
intValue
()
==
4
)
{
}
else
if
(
review_round
.
intValue
()
==
4
)
{
//把关
if
(
review_state
.
intValue
()
==
1
)
{
this
.
toNextRound
(
review
.
getId
());
}
else
{
throw
new
XRException
(
"金爵短片4轮审片结论错误"
);
}
}
else
if
(
review_round
.
intValue
()
==
5
)
{
//选片委员会
if
(
review_state
.
intValue
()
==
3
)
{
this
.
toNextRound
(
review
.
getId
());
}
else
if
(
review_state
.
intValue
()
==
5
)
{
//参展,结束当前流程,启动新参展流程
this
.
transfer_4_Flow
(
review
);
}
else
{
throw
new
XRException
(
"金爵短片
4
轮审片结论错误"
);
throw
new
XRException
(
"金爵短片
5
轮审片结论错误"
);
}
}
else
if
(
review_round
.
intValue
()
==
5
)
{
}
else
if
(
review_round
.
intValue
()
==
6
)
{
//总局审片
if
(
review_state
.
intValue
()
==
1
)
{
jdbcTemplate
.
executeUpdate
(
"update fc_review set opt_state = 3, review_state = 1 where id = ?"
,
review
.
getId
());
}
else
{
throw
new
XRException
(
"金爵短片
5
轮审片结论错误"
);
throw
new
XRException
(
"金爵短片
6
轮审片结论错误"
);
}
}
else
{
throw
new
XRException
(
"金爵短片审片轮数错误["
+
review_round
+
"]"
);
...
...
@@ -467,19 +480,25 @@ public class ReviewServiceImpl implements ReviewService {
}
else
{
throw
new
XRException
(
"金爵长片3轮审片结论错误"
);
}
}
else
if
(
review_round
.
intValue
()
==
4
)
{
}
else
if
(
review_round
.
intValue
()
==
4
)
{
//把关
if
(
review_state
.
intValue
()
==
1
)
{
this
.
toNextRound
(
review
.
getId
());
}
else
{
throw
new
XRException
(
"金爵长片4轮审片结论错误"
);
}
}
else
if
(
review_round
.
intValue
()
==
5
)
{
//选片委员会
if
(
review_state
.
intValue
()
==
3
)
{
this
.
toNextRound
(
review
.
getId
());
}
else
if
(
review_state
.
intValue
()
==
5
)
{
//参展,结束当前流程,启动新参展流程
this
.
transfer_4_Flow
(
review
);
}
else
{
throw
new
XRException
(
"金爵长片
4
轮审片结论错误"
);
throw
new
XRException
(
"金爵长片
5
轮审片结论错误"
);
}
}
else
if
(
review_round
.
intValue
()
==
5
)
{
}
else
if
(
review_round
.
intValue
()
==
6
)
{
//总局审片
if
(
review_state
.
intValue
()
==
1
)
{
jdbcTemplate
.
executeUpdate
(
"update fc_review set opt_state = 3, review_state = 1 where id = ?"
,
review
.
getId
());
}
else
{
throw
new
XRException
(
"金爵长片
5
轮审片结论错误"
);
throw
new
XRException
(
"金爵长片
6
轮审片结论错误"
);
}
}
else
{
throw
new
XRException
(
"金爵长片审片轮数错误["
+
review_round
+
"]"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment