package cn.com.lzt.budget.control.controller; import cn.com.lzt.budget.control.entity.BudgetControlPublishEntity; import cn.com.lzt.budget.control.entity.BudgetControlEntity; import cn.com.lzt.budget.control.service.BudgetControlServiceI; import cn.com.lzt.budget.control.page.BudgetControlPage; import cn.com.lzt.budget.control.entity.BudgetControlDetailEntity; import java.util.*; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import cn.com.lzt.budget.measure.entity.BudgetMeasureEntity; import org.apache.commons.lang.xwork.StringUtils; import org.apache.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; 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.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.ExceptionUtil; import org.jeecgframework.core.util.ResourceUtil; 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.springframework.ui.ModelMap; import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartHttpServletRequest; import java.io.IOException; 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 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 2021-02-16 09:02:00 * @version V1.0 * */ @Controller @RequestMapping("/budgetControlController") public class BudgetControlController extends BaseController { /** * Logger for this class */ private static final Logger logger = Logger.getLogger(BudgetControlController.class); @Autowired private BudgetControlServiceI budgetControlService; @Autowired private SystemService systemService; @Autowired private Validator validator; /** * 预算控制列表 页面跳转 * * @return */ @RequestMapping(params = "list") public ModelAndView list(HttpServletRequest request) { return new ModelAndView("cn/com/lzt/budget/control/budgetControlList"); } /** * easyui AJAX请求数据 * * @param request * @param response * @param dataGrid */ @RequestMapping(params = "datagrid") public void datagrid(BudgetControlEntity budgetControl,HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid) { CriteriaQuery cq = new CriteriaQuery(BudgetControlEntity.class, dataGrid); //查询条件组装器 org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, budgetControl); try{ //自定义追加查询条件 }catch (Exception e) { throw new BusinessException(e.getMessage()); } cq.add(); this.budgetControlService.getDataGridReturn(cq, true); TagUtil.datagrid(response, dataGrid); } /** * 删除预算控制 * * @return */ @RequestMapping(params = "doDel") @ResponseBody public AjaxJson doDel(BudgetControlEntity budgetControl, HttpServletRequest request) { AjaxJson j = new AjaxJson(); budgetControl = systemService.getEntity(BudgetControlEntity.class, budgetControl.getId()); String message = "预算控制删除成功"; try{ budgetControlService.delMain(budgetControl); 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){ AjaxJson j = new AjaxJson(); String message = "预算控制删除成功"; try{ for(String id:ids.split(",")){ BudgetControlEntity budgetControl = systemService.getEntity(BudgetControlEntity.class, id ); budgetControlService.delMain(budgetControl); 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(BudgetControlEntity budgetControl,BudgetControlPage budgetControlPage, HttpServletRequest request) { if(StringUtils.isNotBlank(budgetControl.getId())){ return doUpdate(budgetControl, budgetControlPage, request); } List budgetControlDetailList = budgetControlPage.getBudgetControlDetailList(); AjaxJson j = new AjaxJson(); String message = "添加成功"; try{ budgetControlService.addMain(budgetControl, budgetControlDetailList); 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; } /** * 更新预算控制 * @returnbh */ @RequestMapping(params = "doUpdate") @ResponseBody public AjaxJson doUpdate(BudgetControlEntity budgetControl,BudgetControlPage budgetControlPage, HttpServletRequest request) { List budgetControlDetailList = budgetControlPage.getBudgetControlDetailList(); AjaxJson j = new AjaxJson(); String message = "更新成功"; try{ budgetControlService.updateMain(budgetControl, budgetControlDetailList); 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(BudgetControlEntity budgetControl, HttpServletRequest req) { if (StringUtil.isNotEmpty(budgetControl.getId())) { budgetControl = budgetControlService.getEntity(BudgetControlEntity.class, budgetControl.getId()); req.setAttribute("entity", budgetControl); } return new ModelAndView("cn/com/lzt/budget/control/budgetControl-add"); } /** * 预算控制编辑页面跳转 * * @return */ @RequestMapping(params = "goUpdate") public ModelAndView goUpdate(BudgetControlEntity budgetControl, HttpServletRequest req) { if (StringUtil.isNotEmpty(budgetControl.getId())) { budgetControl = budgetControlService.getEntity(BudgetControlEntity.class, budgetControl.getId()); req.setAttribute("entity", budgetControl); } return new ModelAndView("cn/com/lzt/budget/control/budgetControl-add"); } /** * 加载明细列表[预算控制详情] * * @return */ @RequestMapping(params = "budgetControlDetailList") public ModelAndView budgetControlDetailList(BudgetControlEntity budgetControl, HttpServletRequest req) { //=================================================================================== //获取参数 Object id0 = budgetControl.getId(); //=================================================================================== //查询-预算控制详情 String hql0 = "from BudgetControlDetailEntity where 1 = 1 AND fK_ID =? "; try{ String type = budgetControl.getType(); if(StringUtils.equals(type,"0" )) {//成本控制方案 String hql = "from BudgetMeasureEntity where custom_code like 'A01_%' and (length(custom_code)<=9 or custom_code like 'A01A01A05___') order by custom_code"; List budgetMeasureEntityList = systemService.findHql(hql); req.setAttribute("budgetMeasureEntityList", budgetMeasureEntityList); }else {//1 专项控制方案 String hql = "from BudgetMeasureEntity where custom_code like 'B%' order by custom_code"; List budgetMeasureEntityList = systemService.findHql(hql); req.setAttribute("budgetMeasureEntityList", budgetMeasureEntityList); } List budgetControlDetailEntityList = systemService.findHql(hql0,id0); Map map = new HashMap<>(); for(BudgetControlDetailEntity detailEntity:budgetControlDetailEntityList){ map.put(detailEntity.getMeasureId(), detailEntity); } req.setAttribute("map", map); // req.setAttribute("budgetControlDetailList", budgetControlDetailEntityList); }catch(Exception e){ logger.info(e.getMessage()); } return new ModelAndView("cn/com/lzt/budget/control/budgetControlDetailList"); } /** * 导出excel * * @param request * @param response */ @RequestMapping(params = "exportXls") public String exportXls(BudgetControlEntity budgetControl,HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid,ModelMap map) { CriteriaQuery cq = new CriteriaQuery(BudgetControlEntity.class, dataGrid); //查询条件组装器 org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, budgetControl); try{ //自定义追加查询条件 }catch (Exception e) { throw new BusinessException(e.getMessage()); } cq.add(); List list=this.budgetControlService.getListByCriteriaQuery(cq, false); List pageList=new ArrayList(); if(list!=null&&list.size()>0){ for(BudgetControlEntity entity:list){ try{ BudgetControlPage page=new BudgetControlPage(); MyBeanUtils.copyBeanNotNull2Bean(entity,page); Object id0 = entity.getId(); String hql0 = "from BudgetControlDetailEntity where 1 = 1 AND fK_ID =? "; List budgetControlDetailEntityList = systemService.findHql(hql0,id0); page.setBudgetControlDetailList(budgetControlDetailEntityList); pageList.add(page); }catch(Exception e){ logger.info(e.getMessage()); } } } map.put(NormalExcelConstants.FILE_NAME,"预算控制"); map.put(NormalExcelConstants.CLASS,BudgetControlPage.class); map.put(NormalExcelConstants.PARAMS,new ExportParams("预算控制列表", "导出人:Jeecg", "导出信息")); map.put(NormalExcelConstants.DATA_LIST,pageList); return NormalExcelConstants.JEECG_EXCEL_VIEW; } /** * 通过excel导入数据 * @param request * @param * @return */ @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(2); params.setNeedSave(true); try { List list = ExcelImportUtil.importExcel(file.getInputStream(), BudgetControlPage.class, params); BudgetControlEntity entity1=null; for (BudgetControlPage page : list) { entity1=new BudgetControlEntity(); MyBeanUtils.copyBeanNotNull2Bean(page,entity1); budgetControlService.addMain(entity1, page.getBudgetControlDetailList()); } j.setMsg("文件导入成功!"); } catch (Exception e) { j.setMsg("文件导入失败!"); logger.error(ExceptionUtil.getExceptionMessage(e)); }finally{ try { file.getInputStream().close(); } catch (IOException e) { e.printStackTrace(); } } } return j; } /** * 导出excel 使模板 */ @RequestMapping(params = "exportXlsByT") public String exportXlsByT(ModelMap map) { map.put(NormalExcelConstants.FILE_NAME,"预算控制"); map.put(NormalExcelConstants.CLASS,BudgetControlPage.class); map.put(NormalExcelConstants.PARAMS,new ExportParams("预算控制列表", "导出人:"+ ResourceUtil.getSessionUser().getRealName(), "导出信息")); map.put(NormalExcelConstants.DATA_LIST,new ArrayList()); return NormalExcelConstants.JEECG_EXCEL_VIEW; } /** * 导入功能跳转 * * @return */ @RequestMapping(params = "upload") public ModelAndView upload(HttpServletRequest req) { req.setAttribute("controller_name", "budgetControlController"); return new ModelAndView("common/upload/pub_excel_upload"); } @RequestMapping(method = RequestMethod.GET) @ResponseBody public List list() { List listBudgetControls=budgetControlService.getList(BudgetControlEntity.class); return listBudgetControls; } @RequestMapping(value = "/{id}", method = RequestMethod.GET) @ResponseBody public ResponseEntity get(@PathVariable("id") String id) { BudgetControlEntity task = budgetControlService.get(BudgetControlEntity.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 BudgetControlPage budgetControlPage, UriComponentsBuilder uriBuilder) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(budgetControlPage); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 List budgetControlDetailList = budgetControlPage.getBudgetControlDetailList(); BudgetControlEntity budgetControl = new BudgetControlEntity(); try{ MyBeanUtils.copyBeanNotNull2Bean(budgetControl,budgetControlPage); }catch(Exception e){ logger.info(e.getMessage()); } budgetControlService.addMain(budgetControl, budgetControlDetailList); //按照Restful风格约定,创建指向新任务的url, 也可以直接返回id或对象. String id = budgetControlPage.getId(); URI uri = uriBuilder.path("/rest/budgetControlController/" + 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 BudgetControlPage budgetControlPage) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(budgetControlPage); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 List budgetControlDetailList = budgetControlPage.getBudgetControlDetailList(); BudgetControlEntity budgetControl = new BudgetControlEntity(); try{ MyBeanUtils.copyBeanNotNull2Bean(budgetControl,budgetControlPage); }catch(Exception e){ logger.info(e.getMessage()); } budgetControlService.updateMain(budgetControl, budgetControlDetailList); //按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) { BudgetControlEntity budgetControl = budgetControlService.get(BudgetControlEntity.class, id); budgetControlService.delMain(budgetControl); } @RequestMapping(params = "publish") @ResponseBody public AjaxJson publish(BudgetControlEntity controlEntity, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); message = "下发成功"; try{ String controlId = controlEntity.getId(); String entityIds=request.getParameter("entityIds"); String type=request.getParameter("type"); String[] entityIdArray = StringUtil.splitString(entityIds, ","); List saveList = new ArrayList<>(); for(String entityId :entityIdArray){ String sql = "select 1 from t_b_budget_control_publish where entity_id=? and control_type=? "; List controlEntityList = systemService.findListbySql(sql,entityId,type); if(controlEntityList.size()>0){ j.setSuccess(false); j.setMsg("下发失败"); return j; } BudgetControlPublishEntity contolPublishEntity = new BudgetControlPublishEntity(); contolPublishEntity.setControlId(controlId); contolPublishEntity.setEntityId(entityId); contolPublishEntity.setControlType(type); saveList.add(contolPublishEntity); } systemService.batchSave(saveList); }catch(Exception e){ e.printStackTrace(); message = "下发失败"; j.setSuccess(false); } j.setMsg(message); return j; } @RequestMapping(params = "cancel") @ResponseBody public AjaxJson cancel(BudgetControlEntity controlEntity, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); message = "撤销成功"; try{ String controlId = controlEntity.getId(); String entityIds=request.getParameter("entityIds"); String sql = "delete from t_b_budget_control_publish where entity_id=? and control_id=? "; String[] entityIdArray = StringUtil.splitString(entityIds, ","); for(String entityId :entityIdArray){ systemService.executeSql(sql,entityId,controlId); } }catch(Exception e){ e.printStackTrace(); message = "撤销失败"; throw new BusinessException(e.getMessage()); } j.setMsg(message); return j; } }