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
0c669260
Commit
0c669260
authored
Nov 01, 2019
by
zhangqingle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改接口
parent
8840fc11
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
139 additions
and
59 deletions
+139
-59
BChapterServiceImpl.java
...t/business/bchapter/service/impl/BChapterServiceImpl.java
+23
-0
BCourseServiceImpl.java
...oft/business/bcourse/service/impl/BCourseServiceImpl.java
+2
-5
BLessonRepository.java
...a/org/rcisoft/business/blesson/dao/BLessonRepository.java
+61
-17
BLessonLabel.java
...ava/org/rcisoft/business/blesson/entity/BLessonLabel.java
+4
-0
BLessonServiceImpl.java
...oft/business/blesson/service/impl/BLessonServiceImpl.java
+20
-35
QueryDepart.java
...n/java/org/rcisoft/business/blesson/util/QueryDepart.java
+25
-0
Recursion.java
...ain/java/org/rcisoft/business/blesson/util/Recursion.java
+2
-2
ResultServiceEnums.java
...main/java/org/rcisoft/core/result/ResultServiceEnums.java
+2
-0
No files found.
src/main/java/org/rcisoft/business/bchapter/service/impl/BChapterServiceImpl.java
View file @
0c669260
...
@@ -25,11 +25,15 @@ import org.rcisoft.business.blesson.entity.BLesson;
...
@@ -25,11 +25,15 @@ import org.rcisoft.business.blesson.entity.BLesson;
import
org.rcisoft.business.bfile.dao.BFileRepository
;
import
org.rcisoft.business.bfile.dao.BFileRepository
;
import
org.rcisoft.business.bfile.entity.BFile
;
import
org.rcisoft.business.bfile.entity.BFile
;
import
org.rcisoft.business.blesson.entity.BLessonPerson
;
import
org.rcisoft.business.blesson.entity.BLessonPerson
;
import
org.rcisoft.business.blesson.service.BLessonService
;
import
org.rcisoft.business.blesson.util.QueryDepart
;
import
org.rcisoft.business.bmaterial.dao.BMaterialRepository
;
import
org.rcisoft.business.bmaterial.dao.BMaterialRepository
;
import
org.rcisoft.business.bmaterial.entity.BMaterial
;
import
org.rcisoft.business.bmaterial.entity.BMaterial
;
import
org.rcisoft.business.brstudentchapter.dao.BRStudentChapterRepository
;
import
org.rcisoft.business.brstudentchapter.dao.BRStudentChapterRepository
;
import
org.rcisoft.business.brstudentchapter.entity.BRStudentChapter
;
import
org.rcisoft.business.brstudentchapter.entity.BRStudentChapter
;
import
org.rcisoft.common.component.Global
;
import
org.rcisoft.common.component.Global
;
import
org.rcisoft.common.util.feignDto.MTUserGetsReqDTO
;
import
org.rcisoft.common.util.feignDto.MTUserInfoRspDTO
;
import
org.rcisoft.common.util.outClient.MTCotactApiRequestClient
;
import
org.rcisoft.common.util.outClient.MTCotactApiRequestClient
;
import
org.rcisoft.core.aop.PageUtil
;
import
org.rcisoft.core.aop.PageUtil
;
import
org.rcisoft.core.exception.ServiceException
;
import
org.rcisoft.core.exception.ServiceException
;
...
@@ -87,6 +91,8 @@ public class BChapterServiceImpl implements BChapterService {
...
@@ -87,6 +91,8 @@ public class BChapterServiceImpl implements BChapterService {
@Autowired
@Autowired
BCollectRepository
bCollectRepository
;
BCollectRepository
bCollectRepository
;
@Autowired
@Autowired
BLessonService
bLessonService
;
@Autowired
OfficeToPdf
officeToPdf
;
OfficeToPdf
officeToPdf
;
@Override
@Override
...
@@ -143,9 +149,26 @@ public class BChapterServiceImpl implements BChapterService {
...
@@ -143,9 +149,26 @@ public class BChapterServiceImpl implements BChapterService {
}
}
// map.put("totalProgress", i == 0 ? "0%" : df.format((float) percent / i) + "%");
// map.put("totalProgress", i == 0 ? "0%" : df.format((float) percent / i) + "%");
BLesson
bLesson
=
bLessonRepository
.
selectByPrimaryKey
(
lessonId
);
BLesson
bLesson
=
bLessonRepository
.
selectByPrimaryKey
(
lessonId
);
//判断课程是否存在
if
(
bLesson
==
null
){
if
(
bLesson
==
null
){
throw
new
ServiceException
(
ResultServiceEnums
.
LESSON_NOT_EXISTA
);
throw
new
ServiceException
(
ResultServiceEnums
.
LESSON_NOT_EXISTA
);
}
}
//判断课程是否被关闭
if
(
"4"
.
equals
(
bLesson
.
getReleaseState
())){
throw
new
ServiceException
(
ResultServiceEnums
.
LESSON_CLOSED
);
}
//判断该登录人是否可见该课程
List
<
String
>
ids
=
Arrays
.
asList
(
new
String
[]{
curUser
.
getUserId
()});
MTUserGetsReqDTO
mtUserGetsReqDTO
=
new
MTUserGetsReqDTO
();
mtUserGetsReqDTO
.
setCorpId
(
curUser
.
getCorpId
());
mtUserGetsReqDTO
.
setIds
(
ids
);
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
=
mtCotactApiRequestClient
.
userGets
(
mtUserGetsReqDTO
);
List
<
String
>
departs
=
QueryDepart
.
queryDepart
(
mtUserInfoRspDTOList
);
int
result
=
bLessonRepository
.
isInViewRange
(
curUser
,
lessonId
,
departs
);
if
(
result
<
1
){
throw
new
ServiceException
(
ResultServiceEnums
.
NO_ACCESS
);
}
//查询该课程是否收藏
//查询该课程是否收藏
int
collectCount
=
bCollectRepository
.
selectCountbyLessonAndUser
(
curUser
,
bLesson
.
getBusinessId
());
int
collectCount
=
bCollectRepository
.
selectCountbyLessonAndUser
(
curUser
,
bLesson
.
getBusinessId
());
if
(
collectCount
>
0
){
if
(
collectCount
>
0
){
...
...
src/main/java/org/rcisoft/business/bcourse/service/impl/BCourseServiceImpl.java
View file @
0c669260
package
org
.
rcisoft
.
business
.
bcourse
.
service
.
impl
;
package
org
.
rcisoft
.
business
.
bcourse
.
service
.
impl
;
import
com.alibaba.fastjson.JSON
;
import
com.alibaba.fastjson.JSONArray
;
import
com.alibaba.fastjson.JSONArray
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang.StringUtils
;
import
org.rcisoft.business.bcourse.dao.BCourseRepository
;
import
org.rcisoft.business.bcourse.dao.BCourseRepository
;
...
@@ -8,7 +7,7 @@ import org.rcisoft.business.bcourse.dto.AllCourseDTO;
...
@@ -8,7 +7,7 @@ import org.rcisoft.business.bcourse.dto.AllCourseDTO;
import
org.rcisoft.business.bcourse.dto.QueryCourseResDTO
;
import
org.rcisoft.business.bcourse.dto.QueryCourseResDTO
;
import
org.rcisoft.business.bcourse.entity.BCourse
;
import
org.rcisoft.business.bcourse.entity.BCourse
;
import
org.rcisoft.business.bcourse.service.BCourseService
;
import
org.rcisoft.business.bcourse.service.BCourseService
;
import
org.rcisoft.business.blesson.util.
r
ecursion
;
import
org.rcisoft.business.blesson.util.
R
ecursion
;
import
org.rcisoft.core.aop.PageUtil
;
import
org.rcisoft.core.aop.PageUtil
;
import
org.rcisoft.core.constant.MessageConstant
;
import
org.rcisoft.core.constant.MessageConstant
;
import
org.rcisoft.core.exception.ServiceException
;
import
org.rcisoft.core.exception.ServiceException
;
...
@@ -23,8 +22,6 @@ import java.util.HashMap;
...
@@ -23,8 +22,6 @@ import java.util.HashMap;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Map
;
import
static
java
.
util
.
Arrays
.
asList
;
@Service
@Service
public
class
BCourseServiceImpl
implements
BCourseService
{
public
class
BCourseServiceImpl
implements
BCourseService
{
...
@@ -98,7 +95,7 @@ public class BCourseServiceImpl implements BCourseService {
...
@@ -98,7 +95,7 @@ public class BCourseServiceImpl implements BCourseService {
List
<
String
>
courseIds
=
null
;
List
<
String
>
courseIds
=
null
;
if
(
allCourse
!=
null
)
{
if
(
allCourse
!=
null
)
{
//查询出所有子分类
//查询出所有子分类
courseIds
=
r
ecursion
.
FindSons
(
id
,
allCourse
);
courseIds
=
R
ecursion
.
FindSons
(
id
,
allCourse
);
//将一级分类放入分类集合中
//将一级分类放入分类集合中
courseIds
.
add
(
id
);
courseIds
.
add
(
id
);
}
}
...
...
src/main/java/org/rcisoft/business/blesson/dao/BLessonRepository.java
View file @
0c669260
This diff is collapsed.
Click to expand it.
src/main/java/org/rcisoft/business/blesson/entity/BLessonLabel.java
View file @
0c669260
...
@@ -9,6 +9,7 @@ import org.rcisoft.core.entity.IdEntity;
...
@@ -9,6 +9,7 @@ import org.rcisoft.core.entity.IdEntity;
import
javax.persistence.Entity
;
import
javax.persistence.Entity
;
import
javax.persistence.Table
;
import
javax.persistence.Table
;
import
javax.persistence.Transient
;
import
javax.validation.constraints.NotBlank
;
import
javax.validation.constraints.NotBlank
;
@Entity
@Entity
...
@@ -25,4 +26,7 @@ public class BLessonLabel extends IdEntity<BLessonLabel> {
...
@@ -25,4 +26,7 @@ public class BLessonLabel extends IdEntity<BLessonLabel> {
@Length
(
min
=
1
,
max
=
64
,
message
=
"长度最小为1,最大为50"
)
@Length
(
min
=
1
,
max
=
64
,
message
=
"长度最小为1,最大为50"
)
private
String
lessonId
;
private
String
lessonId
;
@NotBlank
private
String
sort
;
}
}
src/main/java/org/rcisoft/business/blesson/service/impl/BLessonServiceImpl.java
View file @
0c669260
package
org
.
rcisoft
.
business
.
blesson
.
service
.
impl
;
package
org
.
rcisoft
.
business
.
blesson
.
service
.
impl
;
import
com.alibaba.fastjson.JSONObject
;
import
com.alibaba.fastjson.JSONObject
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
io.swagger.models.auth.In
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
net.sf.json.JSONArray
;
import
org.apache.commons.collections.map.HashedMap
;
import
org.apache.commons.collections.map.HashedMap
;
import
org.apache.commons.lang3.StringUtils
;
import
org.apache.commons.lang3.StringUtils
;
import
org.apache.commons.lang3.SystemUtils
;
import
org.rcisoft.business.bcourse.dao.BCourseRepository
;
import
org.rcisoft.business.bcourse.dao.BCourseRepository
;
import
org.rcisoft.business.bcourse.dto.AllCourseDTO
;
import
org.rcisoft.business.bcourse.dto.AllCourseDTO
;
import
org.rcisoft.business.bfile.dao.BTrainFileRepository
;
import
org.rcisoft.business.bfile.dao.BTrainFileRepository
;
...
@@ -16,7 +12,8 @@ import org.rcisoft.business.blesson.dao.*;
...
@@ -16,7 +12,8 @@ import org.rcisoft.business.blesson.dao.*;
import
org.rcisoft.business.blesson.dto.*
;
import
org.rcisoft.business.blesson.dto.*
;
import
org.rcisoft.business.blesson.entity.*
;
import
org.rcisoft.business.blesson.entity.*
;
import
org.rcisoft.business.blesson.service.BLessonService
;
import
org.rcisoft.business.blesson.service.BLessonService
;
import
org.rcisoft.business.blesson.util.recursion
;
import
org.rcisoft.business.blesson.util.QueryDepart
;
import
org.rcisoft.business.blesson.util.Recursion
;
import
org.rcisoft.business.blesson.dao.BViewrangeRepository
;
import
org.rcisoft.business.blesson.dao.BViewrangeRepository
;
import
org.rcisoft.business.bmaterial.dao.BMaterialRepository
;
import
org.rcisoft.business.bmaterial.dao.BMaterialRepository
;
import
org.rcisoft.business.bmaterial.entity.BMaterial
;
import
org.rcisoft.business.bmaterial.entity.BMaterial
;
...
@@ -26,7 +23,6 @@ import org.rcisoft.core.aop.PageUtil;
...
@@ -26,7 +23,6 @@ import org.rcisoft.core.aop.PageUtil;
import
org.rcisoft.core.constant.MessageConstant
;
import
org.rcisoft.core.constant.MessageConstant
;
import
org.rcisoft.core.exception.ServiceException
;
import
org.rcisoft.core.exception.ServiceException
;
import
org.rcisoft.core.model.PersistModel
;
import
org.rcisoft.core.model.PersistModel
;
import
org.rcisoft.core.result.ResultExceptionEnum
;
import
org.rcisoft.core.result.ResultServiceEnums
;
import
org.rcisoft.core.result.ResultServiceEnums
;
import
org.rcisoft.core.util.IdGen
;
import
org.rcisoft.core.util.IdGen
;
import
org.rcisoft.core.util.UserUtil
;
import
org.rcisoft.core.util.UserUtil
;
...
@@ -39,7 +35,6 @@ import org.springframework.stereotype.Service;
...
@@ -39,7 +35,6 @@ import org.springframework.stereotype.Service;
import
org.springframework.transaction.annotation.Propagation
;
import
org.springframework.transaction.annotation.Propagation
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.transaction.annotation.Transactional
;
import
java.io.IOException
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
import
java.util.*
;
import
java.util.*
;
...
@@ -168,7 +163,7 @@ public class BLessonServiceImpl implements BLessonService {
...
@@ -168,7 +163,7 @@ public class BLessonServiceImpl implements BLessonService {
mtUserGetsReqDTO
.
setCorpId
(
curUser
.
getCorpId
());
mtUserGetsReqDTO
.
setCorpId
(
curUser
.
getCorpId
());
mtUserGetsReqDTO
.
setIds
(
ids
);
mtUserGetsReqDTO
.
setIds
(
ids
);
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
=
cotactApiRequestClient
.
userGets
(
mtUserGetsReqDTO
);
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
=
cotactApiRequestClient
.
userGets
(
mtUserGetsReqDTO
);
List
<
String
>
departs
=
queryDepart
(
mtUserInfoRspDTOList
);
List
<
String
>
departs
=
QueryDepart
.
queryDepart
(
mtUserInfoRspDTOList
);
//------------------------------
//------------------------------
return
bLessonRepository
.
queryPersonMore
(
curUser
,
departs
);
return
bLessonRepository
.
queryPersonMore
(
curUser
,
departs
);
}
}
...
@@ -182,7 +177,7 @@ public class BLessonServiceImpl implements BLessonService {
...
@@ -182,7 +177,7 @@ public class BLessonServiceImpl implements BLessonService {
mtUserGetsReqDTO
.
setCorpId
(
curUser
.
getCorpId
());
mtUserGetsReqDTO
.
setCorpId
(
curUser
.
getCorpId
());
mtUserGetsReqDTO
.
setIds
(
ids
);
mtUserGetsReqDTO
.
setIds
(
ids
);
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
=
cotactApiRequestClient
.
userGets
(
mtUserGetsReqDTO
);
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
=
cotactApiRequestClient
.
userGets
(
mtUserGetsReqDTO
);
List
<
String
>
departs
=
queryDepart
(
mtUserInfoRspDTOList
);
List
<
String
>
departs
=
QueryDepart
.
queryDepart
(
mtUserInfoRspDTOList
);
return
bLessonRepository
.
queryRecommend
(
curUser
,
departs
);
return
bLessonRepository
.
queryRecommend
(
curUser
,
departs
);
}
}
...
@@ -196,7 +191,7 @@ public class BLessonServiceImpl implements BLessonService {
...
@@ -196,7 +191,7 @@ public class BLessonServiceImpl implements BLessonService {
mtUserGetsReqDTO
.
setCorpId
(
curUser
.
getCorpId
());
mtUserGetsReqDTO
.
setCorpId
(
curUser
.
getCorpId
());
mtUserGetsReqDTO
.
setIds
(
ids
);
mtUserGetsReqDTO
.
setIds
(
ids
);
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
=
cotactApiRequestClient
.
userGets
(
mtUserGetsReqDTO
);
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
=
cotactApiRequestClient
.
userGets
(
mtUserGetsReqDTO
);
List
<
String
>
departs
=
queryDepart
(
mtUserInfoRspDTOList
);
List
<
String
>
departs
=
QueryDepart
.
queryDepart
(
mtUserInfoRspDTOList
);
//------------------------------
//------------------------------
return
bLessonRepository
.
queryConcern
(
curUser
,
departs
);
return
bLessonRepository
.
queryConcern
(
curUser
,
departs
);
}
}
...
@@ -211,7 +206,7 @@ public class BLessonServiceImpl implements BLessonService {
...
@@ -211,7 +206,7 @@ public class BLessonServiceImpl implements BLessonService {
mtUserGetsReqDTO
.
setCorpId
(
curUser
.
getCorpId
());
mtUserGetsReqDTO
.
setCorpId
(
curUser
.
getCorpId
());
mtUserGetsReqDTO
.
setIds
(
ids
);
mtUserGetsReqDTO
.
setIds
(
ids
);
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
=
cotactApiRequestClient
.
userGets
(
mtUserGetsReqDTO
);
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
=
cotactApiRequestClient
.
userGets
(
mtUserGetsReqDTO
);
List
<
String
>
departs
=
queryDepart
(
mtUserInfoRspDTOList
);
List
<
String
>
departs
=
QueryDepart
.
queryDepart
(
mtUserInfoRspDTOList
);
//------------------------------
//------------------------------
return
bLessonRepository
.
queryInterested
(
curUser
,
departs
);
return
bLessonRepository
.
queryInterested
(
curUser
,
departs
);
}
}
...
@@ -220,13 +215,15 @@ public class BLessonServiceImpl implements BLessonService {
...
@@ -220,13 +215,15 @@ public class BLessonServiceImpl implements BLessonService {
@Override
@Override
@Transactional
(
propagation
=
Propagation
.
REQUIRED
,
readOnly
=
false
)
@Transactional
(
propagation
=
Propagation
.
REQUIRED
,
readOnly
=
false
)
public
PersistModel
persist
(
AddLessonDTO
addLessonDTO
)
{
public
PersistModel
persist
(
AddLessonDTO
addLessonDTO
)
{
try
{
if
(
"1"
.
equals
(
addLessonDTO
.
getLessonType
())){
if
(
Integer
.
parseInt
(
addLessonDTO
.
getMaxApplyPerson
())
<
0
){
try
{
if
(
Integer
.
parseInt
(
addLessonDTO
.
getMaxApplyPerson
())
<
0
){
throw
new
ServiceException
(
ResultServiceEnums
.
INPUT_FORMAT_ERROR
);
}
}
catch
(
NumberFormatException
e
)
{
log
.
error
(
e
.
getMessage
()+
" 输入的格式不正确 "
);
throw
new
ServiceException
(
ResultServiceEnums
.
INPUT_FORMAT_ERROR
);
throw
new
ServiceException
(
ResultServiceEnums
.
INPUT_FORMAT_ERROR
);
}
}
}
catch
(
NumberFormatException
e
)
{
log
.
error
(
e
.
getMessage
()+
" 输入的格式不正确 "
);
throw
new
ServiceException
(
ResultServiceEnums
.
INPUT_FORMAT_ERROR
);
}
}
BLesson
model
=
new
BLesson
();
BLesson
model
=
new
BLesson
();
...
@@ -397,7 +394,6 @@ public class BLessonServiceImpl implements BLessonService {
...
@@ -397,7 +394,6 @@ public class BLessonServiceImpl implements BLessonService {
if
(
bMaterialList
!=
null
&&
bMaterialList
.
size
()>
0
){
if
(
bMaterialList
!=
null
&&
bMaterialList
.
size
()>
0
){
bMaterialRepository
.
insertMaterialList
(
bMaterialList
);
bMaterialRepository
.
insertMaterialList
(
bMaterialList
);
}
}
//更新
}
}
return
new
PersistModel
(
line
,
model
);
return
new
PersistModel
(
line
,
model
);
...
@@ -436,12 +432,12 @@ public class BLessonServiceImpl implements BLessonService {
...
@@ -436,12 +432,12 @@ public class BLessonServiceImpl implements BLessonService {
mtUserGetsReqDTO
.
setCorpId
(
firstPageQueryDTO
.
getCorpId
());
mtUserGetsReqDTO
.
setCorpId
(
firstPageQueryDTO
.
getCorpId
());
mtUserGetsReqDTO
.
setIds
(
ids
);
mtUserGetsReqDTO
.
setIds
(
ids
);
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
=
cotactApiRequestClient
.
userGets
(
mtUserGetsReqDTO
);
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
=
cotactApiRequestClient
.
userGets
(
mtUserGetsReqDTO
);
List
<
String
>
departs
=
queryDepart
(
mtUserInfoRspDTOList
);
List
<
String
>
departs
=
QueryDepart
.
queryDepart
(
mtUserInfoRspDTOList
);
firstPageQueryDTO
.
setDeparts
(
departs
);
firstPageQueryDTO
.
setDeparts
(
departs
);
List
<
String
>
courseIds
=
null
;
List
<
String
>
courseIds
=
null
;
if
(
allCourse
!=
null
)
{
if
(
allCourse
!=
null
)
{
//查询出所有子分类
//查询出所有子分类
courseIds
=
r
ecursion
.
FindSons
(
firstPageQueryDTO
.
getCourseLevelOne
(),
allCourse
);
courseIds
=
R
ecursion
.
FindSons
(
firstPageQueryDTO
.
getCourseLevelOne
(),
allCourse
);
//将一级分类放入分类集合中
//将一级分类放入分类集合中
courseIds
.
add
(
firstPageQueryDTO
.
getCourseLevelOne
());
courseIds
.
add
(
firstPageQueryDTO
.
getCourseLevelOne
());
}
}
...
@@ -780,7 +776,7 @@ public class BLessonServiceImpl implements BLessonService {
...
@@ -780,7 +776,7 @@ public class BLessonServiceImpl implements BLessonService {
mtUserGetsReqDTO
.
setCorpId
(
model
.
getCorpId
());
mtUserGetsReqDTO
.
setCorpId
(
model
.
getCorpId
());
mtUserGetsReqDTO
.
setIds
(
ids
);
mtUserGetsReqDTO
.
setIds
(
ids
);
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
=
cotactApiRequestClient
.
userGets
(
mtUserGetsReqDTO
);
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
=
cotactApiRequestClient
.
userGets
(
mtUserGetsReqDTO
);
List
<
String
>
departs
=
queryDepart
(
mtUserInfoRspDTOList
);
List
<
String
>
departs
=
QueryDepart
.
queryDepart
(
mtUserInfoRspDTOList
);
departs
.
forEach
(
depart
->
{
departs
.
forEach
(
depart
->
{
if
(
StringUtils
.
isEmpty
(
depart
))
{
if
(
StringUtils
.
isEmpty
(
depart
))
{
departs
.
remove
(
depart
);
departs
.
remove
(
depart
);
...
@@ -791,7 +787,7 @@ public class BLessonServiceImpl implements BLessonService {
...
@@ -791,7 +787,7 @@ public class BLessonServiceImpl implements BLessonService {
List
<
String
>
courseIds
;
List
<
String
>
courseIds
;
if
(
allCourse
!=
null
)
{
if
(
allCourse
!=
null
)
{
//查询出所有子分类
//查询出所有子分类
courseIds
=
r
ecursion
.
FindSons
(
model
.
getCourse
(),
allCourse
);
courseIds
=
R
ecursion
.
FindSons
(
model
.
getCourse
(),
allCourse
);
//将一级分类放入分类集合中
//将一级分类放入分类集合中
if
(
StringUtils
.
isNotEmpty
(
model
.
getCourse
()))
{
if
(
StringUtils
.
isNotEmpty
(
model
.
getCourse
()))
{
...
@@ -1087,12 +1083,15 @@ public class BLessonServiceImpl implements BLessonService {
...
@@ -1087,12 +1083,15 @@ public class BLessonServiceImpl implements BLessonService {
//标签集合
//标签集合
List
<
BLessonLabel
>
bLessonLabels
=
new
ArrayList
<>();
List
<
BLessonLabel
>
bLessonLabels
=
new
ArrayList
<>();
String
[]
labels
=
model
.
getLabels
().
split
(
","
);
String
[]
labels
=
model
.
getLabels
().
split
(
","
);
int
sortNum
=
0
;
for
(
int
index
=
0
;
index
<
labels
.
length
;
index
++)
{
for
(
int
index
=
0
;
index
<
labels
.
length
;
index
++)
{
BLessonLabel
bLessonLabel
=
new
BLessonLabel
();
BLessonLabel
bLessonLabel
=
new
BLessonLabel
();
UserUtil
.
setCurrentPersistOperation
(
bLessonLabel
);
UserUtil
.
setCurrentPersistOperation
(
bLessonLabel
);
bLessonLabel
.
setLabelId
(
labels
[
index
]);
bLessonLabel
.
setLabelId
(
labels
[
index
]);
bLessonLabel
.
setLessonId
(
model
.
getBusinessId
());
bLessonLabel
.
setLessonId
(
model
.
getBusinessId
());
bLessonLabel
.
setSort
(
String
.
valueOf
(
sortNum
));
bLessonLabels
.
add
(
bLessonLabel
);
bLessonLabels
.
add
(
bLessonLabel
);
sortNum
++;
}
}
return
bLessonLabels
;
return
bLessonLabels
;
}
}
...
@@ -1177,18 +1176,4 @@ public class BLessonServiceImpl implements BLessonService {
...
@@ -1177,18 +1176,4 @@ public class BLessonServiceImpl implements BLessonService {
}
}
}
}
List
<
String
>
queryDepart
(
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
){
List
<
String
>
departs
=
new
ArrayList
<>();
mtUserInfoRspDTOList
.
forEach
(
mtUserInfoRspDTO
->
{
List
<
MTUserInfoRspDTO
.
DeptsBean
>
deptsBeans
=
mtUserInfoRspDTO
.
getDepts
();
deptsBeans
.
forEach
(
deptsBean
->
{
departs
.
addAll
(
Arrays
.
asList
(
deptsBean
.
getPids
().
split
(
","
)));
departs
.
add
(
deptsBean
.
getId
());
// departs.addAll(Arrays.asList(deptsBean.getPid().split(",")));
});
});
return
departs
;
}
}
}
src/main/java/org/rcisoft/business/blesson/util/QueryDepart.java
0 → 100644
View file @
0c669260
package
org
.
rcisoft
.
business
.
blesson
.
util
;
import
org.rcisoft.common.util.feignDto.MTUserInfoRspDTO
;
import
java.util.ArrayList
;
import
java.util.Arrays
;
import
java.util.List
;
/**
* 遍历获取部门
*/
public
class
QueryDepart
{
public
static
List
<
String
>
queryDepart
(
List
<
MTUserInfoRspDTO
>
mtUserInfoRspDTOList
){
List
<
String
>
departs
=
new
ArrayList
<>();
mtUserInfoRspDTOList
.
forEach
(
mtUserInfoRspDTO
->
{
List
<
MTUserInfoRspDTO
.
DeptsBean
>
deptsBeans
=
mtUserInfoRspDTO
.
getDepts
();
deptsBeans
.
forEach
(
deptsBean
->
{
departs
.
addAll
(
Arrays
.
asList
(
deptsBean
.
getPids
().
split
(
","
)));
departs
.
add
(
deptsBean
.
getId
());
// departs.addAll(Arrays.asList(deptsBean.getPid().split(",")));
});
});
return
departs
;
}
}
src/main/java/org/rcisoft/business/blesson/util/
r
ecursion.java
→
src/main/java/org/rcisoft/business/blesson/util/
R
ecursion.java
View file @
0c669260
...
@@ -7,7 +7,7 @@ import java.util.ArrayList;
...
@@ -7,7 +7,7 @@ import java.util.ArrayList;
import
java.util.List
;
import
java.util.List
;
@Slf4j
@Slf4j
public
class
r
ecursion
{
public
class
R
ecursion
{
/**
/**
* 查找当前分类下 多级子分类
* 查找当前分类下 多级子分类
...
@@ -20,7 +20,7 @@ public class recursion {
...
@@ -20,7 +20,7 @@ public class recursion {
for
(
AllCourseDTO
course:
allCourse
){
for
(
AllCourseDTO
course:
allCourse
){
if
(
course
.
getPid
()
!=
null
&&
(!(
"00000000"
.
equals
(
course
.
getPid
())))
&&
course
.
getPid
().
equals
(
fatherId
)){
if
(
course
.
getPid
()
!=
null
&&
(!(
"00000000"
.
equals
(
course
.
getPid
())))
&&
course
.
getPid
().
equals
(
fatherId
)){
sonList
.
add
(
course
.
getBusinessId
());
sonList
.
add
(
course
.
getBusinessId
());
sonList
.
addAll
(
r
ecursion
.
FindSons
(
course
.
getBusinessId
(),
allCourse
));
sonList
.
addAll
(
R
ecursion
.
FindSons
(
course
.
getBusinessId
(),
allCourse
));
}
}
}
}
return
sonList
;
return
sonList
;
...
...
src/main/java/org/rcisoft/core/result/ResultServiceEnums.java
View file @
0c669260
...
@@ -228,6 +228,8 @@ public enum ResultServiceEnums {
...
@@ -228,6 +228,8 @@ public enum ResultServiceEnums {
NOT_APPLY_DATE
(
127
,
"当前时间不在报名时间范围内"
),
NOT_APPLY_DATE
(
127
,
"当前时间不在报名时间范围内"
),
NOT_APPOINT_INFO
(
128
,
"指派信息不存在"
),
NOT_APPOINT_INFO
(
128
,
"指派信息不存在"
),
NOT_CLASS_HOUR
(
130
,
"该课程无课时,不允许发布"
),
NOT_CLASS_HOUR
(
130
,
"该课程无课时,不允许发布"
),
LESSON_CLOSED
(
131
,
"该课程已关闭"
),
NO_ACCESS
(
132
,
"无权限"
),
;
;
private
Integer
code
;
private
Integer
code
;
...
...
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