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
331bd6c2
Commit
331bd6c2
authored
Dec 24, 2018
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
a5f15362
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
ReviewServiceImpl.java
...va/com/egolm/film/api/service/impl/ReviewServiceImpl.java
+0
-4
No files found.
src/main/java/com/egolm/film/api/service/impl/ReviewServiceImpl.java
View file @
331bd6c2
...
...
@@ -379,7 +379,6 @@ public class ReviewServiceImpl implements ReviewService {
Integer
enroll_type_id
=
review
.
getEnroll_type_id
();
if
(
review_state
.
intValue
()
==
2
)
{
//否决
jdbcTemplate
.
executeUpdate
(
"update fc_review set opt_state = 3, review_state = 2 where id = ?"
,
review
.
getId
());
return
;
}
if
(
review_state
.
intValue
()
==
-
1
)
{
//争议
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 {
throw
new
XRException
(
"第1轮审片结论错误,正确应为:通过,否决"
);
}
}
if
(
enroll_type_id
.
intValue
()
==
4
)
{
//展映
if
(
review_round
.
intValue
()
==
2
)
{
//二选
if
(
review_state
.
intValue
()
==
1
)
{
...
...
@@ -458,7 +456,6 @@ public class ReviewServiceImpl implements ReviewService {
}
else
{
throw
new
XRException
(
"亚新审片轮数错误["
+
review_round
+
"]"
);
}
return
;
}
else
if
(
enroll_type_id
.
intValue
()
==
1
)
{
Fc_member_film
film
=
filmService
.
queryMemberFilmById
(
review
.
getFilm_id
().
longValue
());
Integer
film_type_id
=
Integer
.
valueOf
(
film
.
getFilm_type_name
());
...
...
@@ -539,7 +536,6 @@ public class ReviewServiceImpl implements ReviewService {
throw
new
XRException
(
"金爵长片审片轮数错误["
+
review_round
+
"]"
);
}
}
return
;
}
Fc_review_history
history
=
new
Fc_review_history
();
history
.
setReview_id
(
review
.
getId
());
...
...
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