|
@@ -0,0 +1,81 @@
|
|
|
+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.dto.StudentVisitDto;
|
|
|
+import com.ym.mec.biz.dal.entity.Employee;
|
|
|
+import com.ym.mec.biz.dal.entity.StudentVisit;
|
|
|
+import com.ym.mec.biz.dal.page.StudentVisitQueryInfo;
|
|
|
+import com.ym.mec.biz.service.StudentVisitService;
|
|
|
+import com.ym.mec.common.controller.BaseController;
|
|
|
+import com.ym.mec.common.entity.HttpResponseResult;
|
|
|
+import com.ym.mec.common.page.PageInfo;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import java.util.Arrays;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+@Api(tags = "回访服务")
|
|
|
+@RequestMapping("visit")
|
|
|
+@RestController
|
|
|
+public class VisitController extends BaseController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private StudentVisitService studentVisitService;
|
|
|
+ @Autowired
|
|
|
+ private SysUserFeignService sysUserFeignService;
|
|
|
+ @Autowired
|
|
|
+ private EmployeeDao employeeDao;
|
|
|
+
|
|
|
+ @ApiOperation(value = "回访列表")
|
|
|
+ @GetMapping("/queryPage")
|
|
|
+ @PreAuthorize("@pcs.hasPermissions('visit/queryPage')")
|
|
|
+ public HttpResponseResult<PageInfo<StudentVisitDto>> queryPage(StudentVisitQueryInfo queryInfo) {
|
|
|
+ SysUser sysUser = sysUserFeignService.queryUserInfo();
|
|
|
+ if (sysUser == null) {
|
|
|
+ return failed("用户信息获取失败");
|
|
|
+ }
|
|
|
+ if (!sysUser.getIsSuperAdmin()) {
|
|
|
+ Employee employee = employeeDao.get(sysUser.getId());
|
|
|
+ if (StringUtils.isEmpty(queryInfo.getOrganId())) {
|
|
|
+ queryInfo.setOrganId(employee.getOrganIdList());
|
|
|
+ } else if (StringUtils.isEmpty(employee.getOrganIdList())) {
|
|
|
+ return failed("用户所在分部异常");
|
|
|
+ } else {
|
|
|
+ List<String> list = Arrays.asList(employee.getOrganIdList().split(","));
|
|
|
+ if (!list.containsAll(Arrays.asList(queryInfo.getOrganId().split(",")))) {
|
|
|
+ return failed("非法请求");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return succeed(studentVisitService.getPageList(queryInfo));
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "添加回访")
|
|
|
+ @PostMapping(value = "/add")
|
|
|
+ @PreAuthorize("@pcs.hasPermissions('visit/add')")
|
|
|
+ public HttpResponseResult<StudentVisit> add(StudentVisit studentVisit) {
|
|
|
+ SysUser sysUser = sysUserFeignService.queryUserInfo();
|
|
|
+ studentVisit.setTeacherId(sysUser.getId());
|
|
|
+ studentVisit.setVisiterType(StudentVisit.VisiterTypeEnum.EDU_TEACHER);
|
|
|
+ studentVisitService.insert(studentVisit);
|
|
|
+ return succeed(studentVisit);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value = "回访详情")
|
|
|
+ @GetMapping(value = "/getInfo")
|
|
|
+ @PreAuthorize("@pcs.hasPermissions('visit/getInfo')")
|
|
|
+ public HttpResponseResult<StudentVisitDto> getInfo(Integer id) {
|
|
|
+ return succeed(studentVisitService.getInfo(id));
|
|
|
+ }
|
|
|
+}
|