|
|
@@ -1,109 +1,66 @@
|
|
|
package cn.com.ctop.reimburse.mondule.controller;
|
|
|
|
|
|
-import java.util.Arrays;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
-import java.io.IOException;
|
|
|
-import java.io.UnsupportedEncodingException;
|
|
|
-import java.net.URLDecoder;
|
|
|
-import javax.servlet.http.HttpServletRequest;
|
|
|
-import javax.servlet.http.HttpServletResponse;
|
|
|
-
|
|
|
import cn.com.ctop.reimburse.mondule.entity.ReimburseApply;
|
|
|
import cn.com.ctop.reimburse.mondule.service.IReimburseApplyService;
|
|
|
-import org.jeecg.common.api.vo.Result;
|
|
|
-import org.jeecg.common.system.query.QueryGenerator;
|
|
|
-import org.jeecg.common.util.oConvertUtils;
|
|
|
-
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
-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 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.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.web.bind.annotation.*;
|
|
|
-import org.springframework.web.multipart.MultipartFile;
|
|
|
-import org.springframework.web.multipart.MultipartHttpServletRequest;
|
|
|
-import org.springframework.web.servlet.ModelAndView;
|
|
|
-import com.alibaba.fastjson.JSON;
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.jeecg.common.api.vo.Result;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import java.util.Arrays;
|
|
|
|
|
|
/**
|
|
|
* 报销申请提交表
|
|
|
- *
|
|
|
- * @author jeecg-boot
|
|
|
- * @version V1.0
|
|
|
- * @date 2022-11-21
|
|
|
*/
|
|
|
@Slf4j
|
|
|
@Api(tags = "报销申请提交表")
|
|
|
@RestController
|
|
|
-@RequestMapping("/ctop_reimburse_apply/reimburseApply")
|
|
|
+@RequestMapping("/reimburse/apply")
|
|
|
public class ReimburseApplyController {
|
|
|
@Autowired
|
|
|
private IReimburseApplyService reimburseApplyService;
|
|
|
|
|
|
/**
|
|
|
* 分页列表查询
|
|
|
- *
|
|
|
- * @param reimburseApply
|
|
|
- * @param pageNo
|
|
|
- * @param pageSize
|
|
|
- * @param req
|
|
|
- * @return
|
|
|
*/
|
|
|
- @ApiOperation(value = "报销申请提交表-分页列表查询", notes = "报销申请提交表-分页列表查询")
|
|
|
@GetMapping(value = "/list")
|
|
|
- public Result<IPage<ReimburseApply>> queryPageList(ReimburseApply reimburseApply,
|
|
|
- @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
|
|
|
- @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
|
|
|
- HttpServletRequest req) {
|
|
|
- Result<IPage<ReimburseApply>> result = new Result<>();
|
|
|
- QueryWrapper<ReimburseApply> queryWrapper = QueryGenerator.initQueryWrapper(reimburseApply, req.getParameterMap());
|
|
|
- Page<ReimburseApply> page = new Page<ReimburseApply>(pageNo, pageSize);
|
|
|
- IPage<ReimburseApply> pageList = reimburseApplyService.page(page, queryWrapper);
|
|
|
- result.setSuccess(true);
|
|
|
- result.setResult(pageList);
|
|
|
- return result;
|
|
|
+ public Result<Object> queryPageList(ReimburseApply reimburseApply,
|
|
|
+ @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
|
|
|
+ @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize
|
|
|
+ ) {
|
|
|
+ try {
|
|
|
+ return reimburseApplyService.queryPageList(reimburseApply, pageNo, pageSize);
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ return Result.error("查询失败!");
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 添加
|
|
|
- *
|
|
|
- * @param reimburseApply
|
|
|
- * @return
|
|
|
*/
|
|
|
- @ApiOperation(value = "报销申请提交表-添加", notes = "报销申请提交表-添加")
|
|
|
@PostMapping(value = "/add")
|
|
|
- public Result<ReimburseApply> add(@RequestBody ReimburseApply reimburseApply) {
|
|
|
- Result<ReimburseApply> result = new Result<>();
|
|
|
+ public Result<Object> add(@RequestBody JSONObject data) {
|
|
|
try {
|
|
|
- reimburseApplyService.save(reimburseApply);
|
|
|
- result.success("添加成功!");
|
|
|
+ return reimburseApplyService.add(data);
|
|
|
} catch (Exception e) {
|
|
|
- log.error(e.getMessage(), e);
|
|
|
- result.error500("操作失败");
|
|
|
+ e.printStackTrace();
|
|
|
+ return Result.error("添加失败!");
|
|
|
}
|
|
|
- return result;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 编辑
|
|
|
- *
|
|
|
- * @param reimburseApply
|
|
|
- * @return
|
|
|
*/
|
|
|
- @ApiOperation(value = "报销申请提交表-编辑", notes = "报销申请提交表-编辑")
|
|
|
- @PutMapping(value = "/edit")
|
|
|
+ @PostMapping(value = "/edit")
|
|
|
public Result<ReimburseApply> edit(@RequestBody ReimburseApply reimburseApply) {
|
|
|
Result<ReimburseApply> result = new Result<ReimburseApply>();
|
|
|
ReimburseApply reimburseApplyEntity = reimburseApplyService.getById(reimburseApply.getId());
|
|
|
@@ -121,12 +78,8 @@ public class ReimburseApplyController {
|
|
|
|
|
|
/**
|
|
|
* 通过id删除
|
|
|
- *
|
|
|
- * @param id
|
|
|
- * @return
|
|
|
*/
|
|
|
- @ApiOperation(value = "报销申请提交表-通过id删除", notes = "报销申请提交表-通过id删除")
|
|
|
- @DeleteMapping(value = "/delete")
|
|
|
+ @GetMapping(value = "/delete")
|
|
|
public Result<?> delete(@RequestParam(name = "id") String id) {
|
|
|
try {
|
|
|
reimburseApplyService.removeById(id);
|
|
|
@@ -144,7 +97,7 @@ public class ReimburseApplyController {
|
|
|
* @return
|
|
|
*/
|
|
|
@ApiOperation(value = "报销申请提交表-批量删除", notes = "报销申请提交表-批量删除")
|
|
|
- @DeleteMapping(value = "/deleteBatch")
|
|
|
+ @GetMapping(value = "/deleteBatch")
|
|
|
public Result<ReimburseApply> deleteBatch(@RequestParam(name = "ids") String ids) {
|
|
|
Result<ReimburseApply> result = new Result<>();
|
|
|
if (ids == null || "".equals(ids.trim())) {
|
|
|
@@ -175,72 +128,4 @@ public class ReimburseApplyController {
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * 导出excel
|
|
|
- *
|
|
|
- * @param request
|
|
|
- * @param response
|
|
|
- */
|
|
|
- @RequestMapping(value = "/exportXls")
|
|
|
- public ModelAndView exportXls(HttpServletRequest request, HttpServletResponse response) {
|
|
|
- // Step.1 组装查询条件
|
|
|
- QueryWrapper<ReimburseApply> queryWrapper = null;
|
|
|
- try {
|
|
|
- String paramsStr = request.getParameter("paramsStr");
|
|
|
- if (oConvertUtils.isNotEmpty(paramsStr)) {
|
|
|
- String deString = URLDecoder.decode(paramsStr, "UTF-8");
|
|
|
- ReimburseApply reimburseApply = JSON.parseObject(deString, ReimburseApply.class);
|
|
|
- queryWrapper = QueryGenerator.initQueryWrapper(reimburseApply, request.getParameterMap());
|
|
|
- }
|
|
|
- } catch (UnsupportedEncodingException e) {
|
|
|
- e.printStackTrace();
|
|
|
- }
|
|
|
-
|
|
|
- //Step.2 AutoPoi 导出Excel
|
|
|
- ModelAndView mv = new ModelAndView(new JeecgEntityExcelView());
|
|
|
- List<ReimburseApply> pageList = reimburseApplyService.list(queryWrapper);
|
|
|
- //导出文件名称
|
|
|
- mv.addObject(NormalExcelConstants.FILE_NAME, "报销申请提交表列表");
|
|
|
- mv.addObject(NormalExcelConstants.CLASS, ReimburseApply.class);
|
|
|
- mv.addObject(NormalExcelConstants.PARAMS, new ExportParams("报销申请提交表列表数据", "导出人:Jeecg", "导出信息"));
|
|
|
- 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<ReimburseApply> listReimburseApplys = ExcelImportUtil.importExcel(file.getInputStream(), ReimburseApply.class, params);
|
|
|
- reimburseApplyService.saveBatch(listReimburseApplys);
|
|
|
- return Result.ok("文件导入成功!数据行数:" + listReimburseApplys.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("文件导入失败!");
|
|
|
- }
|
|
|
-
|
|
|
}
|