package cn.com.lzt.budget.office.controller; import cn.com.lzt.budget.office.entity.BudgetOfficeEntity; import cn.com.lzt.budget.office.service.BudgetOfficeServiceI; import java.util.ArrayList; import java.util.List; import java.text.SimpleDateFormat; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.lang.StringUtils; 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.common.TreeChildCount; 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.pojo.base.TSDepart; import org.jeecgframework.web.system.service.SystemService; import org.jeecgframework.core.util.MyBeanUtils; import java.io.OutputStream; import org.jeecgframework.core.util.BrowserUtils; import org.jeecgframework.poi.excel.ExcelExportUtil; 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.TemplateExportParams; import org.jeecgframework.poi.excel.entity.vo.NormalExcelConstants; import org.jeecgframework.poi.excel.entity.vo.TemplateExcelConstants; import org.apache.poi.hssf.usermodel.HSSFWorkbook; 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 java.util.HashMap; import org.jeecgframework.core.util.ExceptionUtil; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Controller; 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.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 2020-08-28 19:37:13 * @version V1.0 * */ @Controller @RequestMapping("/budgetOfficeController") public class BudgetOfficeController extends BaseController { /** * Logger for this class */ private static final Logger logger = Logger.getLogger(BudgetOfficeController.class); @Autowired private BudgetOfficeServiceI budgetOfficeService; @Autowired private SystemService systemService; @Autowired private Validator validator; /** * 归口部门列表 页面跳转 * * @return */ @RequestMapping(params = "list") public ModelAndView list(HttpServletRequest request) { return new ModelAndView("cn/com/lzt/budget/office/budgetOfficeList"); } /** * easyui AJAX请求数据 * * @param request * @param response * @param dataGrid * @param user */ @RequestMapping(params = "datagrid") public void datagrid(BudgetOfficeEntity budgetOffice,HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid) { CriteriaQuery cq = new CriteriaQuery(BudgetOfficeEntity.class, dataGrid); //查询条件组装器 org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, budgetOffice, request.getParameterMap()); try{ String name =budgetOffice.getName(); if(StringUtils.isNotBlank(name)){ cq.like("name","%"+name+"%" ); budgetOffice.setName(null); } //自定义追加查询条件 }catch (Exception e) { throw new BusinessException(e.getMessage()); } cq.add(); this.budgetOfficeService.getDataGridReturn(cq, true); TagUtil.datagrid(response, dataGrid); } /** * 删除归口部门 * * @return */ @RequestMapping(params = "doDel") @ResponseBody public AjaxJson doDel(BudgetOfficeEntity budgetOffice, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); budgetOffice = systemService.getEntity(BudgetOfficeEntity.class, budgetOffice.getId()); message = "归口部门删除成功"; try{ budgetOfficeService.delete(budgetOffice); systemService.addLog(message, Globals.Log_Type_DEL, Globals.Log_Leavel_INFO); }catch (IllegalStateException e){ message =e.getMessage(); }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(",")){ BudgetOfficeEntity budgetOffice = systemService.getEntity(BudgetOfficeEntity.class, id ); budgetOfficeService.delete(budgetOffice); 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 = "doAdd") @ResponseBody public AjaxJson doAdd(BudgetOfficeEntity budgetOffice, HttpServletRequest request) { if(StringUtils.isNotBlank(budgetOffice.getId())){ return doUpdate(budgetOffice,request); } String message = null; AjaxJson j = new AjaxJson(); message = "归口部门添加成功"; try{ budgetOfficeService.save(budgetOffice); 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 = "doUpdate") @ResponseBody public AjaxJson doUpdate(BudgetOfficeEntity budgetOffice, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); message = "归口部门更新成功"; BudgetOfficeEntity t = budgetOfficeService.get(BudgetOfficeEntity.class, budgetOffice.getId()); try { MyBeanUtils.copyBeanNotNull2Bean(budgetOffice, t); budgetOfficeService.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(BudgetOfficeEntity budgetOffice, HttpServletRequest req) { if (StringUtil.isNotEmpty(budgetOffice.getId())) { budgetOffice = budgetOfficeService.getEntity(BudgetOfficeEntity.class, budgetOffice.getId()); req.setAttribute("budgetOfficePage", budgetOffice); } return new ModelAndView("cn/com/lzt/budget/office/budgetOffice-add"); } /** * 归口部门编辑页面跳转 * * @return */ @RequestMapping(params = "goUpdate") public ModelAndView goUpdate(BudgetOfficeEntity budgetOffice, HttpServletRequest req) { if (StringUtil.isNotEmpty(budgetOffice.getId())) { budgetOffice = budgetOfficeService.getEntity(BudgetOfficeEntity.class, budgetOffice.getId()); req.setAttribute("entity", budgetOffice); } return new ModelAndView("cn/com/lzt/budget/office/budgetOffice-add"); } /** * 导入功能跳转 * * @return */ @RequestMapping(params = "upload") public ModelAndView upload(HttpServletRequest req) { req.setAttribute("controller_name","budgetOfficeController"); return new ModelAndView("common/upload/pub_excel_upload"); } /** * 导出excel * * @param request * @param response */ @RequestMapping(params = "exportXls") public String exportXls(BudgetOfficeEntity budgetOffice,HttpServletRequest request,HttpServletResponse response , DataGrid dataGrid,ModelMap modelMap) { CriteriaQuery cq = new CriteriaQuery(BudgetOfficeEntity.class, dataGrid); org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, budgetOffice, request.getParameterMap()); List budgetOffices = this.budgetOfficeService.getListByCriteriaQuery(cq,false); modelMap.put(NormalExcelConstants.FILE_NAME,"归口部门"); modelMap.put(NormalExcelConstants.CLASS,BudgetOfficeEntity.class); modelMap.put(NormalExcelConstants.PARAMS,new ExportParams("归口部门列表", "导出人:"+ResourceUtil.getSessionUser().getRealName(), "导出信息")); modelMap.put(NormalExcelConstants.DATA_LIST,budgetOffices); return NormalExcelConstants.JEECG_EXCEL_VIEW; } /** * 导出excel 使模板 * * @param request * @param response */ @RequestMapping(params = "exportXlsByT") public String exportXlsByT(BudgetOfficeEntity budgetOffice,HttpServletRequest request,HttpServletResponse response , DataGrid dataGrid,ModelMap modelMap) { modelMap.put(NormalExcelConstants.FILE_NAME,"归口部门"); modelMap.put(NormalExcelConstants.CLASS,BudgetOfficeEntity.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 listBudgetOfficeEntitys = ExcelImportUtil.importExcel(file.getInputStream(),BudgetOfficeEntity.class,params); for (BudgetOfficeEntity budgetOffice : listBudgetOfficeEntitys) { budgetOfficeService.save(budgetOffice); } 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 listBudgetOffices=budgetOfficeService.getList(BudgetOfficeEntity.class); return listBudgetOffices; } @RequestMapping(value = "/{id}", method = RequestMethod.GET) @ResponseBody public ResponseEntity get(@PathVariable("id") String id) { BudgetOfficeEntity task = budgetOfficeService.get(BudgetOfficeEntity.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 BudgetOfficeEntity budgetOffice, UriComponentsBuilder uriBuilder) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(budgetOffice); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 try{ budgetOfficeService.save(budgetOffice); } catch (Exception e) { e.printStackTrace(); return new ResponseEntity(HttpStatus.NO_CONTENT); } //按照Restful风格约定,创建指向新任务的url, 也可以直接返回id或对象. String id = budgetOffice.getId(); URI uri = uriBuilder.path("/rest/budgetOfficeController/" + 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 BudgetOfficeEntity budgetOffice) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(budgetOffice); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 try{ budgetOfficeService.saveOrUpdate(budgetOffice); } 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) { budgetOfficeService.deleteEntityById(BudgetOfficeEntity.class, id); } @RequestMapping(params = "select") public ModelAndView select(HttpServletRequest request) { return new ModelAndView("cn/com/lzt/budget/office/budgetOffice-select"); } /** * easyui AJAX请求数据 * * @param request * @param response * @param dataGrid * @param user */ @RequestMapping(params = "selectDatagrid") public void selectDatagrid(BudgetOfficeEntity budgetOffice,HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid) { CriteriaQuery cq = new CriteriaQuery(BudgetOfficeEntity.class, dataGrid); //查询条件组装器 String name =budgetOffice.getName(); if(StringUtils.isNotBlank(name)){ cq.like("name","%"+name+"%" ); budgetOffice.setName(null); } org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, budgetOffice, request.getParameterMap()); try{ }catch (Exception e) { throw new BusinessException(e.getMessage()); } cq.add(); this.budgetOfficeService.getDataGridReturn(cq, true); TagUtil.datagrid(response, dataGrid); } }