|
|
@ -643,14 +643,12 @@ public class StudentArchitectureController { |
|
|
|
@ApiOperation(value = "导出学生全部数据") |
|
|
|
@ApiOperation(value = "导出学生全部数据") |
|
|
|
@PostMapping(value = "/excelExportStudentList", produces = "application/json;multipart/form-data;charset=utf-8") |
|
|
|
@PostMapping(value = "/excelExportStudentList", produces = "application/json;multipart/form-data;charset=utf-8") |
|
|
|
public void excelExport( |
|
|
|
public void excelExport( |
|
|
|
@ApiParam(name = "studentList", value = "导出学生列表数据", required = false) |
|
|
|
|
|
|
|
@RequestBody(required = false) List<StudentInfoResp> studentList, |
|
|
|
|
|
|
|
@ApiParam(name = "req", value = "组织架构导出筛选条件", required = false) |
|
|
|
@ApiParam(name = "req", value = "组织架构导出筛选条件", required = false) |
|
|
|
@RequestBody(required = false) OrganizationStudentReq req, |
|
|
|
@RequestBody(required = false) OrganizationStudentReq req, |
|
|
|
HttpServletRequest request, HttpServletResponse response) throws IOException { |
|
|
|
HttpServletRequest request, HttpServletResponse response) throws IOException { |
|
|
|
|
|
|
|
List<StudentInfoResp> studentList = req.getStudentList(); |
|
|
|
Integer schoolId = TokenUtils.getSchoolIdByJwtToken(request); |
|
|
|
Integer schoolId = TokenUtils.getSchoolIdByJwtToken(request); |
|
|
|
if (req!=null){ |
|
|
|
if (req.getLevel()!=null){ |
|
|
|
req.setSchoolId(schoolId); |
|
|
|
req.setSchoolId(schoolId); |
|
|
|
//1.专业 2.年级 3.班级
|
|
|
|
//1.专业 2.年级 3.班级
|
|
|
|
switch (req.getLevel()) { |
|
|
|
switch (req.getLevel()) { |
|
|
@ -671,10 +669,8 @@ public class StudentArchitectureController { |
|
|
|
continue; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
req.setClassList(getClass); |
|
|
|
req.setClassList(getClass); |
|
|
|
|
|
|
|
|
|
|
|
studentList.addAll(studentService.organizationalExportStudentList(req)); |
|
|
|
studentList.addAll(studentService.organizationalExportStudentList(req)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
case 2: |
|
|
|
case 2: |
|
|
|
//选择年级时
|
|
|
|
//选择年级时
|
|
|
|
QueryWrapper<Class> classQueryWrapper = new QueryWrapper<>(); |
|
|
|
QueryWrapper<Class> classQueryWrapper = new QueryWrapper<>(); |
|
|
@ -682,16 +678,13 @@ public class StudentArchitectureController { |
|
|
|
List<Class> getClass = classService.list(classQueryWrapper); |
|
|
|
List<Class> getClass = classService.list(classQueryWrapper); |
|
|
|
req.setClassList(getClass); |
|
|
|
req.setClassList(getClass); |
|
|
|
studentList = studentService.organizationalExportStudentList(req); |
|
|
|
studentList = studentService.organizationalExportStudentList(req); |
|
|
|
|
|
|
|
|
|
|
|
case 3: |
|
|
|
case 3: |
|
|
|
List<Class> classList = new ArrayList<>(); |
|
|
|
List<Class> classList = new ArrayList<>(); |
|
|
|
Class classes = new Class(); |
|
|
|
Class classes = new Class(); |
|
|
|
classes.setId(req.getArchitectureId()); |
|
|
|
classes.setId(req.getArchitectureId()); |
|
|
|
classList.add(classes); |
|
|
|
classList.add(classes); |
|
|
|
req.setClassList(classList); |
|
|
|
req.setClassList(classList); |
|
|
|
|
|
|
|
|
|
|
|
studentList = studentService.organizationalExportStudentList(req); |
|
|
|
studentList = studentService.organizationalExportStudentList(req); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
}else { |
|
|
|
}else { |
|
|
|
if (studentList==null || studentList.isEmpty()){ |
|
|
|
if (studentList==null || studentList.isEmpty()){ |
|
|
@ -723,7 +716,6 @@ public class StudentArchitectureController { |
|
|
|
@ApiOperation(value = "移除学生", response = StudentInfoResp.class) |
|
|
|
@ApiOperation(value = "移除学生", response = StudentInfoResp.class) |
|
|
|
public R removeStudent(HttpServletRequest request, @ApiParam(name = "classId", value = "要移除的班级id", required = true) @RequestParam String classId, |
|
|
|
public R removeStudent(HttpServletRequest request, @ApiParam(name = "classId", value = "要移除的班级id", required = true) @RequestParam String classId, |
|
|
|
@ApiParam(name = "stuAccountId", value = "要移除的学生账号id", required = true) @RequestParam String stuAccountId) { |
|
|
|
@ApiParam(name = "stuAccountId", value = "要移除的学生账号id", required = true) @RequestParam String stuAccountId) { |
|
|
|
String accountId = TokenUtils.getIdByJwtToken(request); |
|
|
|
|
|
|
|
Integer schoolId = TokenUtils.getSchoolIdByJwtToken(request); |
|
|
|
Integer schoolId = TokenUtils.getSchoolIdByJwtToken(request); |
|
|
|
QueryWrapper<Student> queryWrapper = new QueryWrapper<>(); |
|
|
|
QueryWrapper<Student> queryWrapper = new QueryWrapper<>(); |
|
|
|
queryWrapper.eq("is_del", DelConstant.NOT_DEL); |
|
|
|
queryWrapper.eq("is_del", DelConstant.NOT_DEL); |
|
|
@ -766,7 +758,6 @@ public class StudentArchitectureController { |
|
|
|
) { |
|
|
|
) { |
|
|
|
|
|
|
|
|
|
|
|
boolean ret = false; |
|
|
|
boolean ret = false; |
|
|
|
String accountId = TokenUtils.getIdByJwtToken(request); |
|
|
|
|
|
|
|
Integer schoolId = TokenUtils.getSchoolIdByJwtToken(request); if (accountIds != null && accountIds.size() != 0) { |
|
|
|
Integer schoolId = TokenUtils.getSchoolIdByJwtToken(request); if (accountIds != null && accountIds.size() != 0) { |
|
|
|
for (Integer stuAccountId : accountIds) { |
|
|
|
for (Integer stuAccountId : accountIds) { |
|
|
|
//修改学生表删除状态为已删除 同时班级id设置为1表示无指定班级
|
|
|
|
//修改学生表删除状态为已删除 同时班级id设置为1表示无指定班级
|
|
|
@ -892,7 +883,6 @@ public class StudentArchitectureController { |
|
|
|
@PostMapping("/importStudent") |
|
|
|
@PostMapping("/importStudent") |
|
|
|
@ApiOperation("批量导入学生") |
|
|
|
@ApiOperation("批量导入学生") |
|
|
|
public R importStudent(@RequestParam(name = "file") MultipartFile file, HttpServletRequest request) throws IOException { |
|
|
|
public R importStudent(@RequestParam(name = "file") MultipartFile file, HttpServletRequest request) throws IOException { |
|
|
|
String accountId = TokenUtils.getIdByJwtToken(request); |
|
|
|
|
|
|
|
Integer schoolId = TokenUtils.getSchoolIdByJwtToken(request); Map<String, String> map = studentService.uploadStudent(file, schoolId); |
|
|
|
Integer schoolId = TokenUtils.getSchoolIdByJwtToken(request); Map<String, String> map = studentService.uploadStudent(file, schoolId); |
|
|
|
return R.ok().put("data", map); |
|
|
|
return R.ok().put("data", map); |
|
|
|
} |
|
|
|
} |
|
|
@ -920,7 +910,6 @@ public class StudentArchitectureController { |
|
|
|
@ApiOperation(value = "根据组织架构筛选学生列表", response = StudentInfoResp.class) |
|
|
|
@ApiOperation(value = "根据组织架构筛选学生列表", response = StudentInfoResp.class) |
|
|
|
public R organizationalStudentList(@RequestBody OrganizationStudentReq req, |
|
|
|
public R organizationalStudentList(@RequestBody OrganizationStudentReq req, |
|
|
|
HttpServletRequest request) { |
|
|
|
HttpServletRequest request) { |
|
|
|
String accountId = TokenUtils.getIdByJwtToken(request); |
|
|
|
|
|
|
|
Integer schoolId = TokenUtils.getSchoolIdByJwtToken(request); req.setSchoolId(schoolId); |
|
|
|
Integer schoolId = TokenUtils.getSchoolIdByJwtToken(request); req.setSchoolId(schoolId); |
|
|
|
req.setPageNum((req.getPageNum() - 1) * req.getPageSize()); |
|
|
|
req.setPageNum((req.getPageNum() - 1) * req.getPageSize()); |
|
|
|
req.setPageSize(req.getPageSize()); |
|
|
|
req.setPageSize(req.getPageSize()); |
|
|
|