package cn.com.lzt.providentfundstrategy.controller; import java.io.IOException; import java.math.BigDecimal; import java.net.URI; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.validation.ConstraintViolation; import javax.validation.Validator; import org.apache.commons.lang.StringUtils; import org.apache.log4j.Logger; import org.jeecgframework.core.beanvalidator.BeanValidators; import org.jeecgframework.core.common.controller.BaseController; import org.jeecgframework.core.common.exception.BusinessException; import org.jeecgframework.core.common.hibernate.qbc.CriteriaQuery; import org.jeecgframework.core.common.model.json.AjaxJson; import org.jeecgframework.core.common.model.json.DataGrid; import org.jeecgframework.core.constant.Globals; import org.jeecgframework.core.util.DateUtils; import org.jeecgframework.core.util.ExceptionUtil; import org.jeecgframework.core.util.MyBeanUtils; import org.jeecgframework.core.util.ResourceUtil; import org.jeecgframework.core.util.StringUtil; import org.jeecgframework.p3.core.util.oConvertUtils; import org.jeecgframework.poi.excel.ExcelImportUtil; import org.jeecgframework.poi.excel.entity.ExportParams; import org.jeecgframework.poi.excel.entity.ImportParams; import org.jeecgframework.poi.excel.entity.vo.NormalExcelConstants; import org.jeecgframework.tag.core.easyui.TagUtil; import org.jeecgframework.web.system.service.SystemService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseStatus; import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartHttpServletRequest; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.util.UriComponentsBuilder; import cn.com.lzt.providentfundstrategy.entity.ProvidentFundStrategyEntity; import cn.com.lzt.providentfundstrategy.service.ProvidentFundStrategyServiceI; import cn.com.lzt.socialsecuritystrategy.entity.SocialSecurityStrategyEntity; /** * @Title: Controller * @Description: 公积金策略表 * @author onlineGenerator * @date 2017-09-26 16:39:32 * @version V1.0 * */ @Controller @RequestMapping("/providentFundStrategyController") public class ProvidentFundStrategyController extends BaseController { /** * Logger for this class */ private static final Logger logger = Logger.getLogger(ProvidentFundStrategyController.class); @Autowired private ProvidentFundStrategyServiceI providentFundStrategyService; @Autowired private SystemService systemService; @Autowired private Validator validator; /** * 公积金策略表列表 页面跳转 * * @return */ @RequestMapping(params = "list") public ModelAndView list(HttpServletRequest request) { return new ModelAndView("cn/com/lzt/providentfundstrategy/providentFundStrategyList"); } /** * easyui AJAX请求数据 * * @param request * @param response * @param dataGrid * @param user */ @RequestMapping(params = "datagrid") public void datagrid(ProvidentFundStrategyEntity providentFundStrategy,HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid) { CriteriaQuery cq = new CriteriaQuery(ProvidentFundStrategyEntity.class, dataGrid); //查询条件组装器 // org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, providentFundStrategy, request.getParameterMap()); // cq.add(); try{ // String[] status = new String[]{Globals.Enabled_Status.toString(), Globals.Disabled_Status.toString()}; // cq.in("status", status); cq.eq("deleteFlag", Globals.Delete_Normal.toString()); //缴费基数查询 String basePay_begin = request.getParameter("basePay_begin"); String basePay_end = request.getParameter("basePay_end"); if(oConvertUtils.isNotEmpty(basePay_begin)){ cq.ge("basePay", new BigDecimal(basePay_begin).setScale(2, BigDecimal.ROUND_DOWN)); cq.add(); } if(oConvertUtils.isNotEmpty(basePay_end)){ cq.le("basePay", new BigDecimal(basePay_end).setScale(2, BigDecimal.ROUND_DOWN)); cq.add(); } //自定义追加查询条件 //适用时间查询 String startTime = request.getParameter("startTime"); String endTime = request.getParameter("endTime"); if(oConvertUtils.isNotEmpty(startTime)){ cq.ge("endTime", DateUtils.parseDate(startTime, "yyyy-MM-dd")); cq.add(); } if(oConvertUtils.isNotEmpty(endTime)){ cq.le("startTime", DateUtils.parseDate(endTime, "yyyy-MM-dd")); cq.add(); } //状态 String status = request.getParameter("status"); if(oConvertUtils.isNotEmpty(status)){ cq.eq("status", status); cq.add(); } //排序 Map map = new HashMap(); map.put("createDate", "desc"); cq.setOrder(map); }catch (Exception e) { throw new BusinessException(e.getMessage()); } cq.add(); this.providentFundStrategyService.getDataGridReturn(cq, true); TagUtil.datagrid(response, dataGrid); } /** * 删除公积金策略 * * @return */ @RequestMapping(params = "doDel") @ResponseBody public AjaxJson doDel(ProvidentFundStrategyEntity providentFundStrategy, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); providentFundStrategy = systemService.getEntity(ProvidentFundStrategyEntity.class, providentFundStrategy.getId()); message = "公积金策略表删除成功"; try{ providentFundStrategyService.delete(providentFundStrategy); systemService.addLog(message, Globals.Log_Type_DEL, Globals.Log_Leavel_INFO); }catch(Exception e){ e.printStackTrace(); message = "公积金策略表删除失败"; throw new BusinessException(e.getMessage()); } j.setMsg(message); return j; } /** * 逻辑删除公积金策略 * * @return */ @RequestMapping(params = "logicDel") @ResponseBody public AjaxJson logicDel(ProvidentFundStrategyEntity providentFundStrategy, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); providentFundStrategy = systemService.getEntity(ProvidentFundStrategyEntity.class, providentFundStrategy.getId()); message = "公积金策略 删除成功"; try{ providentFundStrategy.setDeleteFlag(Globals.Delete_Forbidden.toString()); providentFundStrategyService.logicDel(providentFundStrategy); systemService.addLog(message, Globals.Log_Type_DEL, Globals.Log_Leavel_INFO); }catch(Exception e){ e.printStackTrace(); message = "公积金策略 删除失败"; throw new BusinessException(e.getMessage()); } j.setMsg(message); return j; } /** * 批量删除公积金策略表 * * @return */ @RequestMapping(params = "doBatchDel") @ResponseBody public AjaxJson doBatchDel(String ids,HttpServletRequest request){ String message = null; AjaxJson j = new AjaxJson(); message = "公积金策略表删除成功"; try{ for(String id:ids.split(",")){ ProvidentFundStrategyEntity providentFundStrategy = systemService.getEntity(ProvidentFundStrategyEntity.class, id ); providentFundStrategyService.delete(providentFundStrategy); systemService.addLog(message, Globals.Log_Type_DEL, Globals.Log_Leavel_INFO); } }catch(Exception e){ e.printStackTrace(); message = "公积金策略表删除失败"; throw new BusinessException(e.getMessage()); } j.setMsg(message); return j; } /** * 添加公积金策略表 * * @param ids * @return */ @RequestMapping(params = "doAdd") @ResponseBody public AjaxJson doAdd(ProvidentFundStrategyEntity providentFundStrategy, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); message = "公积金策略表添加成功"; try{ SimpleDateFormat date_sdf = new SimpleDateFormat("yyyy-MM-dd"); String startTime = request.getParameter("startTime"); String endTime = request.getParameter("endTime"); if(oConvertUtils.isNotEmpty(startTime)){ providentFundStrategy.setStartTime(date_sdf.parse(startTime)); } if(oConvertUtils.isNotEmpty(endTime)){ providentFundStrategy.setEndTime(date_sdf.parse(endTime)); } providentFundStrategy.setStatus(Globals.Enabled_Status.toString()); providentFundStrategy.setDeleteFlag(Globals.Delete_Normal.toString()); providentFundStrategyService.save(providentFundStrategy); systemService.addLog(message, Globals.Log_Type_INSERT, Globals.Log_Leavel_INFO); }catch(Exception e){ e.printStackTrace(); message = "公积金策略表添加失败"; throw new BusinessException(e.getMessage()); } j.setMsg(message); return j; } /** * 更新公积金策略表 * * @param ids * @return */ @RequestMapping(params = "doUpdate") @ResponseBody public AjaxJson doUpdate(ProvidentFundStrategyEntity providentFundStrategy, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); message = "公积金策略表更新成功"; ProvidentFundStrategyEntity t = providentFundStrategyService.get(ProvidentFundStrategyEntity.class, providentFundStrategy.getId()); try { MyBeanUtils.copyBeanNotNull2Bean(providentFundStrategy, t); providentFundStrategyService.saveOrUpdate(t); systemService.addLog(message, Globals.Log_Type_UPDATE, Globals.Log_Leavel_INFO); } catch (Exception e) { e.printStackTrace(); message = "公积金策略表更新失败"; throw new BusinessException(e.getMessage()); } j.setMsg(message); return j; } /** * 公积金策略表新增页面跳转 * * @return */ @RequestMapping(params = "goAdd") public ModelAndView goAdd(ProvidentFundStrategyEntity providentFundStrategy, HttpServletRequest req) { if (StringUtil.isNotEmpty(providentFundStrategy.getId())) { providentFundStrategy = providentFundStrategyService.getEntity(ProvidentFundStrategyEntity.class, providentFundStrategy.getId()); req.setAttribute("providentFundStrategyPage", providentFundStrategy); } return new ModelAndView("cn/com/lzt/providentfundstrategy/providentFundStrategy-add"); } /** * 公积金策略表编辑页面跳转 * * @return */ @RequestMapping(params = "goUpdate") public ModelAndView goUpdate(ProvidentFundStrategyEntity providentFundStrategy, HttpServletRequest req) { if (StringUtil.isNotEmpty(providentFundStrategy.getId())) { providentFundStrategy = providentFundStrategyService.getEntity(ProvidentFundStrategyEntity.class, providentFundStrategy.getId()); req.setAttribute("providentFundStrategyPage", providentFundStrategy); } return new ModelAndView("cn/com/lzt/providentfundstrategy/providentFundStrategy-update"); } /** * 导入功能跳转 * * @return */ @RequestMapping(params = "upload") public ModelAndView upload(HttpServletRequest req) { req.setAttribute("controller_name","providentFundStrategyController"); return new ModelAndView("common/upload/pub_excel_upload"); } /** * 导出excel * * @param request * @param response */ @RequestMapping(params = "exportXls") public String exportXls(ProvidentFundStrategyEntity providentFundStrategy,HttpServletRequest request,HttpServletResponse response , DataGrid dataGrid,ModelMap modelMap) { CriteriaQuery cq = new CriteriaQuery(ProvidentFundStrategyEntity.class, dataGrid); try{ // String[] status = new String[]{Globals.Enabled_Status.toString(), Globals.Disabled_Status.toString()}; // cq.in("status", status); cq.eq("deleteFlag", Globals.Delete_Normal.toString()); //缴费基数查询 String basePay_begin = request.getParameter("basePay_begin"); String basePay_end = request.getParameter("basePay_end"); if(oConvertUtils.isNotEmpty(basePay_begin)){ cq.ge("basePay", new BigDecimal(basePay_begin).setScale(2, BigDecimal.ROUND_DOWN)); cq.add(); } if(oConvertUtils.isNotEmpty(basePay_end)){ cq.le("basePay", new BigDecimal(basePay_end).setScale(2, BigDecimal.ROUND_DOWN)); cq.add(); } //自定义追加查询条件 //适用时间查询 String startTime = request.getParameter("startTime"); String endTime = request.getParameter("endTime"); if(oConvertUtils.isNotEmpty(startTime)){ cq.ge("endTime", DateUtils.parseDate(startTime, "yyyy-MM-dd")); cq.add(); } if(oConvertUtils.isNotEmpty(endTime)){ cq.le("startTime", DateUtils.parseDate(endTime, "yyyy-MM-dd")); cq.add(); } //状态 String status = request.getParameter("status"); if(oConvertUtils.isNotEmpty(status)){ cq.eq("status", status); cq.add(); } //排序 Map map = new HashMap(); map.put("createDate", "desc"); cq.setOrder(map); }catch (Exception e) { throw new BusinessException(e.getMessage()); } org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, providentFundStrategy, request.getParameterMap()); List providentFundStrategys = this.providentFundStrategyService.getListByCriteriaQuery(cq,false); modelMap.put(NormalExcelConstants.FILE_NAME,"公积金策略表"); modelMap.put(NormalExcelConstants.CLASS,ProvidentFundStrategyEntity.class); modelMap.put(NormalExcelConstants.PARAMS,new ExportParams("公积金策略表列表", "导出人:"+ResourceUtil.getSessionUser().getRealName(), "导出信息")); modelMap.put(NormalExcelConstants.DATA_LIST,providentFundStrategys); return NormalExcelConstants.JEECG_EXCEL_VIEW; } /** * 导出excel 使模板 * * @param request * @param response */ @RequestMapping(params = "exportXlsByT") public String exportXlsByT(ProvidentFundStrategyEntity providentFundStrategy,HttpServletRequest request,HttpServletResponse response , DataGrid dataGrid,ModelMap modelMap) { modelMap.put(NormalExcelConstants.FILE_NAME,"公积金策略表"); modelMap.put(NormalExcelConstants.CLASS,ProvidentFundStrategyEntity.class); modelMap.put(NormalExcelConstants.PARAMS,new ExportParams("公积金策略表列表", "导出人:"+ResourceUtil.getSessionUser().getRealName(), "导出信息")); modelMap.put(NormalExcelConstants.DATA_LIST,new ArrayList()); return NormalExcelConstants.JEECG_EXCEL_VIEW; } @SuppressWarnings("unchecked") @RequestMapping(params = "importExcel", method = RequestMethod.POST) @ResponseBody public AjaxJson importExcel(HttpServletRequest request, HttpServletResponse response) { AjaxJson j = new AjaxJson(); MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request; Map fileMap = multipartRequest.getFileMap(); for (Map.Entry entity : fileMap.entrySet()) { MultipartFile file = entity.getValue();// 获取上传文件对象 ImportParams params = new ImportParams(); params.setTitleRows(2); params.setHeadRows(1); params.setNeedSave(true); try { List listProvidentFundStrategyEntitys = ExcelImportUtil.importExcel(file.getInputStream(),ProvidentFundStrategyEntity.class,params); for (ProvidentFundStrategyEntity providentFundStrategy : listProvidentFundStrategyEntitys) { providentFundStrategyService.save(providentFundStrategy); } j.setMsg("文件导入成功!"); } catch (Exception e) { j.setMsg("文件导入失败!"); logger.error(ExceptionUtil.getExceptionMessage(e)); }finally{ try { file.getInputStream().close(); } catch (IOException e) { e.printStackTrace(); } } } return j; } @RequestMapping(method = RequestMethod.GET) @ResponseBody public List list() { List listProvidentFundStrategys=providentFundStrategyService.getList(ProvidentFundStrategyEntity.class); return listProvidentFundStrategys; } @RequestMapping(value = "/{id}", method = RequestMethod.GET) @ResponseBody public ResponseEntity get(@PathVariable("id") String id) { ProvidentFundStrategyEntity task = providentFundStrategyService.get(ProvidentFundStrategyEntity.class, id); if (task == null) { return new ResponseEntity(HttpStatus.NOT_FOUND); } return new ResponseEntity(task, HttpStatus.OK); } @RequestMapping(method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE) @ResponseBody public ResponseEntity create(@RequestBody ProvidentFundStrategyEntity providentFundStrategy, UriComponentsBuilder uriBuilder) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(providentFundStrategy); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 try{ providentFundStrategyService.save(providentFundStrategy); } catch (Exception e) { e.printStackTrace(); return new ResponseEntity(HttpStatus.NO_CONTENT); } //按照Restful风格约定,创建指向新任务的url, 也可以直接返回id或对象. String id = providentFundStrategy.getId(); URI uri = uriBuilder.path("/rest/providentFundStrategyController/" + id).build().toUri(); HttpHeaders headers = new HttpHeaders(); headers.setLocation(uri); return new ResponseEntity(headers, HttpStatus.CREATED); } @RequestMapping(value = "/{id}", method = RequestMethod.PUT, consumes = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity update(@RequestBody ProvidentFundStrategyEntity providentFundStrategy) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(providentFundStrategy); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 try{ providentFundStrategyService.saveOrUpdate(providentFundStrategy); } catch (Exception e) { e.printStackTrace(); return new ResponseEntity(HttpStatus.NO_CONTENT); } //按Restful约定,返回204状态码, 无内容. 也可以返回200状态码. return new ResponseEntity(HttpStatus.NO_CONTENT); } @RequestMapping(value = "/{id}", method = RequestMethod.DELETE) @ResponseStatus(HttpStatus.NO_CONTENT) public void delete(@PathVariable("id") String id) { providentFundStrategyService.deleteEntityById(ProvidentFundStrategyEntity.class, id); } /** * 启用 * * @author zhijia.wang */ @RequestMapping(params = "enable") @ResponseBody public AjaxJson enable(String id, HttpServletRequest req) { AjaxJson j = new AjaxJson(); String message = null; ProvidentFundStrategyEntity providentFundStrategy = providentFundStrategyService.getEntity(ProvidentFundStrategyEntity.class, id); try{ providentFundStrategy.setStatus(Globals.Enabled_Status.toString()); providentFundStrategyService.updateEntitie(providentFundStrategy); message = "公积金策略:" + "" + "启用成功!"; systemService.addLog(message, Globals.Log_Type_UPDATE, Globals.Log_Leavel_INFO); }catch(Exception e){ message = "操作失败!"; } j.setMsg(message); return j; } /** * 停用 * * @author zhijia.wang */ @RequestMapping(params = "disable") @ResponseBody public AjaxJson disable(String id, HttpServletRequest req) { AjaxJson j = new AjaxJson(); String message = null; ProvidentFundStrategyEntity providentFundStrategy = providentFundStrategyService.getEntity(ProvidentFundStrategyEntity.class, id); try{ providentFundStrategy.setStatus(Globals.Disabled_Status.toString()); providentFundStrategyService.updateEntitie(providentFundStrategy); message = "公积金策略:" + "" + "停用成功!"; systemService.addLog(message, Globals.Log_Type_UPDATE, Globals.Log_Leavel_INFO); }catch(Exception e){ message = "操作失败!"; } j.setMsg(message); return j; } /** * 判断公积金名称是否重复 * * @return * @throws ParseException */ @RequestMapping(params = "isCorrection") @ResponseBody public AjaxJson isCorrection(HttpServletRequest request) throws ParseException { AjaxJson j = new AjaxJson(); String id = request.getParameter("id"); String providentFundName = request.getParameter("providentFundName"); j.setSuccess(true); j.setMsg("无重复"); if(StringUtils.isNotEmpty(providentFundName)){ List per= providentFundStrategyService.findByQueryString(" FROM ProvidentFundStrategyEntity where providentFundName = '"+providentFundName+"'"); //ProvidentFundStrategyEntity per = providentFundStrategyService.findUniqueByProperty(ProvidentFundStrategyEntity.class, "providentFundName", providentFundName); if(per != null && !per.isEmpty()){ if(oConvertUtils.isEmpty(id)){ j.setSuccess(false); j.setMsg("公积金策略名称重复,请重新输入!"); return j; }else{ if(per.size() > 1){ j.setSuccess(false); j.setMsg("公积金策略名称重复,请重新输入!"); return j; } } } } return j; } }