package cn.com.lzt.clothing.onhand.controller; import cn.com.lzt.clothing.onhand.entity.ClothingOnhandEntity; import cn.com.lzt.clothing.onhand.service.ClothingOnhandServiceI; import cn.com.lzt.common.util.UserUtil; import com.xcgl.utils.XcglDateUtils; import org.apache.commons.lang.xwork.StringUtils; 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.pojo.base.TSUser; 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.text.SimpleDateFormat; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.Set; /** * @Title: Controller * @Description: 项目服装存量 * @author onlineGenerator * @date 2019-10-08 09:38:06 * @version V1.0 * */ @Controller @RequestMapping("/clothingOnhandController") public class ClothingOnhandController extends BaseController { /** * Logger for this class */ private static final Logger logger = Logger.getLogger(ClothingOnhandController.class); @Autowired private ClothingOnhandServiceI clothingOnhandService; @Autowired private SystemService systemService; @Autowired private Validator validator; /** * 项目服装存量列表 页面跳转 * * @return */ @RequestMapping(params = "list") public ModelAndView list(HttpServletRequest request) { return new ModelAndView("cn/com/lzt/clothing/onhand/clothingOnhandList"); } /** * easyui AJAX请求数据 * * @param request * @param response * @param dataGrid * @param user */ @RequestMapping(params = "datagrid") public void datagrid(ClothingOnhandEntity clothingOnhand,HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid) { CriteriaQuery cq = new CriteriaQuery(ClothingOnhandEntity.class, dataGrid); TSUser user = ResourceUtil.getSessionUser(); boolean isproject = UserUtil.isProjectUser(user.getId()); if(isproject) { //查询所属组织对应的领料点 String sql = " select id from t_b_warehouse where responsible_person = '"+user.getId()+"' "; List ids = systemService.findListbySql(sql); if(ids.size() > 0) { cq.in("warehouseid", ids.toArray()); //设置查询的状态为闲置 //clothingOnhand.setUsingstatus("0"); }else { //无权限,则不允许查询到 cq.eq("warehouseid", "1"); } } try{ //自定义追加查询条件 String query_startdate_begin = request.getParameter("startdate_begin"); String query_startdate_end = request.getParameter("startdate_end"); String clothingname = request.getParameter("clothingname"); String warehousename = request.getParameter("warehousename"); //查询条件组装器 if(StringUtils.isNotBlank(clothingname)){ //模糊查询 cq.like("clothingname", "%"+clothingname+"%"); clothingOnhand.setClothingname(null); } if(StringUtils.isNotBlank(warehousename)){ //模糊查询 cq.like("warehousename", "%"+warehousename+"%"); clothingOnhand.setWarehousename(null); } if(StringUtil.isNotEmpty(query_startdate_begin)){ cq.ge("startdate", new SimpleDateFormat("yyyy-MM-dd").parse(query_startdate_begin)); } if(StringUtil.isNotEmpty(query_startdate_end)){ cq.le("startdate", new SimpleDateFormat("yyyy-MM-dd").parse(query_startdate_end)); } //查询条件组装器 org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, clothingOnhand, request.getParameterMap()); }catch (Exception e) { throw new BusinessException(e.getMessage()); } cq.add(); this.clothingOnhandService.getDataGridReturn(cq, true); TagUtil.datagrid(response, dataGrid); } /** * 删除项目服装存量 * * @return */ @RequestMapping(params = "doDel") @ResponseBody public AjaxJson doDel(ClothingOnhandEntity clothingOnhand, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); clothingOnhand = systemService.getEntity(ClothingOnhandEntity.class, clothingOnhand.getId()); message = "项目服装存量删除成功"; try{ clothingOnhandService.delete(clothingOnhand); 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(",")){ ClothingOnhandEntity clothingOnhand = systemService.getEntity(ClothingOnhandEntity.class, id ); clothingOnhandService.delete(clothingOnhand); 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(ClothingOnhandEntity clothingOnhand, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); message = "项目服装存量添加成功"; try{ List existsEntityList = systemService.findHql( " from ClothingOnhandEntity where clothingid =? and warehouseid =? and startdate = ? ", clothingOnhand.getClothingid(), clothingOnhand.getWarehouseid(),clothingOnhand.getStartdate()); if(existsEntityList.size() > 0) { j.setSuccess(false); message = "项目服装存量添加失败,服装【"+clothingOnhand.getClothingname()+"】已经在领料点【"+clothingOnhand.getWarehousename()+"】有存量信息,请不要重复录入"; }else { clothingOnhand.setExchangedate(XcglDateUtils.addDateDay(clothingOnhand.getStartdate(), 365*2)); clothingOnhandService.save(clothingOnhand); 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(ClothingOnhandEntity clothingOnhand, HttpServletRequest request) { String message = null; AjaxJson j = new AjaxJson(); message = "项目服装存量更新成功"; ClothingOnhandEntity t = clothingOnhandService.get(ClothingOnhandEntity.class, clothingOnhand.getId()); try { List existsEntityList = systemService.findHql(" from ClothingOnhandEntity where clothingid = ? " + " and warehouseid =? and id <> ? and startdate =? and usingstatus = ? ", clothingOnhand.getClothingid(), clothingOnhand.getWarehouseid(),clothingOnhand.getId(),clothingOnhand.getStartdate(),clothingOnhand.getUsingstatus()); if(existsEntityList.size() > 0) { j.setSuccess(false); message = "项目服装存量添加失败
服装【"+clothingOnhand.getClothingname()+"】已经在领料点【"+clothingOnhand.getWarehousename()+"】有存量信息,请不要重复录入"; }else { MyBeanUtils.copyBeanNotNull2Bean(clothingOnhand, t); clothingOnhandService.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(ClothingOnhandEntity clothingOnhand, HttpServletRequest req) { if (StringUtil.isNotEmpty(clothingOnhand.getId())) { clothingOnhand = clothingOnhandService.getEntity(ClothingOnhandEntity.class, clothingOnhand.getId()); req.setAttribute("clothingOnhandPage", clothingOnhand); } return new ModelAndView("cn/com/lzt/clothing/onhand/clothingOnhand-add"); } /** * 项目服装存量编辑页面跳转 * * @return */ @RequestMapping(params = "goUpdate") public ModelAndView goUpdate(ClothingOnhandEntity clothingOnhand, HttpServletRequest req) { if (StringUtil.isNotEmpty(clothingOnhand.getId())) { clothingOnhand = clothingOnhandService.getEntity(ClothingOnhandEntity.class, clothingOnhand.getId()); req.setAttribute("clothingOnhandPage", clothingOnhand); } return new ModelAndView("cn/com/lzt/clothing/onhand/clothingOnhand-update"); } /** * 导入功能跳转 * * @return */ @RequestMapping(params = "upload") public ModelAndView upload(HttpServletRequest req) { req.setAttribute("controller_name","clothingOnhandController"); return new ModelAndView("common/upload/pub_excel_upload"); } /** * 导出excel * * @param request * @param response */ @RequestMapping(params = "exportXls") public String exportXls(ClothingOnhandEntity clothingOnhand,HttpServletRequest request,HttpServletResponse response , DataGrid dataGrid,ModelMap modelMap) { CriteriaQuery cq = new CriteriaQuery(ClothingOnhandEntity.class, dataGrid); org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, clothingOnhand, request.getParameterMap()); List clothingOnhands = this.clothingOnhandService.getListByCriteriaQuery(cq,false); modelMap.put(NormalExcelConstants.FILE_NAME,"项目服装存量"); modelMap.put(NormalExcelConstants.CLASS,ClothingOnhandEntity.class); modelMap.put(NormalExcelConstants.PARAMS,new ExportParams("项目服装存量列表", "导出人:"+ResourceUtil.getSessionUser().getRealName(), "导出信息")); modelMap.put(NormalExcelConstants.DATA_LIST,clothingOnhands); return NormalExcelConstants.JEECG_EXCEL_VIEW; } /** * 导出excel 使模板 * * @param request * @param response */ @RequestMapping(params = "exportXlsByT") public String exportXlsByT(ClothingOnhandEntity clothingOnhand,HttpServletRequest request,HttpServletResponse response , DataGrid dataGrid,ModelMap modelMap) { modelMap.put(NormalExcelConstants.FILE_NAME,"项目服装存量"); modelMap.put(NormalExcelConstants.CLASS,ClothingOnhandEntity.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 listClothingOnhandEntitys = ExcelImportUtil.importExcel(file.getInputStream(),ClothingOnhandEntity.class,params); for (ClothingOnhandEntity clothingOnhand : listClothingOnhandEntitys) { clothingOnhandService.save(clothingOnhand); } 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 listClothingOnhands=clothingOnhandService.getList(ClothingOnhandEntity.class); return listClothingOnhands; } @RequestMapping(value = "/{id}", method = RequestMethod.GET) @ResponseBody public ResponseEntity get(@PathVariable("id") String id) { ClothingOnhandEntity task = clothingOnhandService.get(ClothingOnhandEntity.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 ClothingOnhandEntity clothingOnhand, UriComponentsBuilder uriBuilder) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(clothingOnhand); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 try{ clothingOnhandService.save(clothingOnhand); } catch (Exception e) { e.printStackTrace(); return new ResponseEntity(HttpStatus.NO_CONTENT); } //按照Restful风格约定,创建指向新任务的url, 也可以直接返回id或对象. String id = clothingOnhand.getId(); URI uri = uriBuilder.path("/rest/clothingOnhandController/" + 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 ClothingOnhandEntity clothingOnhand) { //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息. Set> failures = validator.validate(clothingOnhand); if (!failures.isEmpty()) { return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST); } //保存 try{ clothingOnhandService.saveOrUpdate(clothingOnhand); } 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) { clothingOnhandService.deleteEntityById(ClothingOnhandEntity.class, id); } }