|
|
@@ -0,0 +1,275 @@
|
|
|
+package org.jeecg.modules.oa.controller;
|
|
|
+
|
|
|
+import java.io.UnsupportedEncodingException;
|
|
|
+import java.io.IOException;
|
|
|
+import java.net.URLDecoder;
|
|
|
+import java.text.ParseException;
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
+import java.util.*;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
+
|
|
|
+import org.jeecgframework.poi.excel.ExcelImportUtil;
|
|
|
+import org.jeecgframework.poi.excel.def.NormalExcelConstants;
|
|
|
+import org.jeecgframework.poi.excel.entity.ExportParams;
|
|
|
+import org.jeecgframework.poi.excel.entity.ImportParams;
|
|
|
+import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
|
|
|
+import org.jeecg.common.system.vo.LoginUser;
|
|
|
+import org.apache.shiro.SecurityUtils;
|
|
|
+import org.jeecg.common.api.vo.Result;
|
|
|
+import org.jeecg.common.system.query.QueryGenerator;
|
|
|
+import org.jeecg.common.util.oConvertUtils;
|
|
|
+import org.jeecg.modules.oa.entity.MuseumDutyDetail;
|
|
|
+import org.jeecg.modules.oa.entity.MuseumDuty;
|
|
|
+import org.jeecg.modules.oa.vo.MuseumDutyPage;
|
|
|
+import org.jeecg.modules.oa.service.IMuseumDutyService;
|
|
|
+import org.jeecg.modules.oa.service.IMuseumDutyDetailService;
|
|
|
+import org.springframework.beans.BeanUtils;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+import org.springframework.web.servlet.ModelAndView;
|
|
|
+import org.springframework.web.multipart.MultipartFile;
|
|
|
+import org.springframework.web.multipart.MultipartHttpServletRequest;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import com.alibaba.fastjson.JSON;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.jeecg.common.aspect.annotation.AutoLog;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @Description: 全馆值班登记
|
|
|
+ * @Author: jeecg-boot
|
|
|
+ * @Date: 2023-05-29
|
|
|
+ * @Version: V1.0
|
|
|
+ */
|
|
|
+@Api(tags="全馆值班登记")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/oa/museumDuty")
|
|
|
+@Slf4j
|
|
|
+public class MuseumDutyController {
|
|
|
+ @Autowired
|
|
|
+ private IMuseumDutyService museumDutyService;
|
|
|
+ @Autowired
|
|
|
+ private IMuseumDutyDetailService museumDutyDetailService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分页列表查询
|
|
|
+ *
|
|
|
+ * @param museumDuty
|
|
|
+ * @param pageNo
|
|
|
+ * @param pageSize
|
|
|
+ * @param req
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @AutoLog(value = "全馆值班登记-分页列表查询")
|
|
|
+ @ApiOperation(value="全馆值班登记-分页列表查询", notes="全馆值班登记-分页列表查询")
|
|
|
+ @GetMapping(value = "/list")
|
|
|
+ public Result<?> queryPageList(MuseumDuty museumDuty,
|
|
|
+ @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
|
|
+ @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
|
|
+ HttpServletRequest req) throws ParseException {
|
|
|
+ Date dutyMonth = museumDuty.getDutyMonth();
|
|
|
+ museumDuty.setDutyMonth(null);
|
|
|
+ int year=0;
|
|
|
+ int month=0;
|
|
|
+ QueryWrapper<MuseumDuty> queryWrapper = QueryGenerator.initQueryWrapper(museumDuty, req.getParameterMap());
|
|
|
+ if(dutyMonth!=null){
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");
|
|
|
+ String format = sdf.format(dutyMonth);
|
|
|
+ Date parse = sdf.parse(format);
|
|
|
+ Calendar c = Calendar.getInstance();
|
|
|
+ c.setTime(parse);
|
|
|
+ year = c.get(Calendar.YEAR);
|
|
|
+ month = c.get(Calendar.MONTH)+1;
|
|
|
+ queryWrapper.eq("YEAR(duty_month)",year);
|
|
|
+ queryWrapper.eq("MONTH(duty_month)",month);
|
|
|
+ }
|
|
|
+ Page<MuseumDuty> page = new Page<MuseumDuty>(pageNo, pageSize);
|
|
|
+ IPage<MuseumDuty> pageList = museumDutyService.page(page, queryWrapper);
|
|
|
+ return Result.ok(pageList);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 添加
|
|
|
+ *
|
|
|
+ * @param museumDutyPage
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @AutoLog(value = "全馆值班登记-添加")
|
|
|
+ @ApiOperation(value="全馆值班登记-添加", notes="全馆值班登记-添加")
|
|
|
+ @PostMapping(value = "/add")
|
|
|
+ public Result<?> add(@RequestBody MuseumDutyPage museumDutyPage) {
|
|
|
+ MuseumDuty museumDuty = new MuseumDuty();
|
|
|
+ BeanUtils.copyProperties(museumDutyPage, museumDuty);
|
|
|
+ museumDutyService.saveMain(museumDuty, museumDutyPage.getMuseumDutyDetailList());
|
|
|
+ return Result.ok("添加成功!");
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 编辑
|
|
|
+ *
|
|
|
+ * @param museumDutyPage
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @AutoLog(value = "全馆值班登记-编辑")
|
|
|
+ @ApiOperation(value="全馆值班登记-编辑", notes="全馆值班登记-编辑")
|
|
|
+ @PutMapping(value = "/edit")
|
|
|
+ public Result<?> edit(@RequestBody MuseumDutyPage museumDutyPage) {
|
|
|
+ MuseumDuty museumDuty = new MuseumDuty();
|
|
|
+ BeanUtils.copyProperties(museumDutyPage, museumDuty);
|
|
|
+ MuseumDuty museumDutyEntity = museumDutyService.getById(museumDuty.getId());
|
|
|
+ if(museumDutyEntity==null) {
|
|
|
+ return Result.error("未找到对应数据");
|
|
|
+ }
|
|
|
+ museumDutyService.updateMain(museumDuty, museumDutyPage.getMuseumDutyDetailList());
|
|
|
+ return Result.ok("编辑成功!");
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 通过id删除
|
|
|
+ *
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @AutoLog(value = "全馆值班登记-通过id删除")
|
|
|
+ @ApiOperation(value="全馆值班登记-通过id删除", notes="全馆值班登记-通过id删除")
|
|
|
+ @DeleteMapping(value = "/delete")
|
|
|
+ public Result<?> delete(@RequestParam(name="id",required=true) String id) {
|
|
|
+ museumDutyService.delMain(id);
|
|
|
+ return Result.ok("删除成功!");
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 批量删除
|
|
|
+ *
|
|
|
+ * @param ids
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @AutoLog(value = "全馆值班登记-批量删除")
|
|
|
+ @ApiOperation(value="全馆值班登记-批量删除", notes="全馆值班登记-批量删除")
|
|
|
+ @DeleteMapping(value = "/deleteBatch")
|
|
|
+ public Result<?> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
|
|
|
+ this.museumDutyService.delBatchMain(Arrays.asList(ids.split(",")));
|
|
|
+ return Result.ok("批量删除成功!");
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 通过id查询
|
|
|
+ *
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @AutoLog(value = "全馆值班登记-通过id查询")
|
|
|
+ @ApiOperation(value="全馆值班登记-通过id查询", notes="全馆值班登记-通过id查询")
|
|
|
+ @GetMapping(value = "/queryById")
|
|
|
+ public Result<?> queryById(@RequestParam(name="id",required=true) String id) {
|
|
|
+ MuseumDuty museumDuty = museumDutyService.getById(id);
|
|
|
+ if(museumDuty==null) {
|
|
|
+ return Result.error("未找到对应数据");
|
|
|
+ }
|
|
|
+ return Result.ok(museumDuty);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 通过id查询
|
|
|
+ *
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @AutoLog(value = "全馆值班登记子表集合-通过id查询")
|
|
|
+ @ApiOperation(value="全馆值班登记子表集合-通过id查询", notes="全馆值班登记子表-通过id查询")
|
|
|
+ @GetMapping(value = "/queryMuseumDutyDetailByMainId")
|
|
|
+ public Result<?> queryMuseumDutyDetailListByMainId(@RequestParam(name="id",required=true) String id) {
|
|
|
+ List<MuseumDutyDetail> museumDutyDetailList = museumDutyDetailService.selectByMainId(id);
|
|
|
+ return Result.ok(museumDutyDetailList);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导出excel
|
|
|
+ *
|
|
|
+ * @param request
|
|
|
+ * @param museumDuty
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/exportXls")
|
|
|
+ public ModelAndView exportXls(HttpServletRequest request, MuseumDuty museumDuty) {
|
|
|
+ // Step.1 组装查询条件查询数据
|
|
|
+ QueryWrapper<MuseumDuty> queryWrapper = QueryGenerator.initQueryWrapper(museumDuty, request.getParameterMap());
|
|
|
+ LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|
|
|
+
|
|
|
+ //Step.2 获取导出数据
|
|
|
+ List<MuseumDuty> queryList = museumDutyService.list(queryWrapper);
|
|
|
+ // 过滤选中数据
|
|
|
+ String selections = request.getParameter("selections");
|
|
|
+ List<MuseumDuty> museumDutyList = new ArrayList<MuseumDuty>();
|
|
|
+ if(oConvertUtils.isEmpty(selections)) {
|
|
|
+ museumDutyList = queryList;
|
|
|
+ }else {
|
|
|
+ List<String> selectionList = Arrays.asList(selections.split(","));
|
|
|
+ museumDutyList = queryList.stream().filter(item -> selectionList.contains(item.getId())).collect(Collectors.toList());
|
|
|
+ }
|
|
|
+
|
|
|
+ // Step.3 组装pageList
|
|
|
+ List<MuseumDutyPage> pageList = new ArrayList<MuseumDutyPage>();
|
|
|
+ for (MuseumDuty main : museumDutyList) {
|
|
|
+ MuseumDutyPage vo = new MuseumDutyPage();
|
|
|
+ BeanUtils.copyProperties(main, vo);
|
|
|
+ List<MuseumDutyDetail> museumDutyDetailList = museumDutyDetailService.selectByMainId(main.getId());
|
|
|
+ vo.setMuseumDutyDetailList(museumDutyDetailList);
|
|
|
+ pageList.add(vo);
|
|
|
+ }
|
|
|
+
|
|
|
+ // Step.4 AutoPoi 导出Excel
|
|
|
+ ModelAndView mv = new ModelAndView(new JeecgEntityExcelView());
|
|
|
+ mv.addObject(NormalExcelConstants.FILE_NAME, "全馆值班登记列表");
|
|
|
+ mv.addObject(NormalExcelConstants.CLASS, MuseumDutyPage.class);
|
|
|
+ mv.addObject(NormalExcelConstants.PARAMS, new ExportParams("全馆值班登记数据", "导出人:"+sysUser.getRealname(), "全馆值班登记"));
|
|
|
+ mv.addObject(NormalExcelConstants.DATA_LIST, pageList);
|
|
|
+ return mv;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 通过excel导入数据
|
|
|
+ *
|
|
|
+ * @param request
|
|
|
+ * @param response
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
|
|
|
+ public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
|
|
|
+ MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;
|
|
|
+ Map<String, MultipartFile> fileMap = multipartRequest.getFileMap();
|
|
|
+ for (Map.Entry<String, MultipartFile> entity : fileMap.entrySet()) {
|
|
|
+ MultipartFile file = entity.getValue();// 获取上传文件对象
|
|
|
+ ImportParams params = new ImportParams();
|
|
|
+ params.setTitleRows(2);
|
|
|
+ params.setHeadRows(1);
|
|
|
+ params.setNeedSave(true);
|
|
|
+ try {
|
|
|
+ List<MuseumDutyPage> list = ExcelImportUtil.importExcel(file.getInputStream(), MuseumDutyPage.class, params);
|
|
|
+ for (MuseumDutyPage page : list) {
|
|
|
+ MuseumDuty po = new MuseumDuty();
|
|
|
+ BeanUtils.copyProperties(page, po);
|
|
|
+ museumDutyService.saveMain(po, page.getMuseumDutyDetailList());
|
|
|
+ }
|
|
|
+ return Result.ok("文件导入成功!数据行数:" + list.size());
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error(e.getMessage(),e);
|
|
|
+ return Result.error("文件导入失败:"+e.getMessage());
|
|
|
+ } finally {
|
|
|
+ try {
|
|
|
+ file.getInputStream().close();
|
|
|
+ } catch (IOException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return Result.ok("文件导入失败!");
|
|
|
+ }
|
|
|
+
|
|
|
+}
|