Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
education
Project
Project
Details
Activity
Releases
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
李丛阳
education
Commits
7a9daab3
Commit
7a9daab3
authored
May 09, 2018
by
李博今
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'V2.0.3' of
http://103.249.252.28:90/lcy/education
parents
75e1d6f3
2c320b61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
BOpinionServiceImpl.java
...t/business/bopinion/service/impl/BOpinionServiceImpl.java
+6
-6
No files found.
src/main/java/org/rcisoft/business/bopinion/service/impl/BOpinionServiceImpl.java
View file @
7a9daab3
...
@@ -66,12 +66,12 @@ public class BOpinionServiceImpl implements BOpinionService{
...
@@ -66,12 +66,12 @@ public class BOpinionServiceImpl implements BOpinionService{
BSubtask
bSubtask
=
new
BSubtask
(
subTaskId
,
"3"
);
BSubtask
bSubtask
=
new
BSubtask
(
subTaskId
,
"3"
);
bSubtaskRepository
.
updateByPrimaryKeySelective
(
bSubtask
);
bSubtaskRepository
.
updateByPrimaryKeySelective
(
bSubtask
);
//查询该排课任务下所有子任务的状态
//查询该排课任务下所有子任务的状态
String
arrangeId
=
bSubtaskRepository
.
queryArrangeIdById
(
subTaskId
);
//
String arrangeId = bSubtaskRepository.queryArrangeIdById(subTaskId);
List
<
String
>
subTaskStatus
=
bSubtaskRepository
.
querySubTaskStatusById
(
arrangeId
);
//
List<String> subTaskStatus = bSubtaskRepository.querySubTaskStatusById(arrangeId);
if
(
subTaskStatus
.
size
()==
1
&&
subTaskStatus
.
get
(
0
).
equals
(
"3"
)){
//审核全部通过,将排课任务状态置为完成
//
if(subTaskStatus.size()==1&&subTaskStatus.get(0).equals("3")){//审核全部通过,将排课任务状态置为完成
BArrange
bArrange
=
new
BArrange
(
arrangeId
,
"3"
);
//
BArrange bArrange = new BArrange(arrangeId,"3");
bArrangeRepository
.
updateByPrimaryKeySelective
(
bArrange
);
//
bArrangeRepository.updateByPrimaryKeySelective(bArrange);
}
//
}
}
}
return
new
PersistModel
(
line
);
return
new
PersistModel
(
line
);
}
}
...
...
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