|
@@ -80,6 +80,8 @@ public class ExportController extends BaseController {
|
|
|
private StudentExtracurricularExercisesSituationService studentExtracurricularExercisesSituationService;
|
|
|
@Autowired
|
|
|
private TeacherSalaryComplaintsService teacherSalaryComplaintsService;
|
|
|
+ @Autowired
|
|
|
+ private TeacherCourseRewardService teacherCourseRewardService;
|
|
|
|
|
|
@ApiOperation(value = "导出申述处理列表")
|
|
|
@PostMapping("export/teacherSalaryComplaints")
|
|
@@ -235,6 +237,57 @@ public class ExportController extends BaseController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "导出老师结转奖励")
|
|
|
+ @PostMapping("export/teacherCourseReward")
|
|
|
+ @PreAuthorize("@pcs.hasPermissions('export/teacherCourseReward')")
|
|
|
+ public void teacherCourseReward(HttpServletResponse response, TeacherCourseRewardQueryInfo queryInfo) throws IOException {
|
|
|
+ queryInfo.setRows(99999);
|
|
|
+ SysUser sysUser = sysUserFeignService.queryUserInfo();
|
|
|
+ if (sysUser == null) {
|
|
|
+ throw new BizException("用户信息获取失败");
|
|
|
+ }
|
|
|
+ if (!sysUser.getIsSuperAdmin()) {
|
|
|
+ Employee employee = employeeDao.get(sysUser.getId());
|
|
|
+ if (StringUtils.isEmpty(queryInfo.getOrganId())) {
|
|
|
+ queryInfo.setOrganId(employee.getOrganIdList());
|
|
|
+ } else if (StringUtils.isEmpty(employee.getOrganIdList())) {
|
|
|
+ throw new BizException("用户所在分部异常");
|
|
|
+ } else {
|
|
|
+ List<String> list = Arrays.asList(employee.getOrganIdList().split(","));
|
|
|
+ if (!list.containsAll(Arrays.asList(queryInfo.getOrganId().split(",")))) {
|
|
|
+ throw new BizException("非法请求");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ Date endTime = queryInfo.getEndTime();
|
|
|
+ if(endTime != null){
|
|
|
+ queryInfo.setEndTime(DateUtil.addDays(endTime, 1));
|
|
|
+ }
|
|
|
+ List<TeacherCourseReward> rows = teacherCourseRewardService.queryPage(queryInfo).getRows();
|
|
|
+ OutputStream outputStream = response.getOutputStream();
|
|
|
+ try {
|
|
|
+ HSSFWorkbook workbook = POIUtil.exportExcel(new String[]{"课程组编号", "课程组名称", "分部", "指导老师", "是否结转", "结转金额", "结转日期", "备注"}, new String[]{
|
|
|
+ "musicGroupId", "courseGroupName", "organName", "teacherName", "settlementStatus.msg",
|
|
|
+ "expectRewardAmount", "settlementDate", "memo"}, rows);
|
|
|
+ response.setContentType("application/octet-stream");
|
|
|
+ response.setHeader("Content-Disposition", "attachment;filename=lender-" + DateUtil.getDate(new Date()) + ".xls");
|
|
|
+ response.flushBuffer();
|
|
|
+ outputStream = response.getOutputStream();
|
|
|
+ workbook.write(outputStream);
|
|
|
+ outputStream.flush();
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ } finally {
|
|
|
+ if (outputStream != null) {
|
|
|
+ try {
|
|
|
+ outputStream.close();
|
|
|
+ } catch (IOException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
@ApiOperation(value = "导出学员列表")
|
|
|
@PostMapping("export/studentHasCourse")
|