|
@@ -1,20 +1,25 @@
|
|
package com.ym.mec.web.controller;
|
|
package com.ym.mec.web.controller;
|
|
|
|
|
|
|
|
+import com.ym.mec.auth.api.client.SysUserFeignService;
|
|
|
|
+import com.ym.mec.auth.api.entity.SysUser;
|
|
|
|
+import com.ym.mec.biz.dal.dao.EmployeeDao;
|
|
|
|
+import com.ym.mec.biz.dal.entity.Employee;
|
|
|
|
+import com.ym.mec.biz.dal.page.ExtraExercilseQueryInfo;
|
|
|
|
+import com.ym.mec.biz.service.ExtracurricularExercisesReplyService;
|
|
|
|
+import com.ym.mec.biz.service.ExtracurricularExercisesService;
|
|
|
|
+import com.ym.mec.common.controller.BaseController;
|
|
|
|
+import com.ym.mec.common.entity.HttpResponseResult;
|
|
|
|
+import com.ym.mec.common.exception.BizException;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
-
|
|
|
|
-import java.util.Objects;
|
|
|
|
-
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
-import com.ym.mec.biz.dal.page.ExtraExercilseQueryInfo;
|
|
|
|
-import com.ym.mec.biz.service.ExtracurricularExercisesReplyService;
|
|
|
|
-import com.ym.mec.biz.service.ExtracurricularExercisesService;
|
|
|
|
-import com.ym.mec.common.controller.BaseController;
|
|
|
|
-import com.ym.mec.common.entity.HttpResponseResult;
|
|
|
|
|
|
+import java.util.Arrays;
|
|
|
|
+import java.util.List;
|
|
|
|
+import java.util.Objects;
|
|
|
|
|
|
@Api(tags = "课外训练服务")
|
|
@Api(tags = "课外训练服务")
|
|
@RequestMapping("extracurricularExercises")
|
|
@RequestMapping("extracurricularExercises")
|
|
@@ -25,10 +30,31 @@ public class ExtracurricularExercisesController extends BaseController {
|
|
private ExtracurricularExercisesService extracurricularExercisesService;
|
|
private ExtracurricularExercisesService extracurricularExercisesService;
|
|
@Autowired
|
|
@Autowired
|
|
private ExtracurricularExercisesReplyService extracurricularExercisesReplyService;
|
|
private ExtracurricularExercisesReplyService extracurricularExercisesReplyService;
|
|
|
|
+ @Autowired
|
|
|
|
+ private SysUserFeignService sysUserFeignService;
|
|
|
|
+ @Autowired
|
|
|
|
+ private EmployeeDao employeeDao;
|
|
|
|
|
|
@ApiOperation(value = "获取课外训练列表")
|
|
@ApiOperation(value = "获取课外训练列表")
|
|
@GetMapping("/queryPageList")
|
|
@GetMapping("/queryPageList")
|
|
private HttpResponseResult findExtraExercilses(ExtraExercilseQueryInfo queryInfo){
|
|
private HttpResponseResult findExtraExercilses(ExtraExercilseQueryInfo queryInfo){
|
|
|
|
+ SysUser sysUser = sysUserFeignService.queryUserInfo();
|
|
|
|
+ if (sysUser == null) {
|
|
|
|
+ throw new BizException("用户信息获取失败");
|
|
|
|
+ }
|
|
|
|
+ if (!sysUser.getIsSuperAdmin()) {
|
|
|
|
+ Employee employee = employeeDao.get(sysUser.getId());
|
|
|
|
+ if (org.apache.commons.lang3.StringUtils.isEmpty(queryInfo.getOrganIdList())) {
|
|
|
|
+ queryInfo.setOrganIdList(employee.getOrganIdList());
|
|
|
|
+ } else if (org.apache.commons.lang3.StringUtils.isEmpty(employee.getOrganIdList())) {
|
|
|
|
+ throw new BizException("用户所在分部异常");
|
|
|
|
+ } else {
|
|
|
|
+ List<String> list = Arrays.asList(employee.getOrganIdList().split(","));
|
|
|
|
+ if (!list.containsAll(Arrays.asList(queryInfo.getOrganIdList().split(",")))) {
|
|
|
|
+ throw new BizException("非法请求");
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
return succeed(extracurricularExercisesService.queryPage(queryInfo));
|
|
return succeed(extracurricularExercisesService.queryPage(queryInfo));
|
|
}
|
|
}
|
|
|
|
|