package cn.com.lzt.extattribute.controller; import cn.com.lzt.extattribute.entity.ExtAttributeEntity; import cn.com.lzt.extattribute.page.ExtAttributePage; import cn.com.lzt.extattribute.service.ExtAttributeServiceI; import cn.com.lzt.extattributedefset.entity.ExtAttributeDefsetEntity; 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.*; 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 javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.validation.ConstraintViolation; import javax.validation.Validator; import java.io.IOException; import java.net.URI; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.Set; /** * @Title: Controller * @Description: 扩展属性设置 * @author onlineGenerator * @date 2019-05-29 16:47:12 * @version V1.0 * */ @Controller @RequestMapping("/extAttributeController") public class ExtAttributeController extends BaseController { /** * Logger for this class */ private static final Logger logger = Logger.getLogger(ExtAttributeController.class); @Autowired private ExtAttributeServiceI extAttributeService; @Autowired private SystemService systemService; @Autowired private Validator validator; /** * 扩展属性设置列表 页面跳转 * * @return */ @RequestMapping(params = "list") public ModelAndView list(HttpServletRequest request) { return new ModelAndView("cn/com/lzt/extattribute/extAttributeList"); } /** * easyui AJAX请求数据 * * @param request * @param response * @param dataGrid * @param user */ @RequestMapping(params = "datagrid") public void datagrid(ExtAttributeEntity extAttribute,HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid) { CriteriaQuery cq = new CriteriaQuery(ExtAttributeEntity.class, dataGrid); //查询条件组装器 org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, extAttribute); try{ //自定义追加查询条件 }catch (Exception e) { throw new BusinessException(e.getMessage()); } cq.add(); this.extAttributeService.getDataGridReturn(cq, true); TagUtil.datagrid(response, dataGrid); } /** * 删除扩展属性设置 * * @return */ @RequestMapping(params = "doDel") @ResponseBody public AjaxJson doDel(ExtAttributeEntity extAttribute, HttpServletRequest request) { AjaxJson j = new AjaxJson(); extAttribute = systemService.getEntity(ExtAttributeEntity.class, extAttribute.getId()); String message = "扩展属性设置删除成功"; try{ extAttributeService.delMain(extAttribute); 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(",")){ ExtAttributeEntity extAttribute = systemService.getEntity(ExtAttributeEntity.class, id ); extAttributeService.delMain(extAttribute); 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(ExtAttributeEntity extAttribute,ExtAttributePage extAttributePage, HttpServletRequest request) { List extAttributeDefsetList = extAttributePage.getExtAttributeDefsetList(); AjaxJson j = new AjaxJson(); String message = "添加成功"; try{ if(!checkTableExsit(extAttributePage.getTablename())) { j.setSuccess(false); message = "扩展属性设置添加失败,数据库表:"+extAttributePage.getTablename()+"不存在,请重新填写【单据档案表名】"; }else if(!checkTableSettingExsit(extAttributePage.getTablename())){ j.setSuccess(false); message = "扩展属性设置添加失败,数据库表:"+extAttributePage.getTablename()+"的扩展属性设置已经存在,请不要重复设置"; }else{ extAttributeService.addMain(extAttribute, extAttributeDefsetList); 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; } //校验成功,返回true private boolean checkTableExsit(String tablename) { boolean success = true; try { String sql = "SELECT COUNT(1) as count FROM information_schema.tables WHERE table_name = ?"; List> resList = systemService.findForJdbc(sql,tablename); if(resList.get(0).get("count").toString().equals("0")) success = false; }catch(Exception e) { success = false; } return success; } //校验成功,返回true private boolean checkTableSettingExsit(String tablename) { boolean success = true; try { String sql = "SELECT COUNT(1) as count FROM t_s_ext_attribute WHERE tablename = ?"; List> resList = systemService.findForJdbc(sql,tablename); if(Integer.parseInt(resList.get(0).get("count").toString()) > 0) success = false; }catch(Exception e) { logger.error(e); success = false; } return success; } /** * 更新扩展属性设置 * * @param ids * @return */ @RequestMapping(params = "doUpdate") @ResponseBody public AjaxJson doUpdate(ExtAttributeEntity extAttribute,ExtAttributePage extAttributePage, HttpServletRequest request) { List extAttributeDefsetList = extAttributePage.getExtAttributeDefsetList(); AjaxJson j = new AjaxJson(); String message = "更新成功"; try{ extAttributeService.updateMain(extAttribute, extAttributeDefsetList); 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(ExtAttributeEntity extAttribute, HttpServletRequest req) { if (StringUtil.isNotEmpty(extAttribute.getId())) { extAttribute = extAttributeService.getEntity(ExtAttributeEntity.class, extAttribute.getId()); req.setAttribute("extAttributePage", extAttribute); } return new ModelAndView("cn/com/lzt/extattribute/extAttribute-add"); } /** * 扩展属性设置编辑页面跳转 * * @return */ @RequestMapping(params = "goUpdate") public ModelAndView goUpdate(ExtAttributeEntity extAttribute, HttpServletRequest req) { if (StringUtil.isNotEmpty(extAttribute.getId())) { extAttribute = extAttributeService.getEntity(ExtAttributeEntity.class, extAttribute.getId()); req.setAttribute("extAttributePage", extAttribute); } return new ModelAndView("cn/com/lzt/extattribute/extAttribute-update"); } /** * 加载明细列表[扩展属性设置明细] * * @return */ @RequestMapping(params = "extAttributeDefsetNumList") public ModelAndView extAttributeDefsetNumList(ExtAttributeEntity extAttribute, HttpServletRequest req) { String datatype = "num"; //=================================================================================== //获取参数 Object id0 = extAttribute.getId(); //=================================================================================== //查询-扩展属性设置明细 String hql0 = "from ExtAttributeDefsetEntity where 1 = 1 AND eXTATTRIBUTEID =? and datatype=? "; try{ List extAttributeDefsetEntityList = systemService.findHql(hql0,id0,datatype); if(extAttributeDefsetEntityList.size()==0) { extAttributeDefsetEntityList = buildNewDefSetList(datatype); } req.setAttribute("extAttributeDefsetList", extAttributeDefsetEntityList); }catch(Exception e){ logger.info(e.getMessage()); } return new ModelAndView("cn/com/lzt/extattributedefset/extAttributeDefsetNumList"); } /** * 加载明细列表[扩展属性设置明细] * * @return */ @RequestMapping(params = "extAttributeDefsetStrList") public ModelAndView extAttributeDefsetStrList(ExtAttributeEntity extAttribute, HttpServletRequest req) { String datatype = "str"; //=================================================================================== //获取参数 Object id0 = extAttribute.getId(); //=================================================================================== //查询-扩展属性设置明细 String hql0 = "from ExtAttributeDefsetEntity where 1 = 1 AND eXTATTRIBUTEID =? and datatype=? "; try{ List extAttributeDefsetEntityList = systemService.findHql(hql0,id0,datatype); if(extAttributeDefsetEntityList.size()==0) { extAttributeDefsetEntityList = buildNewDefSetList(datatype); } req.setAttribute("extAttributeDefsetList", extAttributeDefsetEntityList); }catch(Exception e){ logger.info(e.getMessage()); } return new ModelAndView("cn/com/lzt/extattributedefset/extAttributeDefsetStrList"); } private List buildNewDefSetList(String datatype){ List setList = new ArrayList(); for(int i = 1; i <= 10 ; i++) { ExtAttributeDefsetEntity newAttri = new ExtAttributeDefsetEntity(); newAttri.setTablefieldname("def"+datatype+i); newAttri.setDatatype(datatype); setList.add(newAttri); } return setList; } /** * 导出excel * * @param request * @param response */ @RequestMapping(params = "exportXls") public String exportXls(ExtAttributeEntity extAttribute,HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid,ModelMap map) { CriteriaQuery cq = new CriteriaQuery(ExtAttributeEntity.class, dataGrid); //查询条件组装器 org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, extAttribute); try{ //自定义追加查询条件 }catch (Exception e) { throw new BusinessException(e.getMessage()); } cq.add(); List list=this.extAttributeService.getListByCriteriaQuery(cq, false); List pageList=new ArrayList(); if(list!=null&&list.size()>0){ for(ExtAttributeEntity entity:list){ try{ ExtAttributePage page=new ExtAttributePage(); MyBeanUtils.copyBeanNotNull2Bean(entity,page); Object id0 = entity.getId(); String hql0 = "from ExtAttributeDefsetEntity where 1 = 1 AND eXTATTRIBUTEID =? "; List extAttributeDefsetEntityList = systemService.findHql(hql0,id0); page.setExtAttributeDefsetList(extAttributeDefsetEntityList); pageList.add(page); }catch(Exception e){ logger.info(e.getMessage()); } } } map.put(NormalExcelConstants.FILE_NAME,"扩展属性设置"); map.put(NormalExcelConstants.CLASS,ExtAttributePage.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(), ExtAttributePage.class, params); ExtAttributeEntity entity1=null; for (ExtAttributePage page : list) { entity1=new ExtAttributeEntity(); MyBeanUtils.copyBeanNotNull2Bean(page,entity1); extAttributeService.addMain(entity1, page.getExtAttributeDefsetList()); } 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,ExtAttributePage.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", "extAttributeController"); return new ModelAndView("common/upload/pub_excel_upload"); } @RequestMapping(method = RequestMethod.GET) @ResponseBody public List list() { List listExtAttributes=extAttributeService.getList(ExtAttributeEntity.class); return listExtAttributes; } @RequestMapping(value = "/{id}", method = RequestMethod.GET) @ResponseBody public ResponseEntity get(@PathVariable("id") String id) { ExtAttributeEntity task = extAttributeService.get(ExtAttributeEntity.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 ExtAttributePage extAttributePage, UriComponentsBuilder uriBuilder) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(extAttributePage); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 List extAttributeDefsetList = extAttributePage.getExtAttributeDefsetList(); ExtAttributeEntity extAttribute = new ExtAttributeEntity(); try{ MyBeanUtils.copyBeanNotNull2Bean(extAttribute,extAttributePage); }catch(Exception e){ logger.info(e.getMessage()); } extAttributeService.addMain(extAttribute, extAttributeDefsetList); //按照Restful风格约定,创建指向新任务的url, 也可以直接返回id或对象. String id = extAttributePage.getId(); URI uri = uriBuilder.path("/rest/extAttributeController/" + 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 ExtAttributePage extAttributePage) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(extAttributePage); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 List extAttributeDefsetList = extAttributePage.getExtAttributeDefsetList(); ExtAttributeEntity extAttribute = new ExtAttributeEntity(); try{ MyBeanUtils.copyBeanNotNull2Bean(extAttribute,extAttributePage); }catch(Exception e){ logger.info(e.getMessage()); } extAttributeService.updateMain(extAttribute, extAttributeDefsetList); //按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) { ExtAttributeEntity extAttribute = extAttributeService.get(ExtAttributeEntity.class, id); extAttributeService.delMain(extAttribute); } }