package cn.com.lzt.certificatesubsidy.controller; import java.io.IOException; import java.net.URI; 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.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.ExceptionUtil; import org.jeecgframework.core.util.MyBeanUtils; import org.jeecgframework.core.util.ResourceUtil; import org.jeecgframework.core.util.StringUtil; 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.certificatesubsidy.entity.CertificateSubsidyEntity; import cn.com.lzt.certificatesubsidy.service.CertificateSubsidyServiceI; import cn.com.lzt.mealsdeduct.entity.MealsDeductEntity; /** * @Title: Controller * @Description: 证书补贴 * @author onlineGenerator * @date 2017-10-18 12:01:31 * @version V1.0 * */ @Controller @RequestMapping("/certificateSubsidyController") public class CertificateSubsidyController extends BaseController { /** * Logger for this class */ private static final Logger logger = Logger.getLogger(CertificateSubsidyController.class); @Autowired private CertificateSubsidyServiceI certificateSubsidyService; @Autowired private SystemService systemService; @Autowired private Validator validator; /** * 证书补贴列表 页面跳转 * * @return */ @RequestMapping(params = "list") public ModelAndView list(HttpServletRequest request) { return new ModelAndView("cn/com/lzt/certificatesubsidy/certificateSubsidyList"); } /** * easyui AJAX请求数据 * * @param request * @param response * @param dataGrid * @param user */ @RequestMapping(params = "datagrid") public void datagrid(CertificateSubsidyEntity certificateSubsidy, HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid) { CriteriaQuery cq = new CriteriaQuery(CertificateSubsidyEntity.class, dataGrid); //查询条件组装器 org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, certificateSubsidy, request.getParameterMap()); try{ //自定义追加查询条件 String[] status = new String[]{Globals.Enabled_Status.toString(), Globals.Disabled_Status.toString()}; cq.in("status", status); cq.eq("deleteFlag", Globals.Delete_Normal.toString()); Map map = new HashMap(); map.put("createDate", "desc"); cq.setOrder(map); }catch (Exception e) { throw new BusinessException(e.getMessage()); } cq.add(); this.certificateSubsidyService.getDataGridReturn(cq, true); TagUtil.datagrid(response, dataGrid); } /** * 保存新增/更新的行数据 * @param page * @return */ @RequestMapping(params = "saveRows") @ResponseBody public AjaxJson saveRows(CertificateSubsidyEntity certificateSubsidy, HttpServletRequest request){ String message = null; AjaxJson j = new AjaxJson(); message = ""; if (StringUtil.isNotEmpty(certificateSubsidy.getId())) { CertificateSubsidyEntity t = certificateSubsidyService.get(CertificateSubsidyEntity.class, certificateSubsidy.getId()); try { MyBeanUtils.copyBeanNotNull2Bean(certificateSubsidy, t); certificateSubsidyService.updateEntitie(t); message = "证书补贴更新成功"; systemService.addLog(message, Globals.Log_Type_UPDATE, Globals.Log_Leavel_INFO); } catch (Exception e) { e.printStackTrace(); message = "证书补贴更新失败"; throw new BusinessException(e.getMessage()); } } else { try{ certificateSubsidy.setDeleteFlag(Globals.Delete_Normal.toString()); certificateSubsidy.setStatus(Globals.Enabled_Status.toString()); certificateSubsidyService.save(certificateSubsidy); message = "证书补贴添加成功"; 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; } /** * 删除证书补贴 * * @return */ @RequestMapping(params = "doDel") @ResponseBody public AjaxJson doDel(CertificateSubsidyEntity certificateSubsidy, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); certificateSubsidy = systemService.getEntity(CertificateSubsidyEntity.class, certificateSubsidy.getId()); message = "证书补贴删除成功"; try{ certificateSubsidyService.delete(certificateSubsidy); 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(",")){ CertificateSubsidyEntity certificateSubsidy = systemService.getEntity(CertificateSubsidyEntity.class, id); certificateSubsidyService.delete(certificateSubsidy); 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 = "doBatchLogicDel") @ResponseBody public AjaxJson doBatchLogicDel(String ids,HttpServletRequest request){ String message = null; AjaxJson j = new AjaxJson(); message = "证书补贴删除成功"; List pojoList = new ArrayList(); try{ for(String id:ids.split(",")){ CertificateSubsidyEntity certificateSubsidy = systemService.getEntity(CertificateSubsidyEntity.class, id); certificateSubsidy.setDeleteFlag(Globals.Delete_Forbidden.toString());// 设置为1已删除 pojoList.add(certificateSubsidy); } certificateSubsidyService.batchUpdate(pojoList);// 执行批量更新 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 = "doEnableObj") @ResponseBody public AjaxJson doEnableObj(String ids,HttpServletRequest request){ String message = null; AjaxJson j = new AjaxJson(); message = "证书补贴启用成功"; List pojoList = new ArrayList(); try{ for(String id:ids.split(",")){ CertificateSubsidyEntity certificateSubsidy = systemService.getEntity(CertificateSubsidyEntity.class, id); certificateSubsidy.setStatus(Globals.Enabled_Status.toString());// 设置为0启用 pojoList.add(certificateSubsidy); } certificateSubsidyService.batchUpdate(pojoList);// 执行批量更新 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 = "doDisableObj") @ResponseBody public AjaxJson doDisableObj(String ids,HttpServletRequest request){ String message = null; AjaxJson j = new AjaxJson(); message = "证书补贴停用成功"; List pojoList = new ArrayList(); try{ for(String id:ids.split(",")){ CertificateSubsidyEntity certificateSubsidy = systemService.getEntity(CertificateSubsidyEntity.class, id); certificateSubsidy.setStatus(Globals.Disabled_Status.toString());// 设置为1停用 pojoList.add(certificateSubsidy); } certificateSubsidyService.batchUpdate(pojoList);// 执行批量更新 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; } /** * 证书名称重复校验 * * @param ids * @return */ @RequestMapping(params = "checkName") @ResponseBody public Map checkHours(CertificateSubsidyEntity certificateSubsidy, HttpServletRequest request) { Boolean flag = certificateSubsidyService.findByName(certificateSubsidy); Map res = new HashMap(); res.put("flag",flag); return res; } /** * 添加证书补贴 * * @param ids * @return */ @RequestMapping(params = "doAdd") @ResponseBody public AjaxJson doAdd(CertificateSubsidyEntity certificateSubsidy, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); message = "证书补贴添加成功"; try{ certificateSubsidy.setDeleteFlag(Globals.Delete_Normal.toString()); certificateSubsidy.setStatus(Globals.Enabled_Status.toString()); certificateSubsidyService.save(certificateSubsidy); 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(CertificateSubsidyEntity certificateSubsidy, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); message = "证书补贴更新成功"; CertificateSubsidyEntity t = certificateSubsidyService.get(CertificateSubsidyEntity.class, certificateSubsidy.getId()); try { MyBeanUtils.copyBeanNotNull2Bean(certificateSubsidy, t); certificateSubsidyService.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(CertificateSubsidyEntity certificateSubsidy, HttpServletRequest req) { if (StringUtil.isNotEmpty(certificateSubsidy.getId())) { certificateSubsidy = certificateSubsidyService.getEntity(CertificateSubsidyEntity.class, certificateSubsidy.getId()); req.setAttribute("certificateSubsidyPage", certificateSubsidy); } return new ModelAndView("cn/com/lzt/certificatesubsidy/certificateSubsidy-add"); } /** * 证书补贴编辑页面跳转 * * @return */ @RequestMapping(params = "goUpdate") public ModelAndView goUpdate(CertificateSubsidyEntity certificateSubsidy, HttpServletRequest req) { if (StringUtil.isNotEmpty(certificateSubsidy.getId())) { certificateSubsidy = certificateSubsidyService.getEntity(CertificateSubsidyEntity.class, certificateSubsidy.getId()); req.setAttribute("certificateSubsidyPage", certificateSubsidy); } return new ModelAndView("cn/com/lzt/certificatesubsidy/certificateSubsidy-update"); } /** * 导入功能跳转 * * @return */ @RequestMapping(params = "upload") public ModelAndView upload(HttpServletRequest req) { req.setAttribute("controller_name","certificateSubsidyController"); return new ModelAndView("common/upload/pub_excel_upload"); } /** * 导出excel * * @param request * @param response */ @RequestMapping(params = "exportXls") public String exportXls(CertificateSubsidyEntity certificateSubsidy,HttpServletRequest request,HttpServletResponse response , DataGrid dataGrid,ModelMap modelMap) { CriteriaQuery cq = new CriteriaQuery(CertificateSubsidyEntity.class, dataGrid); org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, certificateSubsidy, request.getParameterMap()); List certificateSubsidys = this.certificateSubsidyService.getListByCriteriaQuery(cq,false); modelMap.put(NormalExcelConstants.FILE_NAME,"证书补贴"); modelMap.put(NormalExcelConstants.CLASS,CertificateSubsidyEntity.class); modelMap.put(NormalExcelConstants.PARAMS,new ExportParams("证书补贴列表", "导出人:"+ResourceUtil.getSessionUser().getRealName(), "导出信息")); modelMap.put(NormalExcelConstants.DATA_LIST,certificateSubsidys); return NormalExcelConstants.JEECG_EXCEL_VIEW; } /** * 导出excel 使模板 * * @param request * @param response */ @RequestMapping(params = "exportXlsByT") public String exportXlsByT(CertificateSubsidyEntity certificateSubsidy,HttpServletRequest request,HttpServletResponse response , DataGrid dataGrid,ModelMap modelMap) { modelMap.put(NormalExcelConstants.FILE_NAME,"证书补贴"); modelMap.put(NormalExcelConstants.CLASS,CertificateSubsidyEntity.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 listCertificateSubsidyEntitys = ExcelImportUtil.importExcel(file.getInputStream(),CertificateSubsidyEntity.class,params); for (CertificateSubsidyEntity certificateSubsidy : listCertificateSubsidyEntitys) { certificateSubsidyService.save(certificateSubsidy); } 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 listCertificateSubsidys=certificateSubsidyService.getList(CertificateSubsidyEntity.class); return listCertificateSubsidys; } @RequestMapping(value = "/{id}", method = RequestMethod.GET) @ResponseBody public ResponseEntity get(@PathVariable("id") String id) { CertificateSubsidyEntity task = certificateSubsidyService.get(CertificateSubsidyEntity.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 CertificateSubsidyEntity certificateSubsidy, UriComponentsBuilder uriBuilder) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(certificateSubsidy); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 try{ certificateSubsidyService.save(certificateSubsidy); } catch (Exception e) { e.printStackTrace(); return new ResponseEntity(HttpStatus.NO_CONTENT); } //按照Restful风格约定,创建指向新任务的url, 也可以直接返回id或对象. String id = certificateSubsidy.getId(); URI uri = uriBuilder.path("/rest/certificateSubsidyController/" + 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 CertificateSubsidyEntity certificateSubsidy) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(certificateSubsidy); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 try{ certificateSubsidyService.saveOrUpdate(certificateSubsidy); } 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) { certificateSubsidyService.deleteEntityById(CertificateSubsidyEntity.class, id); } }