package cn.com.lzt.userfinancial.controller; import cn.com.lzt.userfinancial.entity.UserFinancialEntity; import cn.com.lzt.userfinancial.service.UserFinancialServiceI; import java.util.ArrayList; import java.util.List; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.servlet.ModelAndView; 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.StringUtil; import org.jeecgframework.tag.core.easyui.TagUtil; import org.jeecgframework.web.system.service.SystemService; import org.jeecgframework.core.util.MyBeanUtils; 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.core.util.ResourceUtil; import java.io.IOException; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartHttpServletRequest; import java.util.Map; import org.jeecgframework.core.util.ExceptionUtil; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.ResponseStatus; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; import org.jeecgframework.core.beanvalidator.BeanValidators; import java.util.Set; import javax.validation.ConstraintViolation; import javax.validation.Validator; import java.net.URI; import org.springframework.http.MediaType; import org.springframework.web.util.UriComponentsBuilder; /** * @Title: Controller * @Description: 员工财务信息表 * @author onlineGenerator * @date 2017-10-25 18:41:40 * @version V1.0 * */ @Controller @RequestMapping("/userFinancialController") public class UserFinancialController extends BaseController { /** * Logger for this class */ private static final Logger logger = Logger.getLogger(UserFinancialController.class); @Autowired private UserFinancialServiceI userFinancialService; @Autowired private SystemService systemService; @Autowired private Validator validator; /** * 员工财务信息表列表 页面跳转 * * @return */ @RequestMapping(params = "list") public ModelAndView list(String userId, HttpServletRequest request) { request.setAttribute("userId", userId); return new ModelAndView("cn/com/lzt/userfinancial/userFinancialList"); } /** * 员工财务信息表列表 页面跳转 * * @return */ @RequestMapping(params = "view") public ModelAndView view(String userId, HttpServletRequest request) { request.setAttribute("userId", userId); return new ModelAndView("cn/com/lzt/userfinancial/userFinancialList-view"); } /** * easyui AJAX请求数据 * * @param request * @param response * @param dataGrid * @param user */ @RequestMapping(params = "datagrid") public void datagrid(String userId, UserFinancialEntity userFinancial,HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid) { CriteriaQuery cq = new CriteriaQuery(UserFinancialEntity.class, dataGrid); //查询条件组装器 org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, userFinancial, request.getParameterMap()); try{ //自定义追加查询条件 cq.notEq("deleteFlag", Globals.Delete_Forbidden.toString()); cq.eq("userid", userId); }catch (Exception e) { throw new BusinessException(e.getMessage()); } cq.add(); this.userFinancialService.getDataGridReturn(cq, true); TagUtil.datagrid(response, dataGrid); } /** * 保存新增/更新的行数据 * @param page * @return */ @RequestMapping(params = "saveRows") @ResponseBody public AjaxJson saveRows(UserFinancialEntity userFinancial,HttpServletRequest request){ String message = null; AjaxJson j = new AjaxJson(); message = ""; String financialHql = "from UserFinancialEntity where userid=? and id <> ? and deleteFlag <> 1"; List userFinancialEntityList = userFinancialService.findHql(financialHql, userFinancial.getUserid(), userFinancial.getId()); if (StringUtil.isNotEmpty(userFinancial.getId())) { // 判断本人是否添加了重复的银行卡号 String financialByCardNumHql = "from UserFinancialEntity where cardNumber =? and userid =? and id <> ? and deleteFlag <> 1"; List userFinancialByCardNumEntityList = userFinancialService.findHql(financialByCardNumHql, userFinancial.getCardNumber(), userFinancial.getUserid(), userFinancial.getId()); if(userFinancialByCardNumEntityList.size() > 0) { message = "银行卡信息更新失败,银行卡号重复,请重新填写"; j.setSuccess(false); j.setMsg(message); return j; } if("1".equals(userFinancial.getIsdefault())) { UserFinancialEntity t = userFinancialService.get(UserFinancialEntity.class, userFinancial.getId()); try { MyBeanUtils.copyBeanNotNull2Bean(userFinancial, t); userFinancialService.saveOrUpdate(t); for(UserFinancialEntity userFinancialEntity : userFinancialEntityList) { userFinancialEntity.setIsdefault("0"); userFinancialService.saveOrUpdate(userFinancialEntity); } message = "银行卡信息更新成功"; j.setSuccess(true); systemService.addLog(message, Globals.Log_Type_UPDATE, Globals.Log_Leavel_INFO); } catch (Exception e) { e.printStackTrace(); message = "银行卡信息更新失败"; j.setSuccess(false); throw new BusinessException(e.getMessage()); } } else { if(userFinancialEntityList.size() == 0) { message = "请选择一张默认银行卡!"; j.setSuccess(false); j.setMsg(message); return j; } else { boolean haveDefault = false; for(UserFinancialEntity userFinancialEntity : userFinancialEntityList) { if("1".equals(userFinancialEntity.getIsdefault())) { haveDefault = true; break; } } if(haveDefault) { UserFinancialEntity t = userFinancialService.get(UserFinancialEntity.class, userFinancial.getId()); try { MyBeanUtils.copyBeanNotNull2Bean(userFinancial, t); userFinancialService.saveOrUpdate(t); message = "银行卡信息更新成功"; j.setSuccess(true); systemService.addLog(message, Globals.Log_Type_UPDATE, Globals.Log_Leavel_INFO); } catch (Exception e) { e.printStackTrace(); message = "银行卡信息更新失败"; j.setSuccess(false); throw new BusinessException(e.getMessage()); } } else { message = "请选择一张默认银行卡!"; j.setSuccess(false); j.setMsg(message); return j; } } } } else { // 判断本人是否添加了重复的银行卡号 String financialByCardNumHql = "from UserFinancialEntity where cardNumber =? and userid =? and deleteFlag <> 1"; List userFinancialByCardNumEntityList = userFinancialService.findHql(financialByCardNumHql, userFinancial.getCardNumber(), userFinancial.getUserid()); if(userFinancialByCardNumEntityList.size() > 0) { message = "银行卡信息添加失败,银行卡号重复,请重新填写"; j.setSuccess(false); j.setMsg(message); return j; } if("1".equals(userFinancial.getIsdefault())) { try { for(UserFinancialEntity userFinancialEntity : userFinancialEntityList) { userFinancialEntity.setIsdefault("0"); userFinancialService.saveOrUpdate(userFinancialEntity); } userFinancial.setDeleteFlag(Globals.Delete_Normal.toString()); userFinancial.setStatus(Globals.Enabled_Status.toString()); userFinancialService.save(userFinancial); message = "银行卡信息添加成功"; j.setSuccess(true); systemService.addLog(message, Globals.Log_Type_INSERT, Globals.Log_Leavel_INFO); } catch (Exception e) { e.printStackTrace(); message = "银行卡信息添加失败"; j.setSuccess(false); throw new BusinessException(e.getMessage()); } } else { if(userFinancialEntityList.size() == 0) { message = "请选择一张默认银行卡!"; j.setSuccess(false); j.setMsg(message); return j; } else { boolean haveDefault = false; for(UserFinancialEntity userFinancialEntity : userFinancialEntityList) { if("1".equals(userFinancialEntity.getIsdefault())) { haveDefault = true; break; } } if(haveDefault) { try { userFinancial.setDeleteFlag(Globals.Delete_Normal.toString()); userFinancial.setStatus(Globals.Enabled_Status.toString()); userFinancialService.save(userFinancial); message = "银行卡信息添加成功"; j.setSuccess(true); systemService.addLog(message, Globals.Log_Type_INSERT, Globals.Log_Leavel_INFO); } catch (Exception e) { e.printStackTrace(); message = "银行卡信息添加失败"; j.setSuccess(false); throw new BusinessException(e.getMessage()); } } else { message = "请选择一张默认银行卡!"; j.setSuccess(false); j.setMsg(message); return j; } } } } 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 = "银行卡信息删除成功"; try{ for(String id:ids.split(",")){ UserFinancialEntity userFinancial = systemService.getEntity(UserFinancialEntity.class, id); userFinancial.setDeleteFlag(Globals.Delete_Forbidden.toString()); userFinancialService.saveOrUpdate(userFinancial); systemService.addLog(message, Globals.Log_Type_UPDATE, Globals.Log_Leavel_INFO); j.setSuccess(true); } }catch(Exception e){ e.printStackTrace(); message = "银行卡信息删除失败"; j.setSuccess(false); 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 = "银行卡信息启用成功"; try{ for(String id:ids.split(",")){ UserFinancialEntity userFinancial = systemService.getEntity(UserFinancialEntity.class, id); userFinancial.setStatus(Globals.Enabled_Status.toString()); userFinancialService.saveOrUpdate(userFinancial); systemService.addLog(message, Globals.Log_Type_UPDATE, Globals.Log_Leavel_INFO); j.setSuccess(true); } }catch(Exception e){ e.printStackTrace(); message = "银行卡信息启用失败"; j.setSuccess(false); 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 = "银行卡信息停用成功"; try{ for(String id:ids.split(",")){ UserFinancialEntity userFinancial = systemService.getEntity(UserFinancialEntity.class, id); userFinancial.setStatus(Globals.Disabled_Status.toString()); userFinancialService.saveOrUpdate(userFinancial); systemService.addLog(message, Globals.Log_Type_UPDATE, Globals.Log_Leavel_INFO); j.setSuccess(true); } }catch(Exception e){ e.printStackTrace(); message = "银行卡信息停用失败"; j.setSuccess(false); throw new BusinessException(e.getMessage()); } j.setMsg(message); return j; } /** * 删除员工财务信息表 * * @return */ @RequestMapping(params = "doDel") @ResponseBody public AjaxJson doDel(UserFinancialEntity userFinancial, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); userFinancial = systemService.getEntity(UserFinancialEntity.class, userFinancial.getId()); message = "员工财务信息表删除成功"; try{ userFinancialService.delete(userFinancial); 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(",")){ UserFinancialEntity userFinancial = systemService.getEntity(UserFinancialEntity.class, id ); userFinancialService.delete(userFinancial); 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(UserFinancialEntity userFinancial, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); message = "员工财务信息表添加成功"; try{ userFinancialService.save(userFinancial); 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(UserFinancialEntity userFinancial, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); message = "员工财务信息表更新成功"; UserFinancialEntity t = userFinancialService.get(UserFinancialEntity.class, userFinancial.getId()); try { MyBeanUtils.copyBeanNotNull2Bean(userFinancial, t); userFinancialService.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(UserFinancialEntity userFinancial, HttpServletRequest req) { if (StringUtil.isNotEmpty(userFinancial.getId())) { userFinancial = userFinancialService.getEntity(UserFinancialEntity.class, userFinancial.getId()); req.setAttribute("userFinancialPage", userFinancial); } return new ModelAndView("cn/com/lzt/userfinancial/userFinancial-add"); } /** * 员工财务信息表编辑页面跳转 * * @return */ @RequestMapping(params = "goUpdate") public ModelAndView goUpdate(UserFinancialEntity userFinancial, HttpServletRequest req) { if (StringUtil.isNotEmpty(userFinancial.getId())) { userFinancial = userFinancialService.getEntity(UserFinancialEntity.class, userFinancial.getId()); req.setAttribute("userFinancialPage", userFinancial); } return new ModelAndView("cn/com/lzt/userfinancial/userFinancial-update"); } /** * 导入功能跳转 * * @return */ @RequestMapping(params = "upload") public ModelAndView upload(HttpServletRequest req) { req.setAttribute("controller_name","userFinancialController"); return new ModelAndView("common/upload/pub_excel_upload"); } /** * 导出excel * * @param request * @param response */ @RequestMapping(params = "exportXls") public String exportXls(UserFinancialEntity userFinancial,HttpServletRequest request,HttpServletResponse response , DataGrid dataGrid,ModelMap modelMap) { CriteriaQuery cq = new CriteriaQuery(UserFinancialEntity.class, dataGrid); org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, userFinancial, request.getParameterMap()); List userFinancials = this.userFinancialService.getListByCriteriaQuery(cq,false); modelMap.put(NormalExcelConstants.FILE_NAME,"员工财务信息表"); modelMap.put(NormalExcelConstants.CLASS,UserFinancialEntity.class); modelMap.put(NormalExcelConstants.PARAMS,new ExportParams("员工财务信息表列表", "导出人:"+ResourceUtil.getSessionUser().getRealName(), "导出信息")); modelMap.put(NormalExcelConstants.DATA_LIST,userFinancials); return NormalExcelConstants.JEECG_EXCEL_VIEW; } /** * 导出excel 使模板 * * @param request * @param response */ @RequestMapping(params = "exportXlsByT") public String exportXlsByT(UserFinancialEntity userFinancial,HttpServletRequest request,HttpServletResponse response , DataGrid dataGrid,ModelMap modelMap) { modelMap.put(NormalExcelConstants.FILE_NAME,"员工财务信息表"); modelMap.put(NormalExcelConstants.CLASS,UserFinancialEntity.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 listUserFinancialEntitys = ExcelImportUtil.importExcel(file.getInputStream(),UserFinancialEntity.class,params); for (UserFinancialEntity userFinancial : listUserFinancialEntitys) { userFinancialService.save(userFinancial); } 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 listUserFinancials=userFinancialService.getList(UserFinancialEntity.class); return listUserFinancials; } @RequestMapping(value = "/{id}", method = RequestMethod.GET) @ResponseBody public ResponseEntity get(@PathVariable("id") String id) { UserFinancialEntity task = userFinancialService.get(UserFinancialEntity.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 UserFinancialEntity userFinancial, UriComponentsBuilder uriBuilder) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(userFinancial); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 try{ userFinancialService.save(userFinancial); } catch (Exception e) { e.printStackTrace(); return new ResponseEntity(HttpStatus.NO_CONTENT); } //按照Restful风格约定,创建指向新任务的url, 也可以直接返回id或对象. String id = userFinancial.getId(); URI uri = uriBuilder.path("/rest/userFinancialController/" + 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 UserFinancialEntity userFinancial) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(userFinancial); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 try{ userFinancialService.saveOrUpdate(userFinancial); } 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) { userFinancialService.deleteEntityById(UserFinancialEntity.class, id); } }