package com.zcloud.controller.tzsb; import com.zcloud.controller.base.BaseController; import com.zcloud.controller.bus.ImgFilesController; import com.zcloud.entity.Page; import com.zcloud.entity.PageData; import com.zcloud.service.bus.ImgFilesService; import com.zcloud.service.tzsb.SpecialEquipmentAqxjService; import com.zcloud.util.DateUtil; import com.zcloud.util.Jurisdiction; import com.zcloud.util.ObjectExcelView; import com.zcloud.util.Tools; import org.apache.shiro.authz.annotation.RequiresPermissions; 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.RequestParam; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.multipart.MultipartFile; import org.springframework.web.servlet.ModelAndView; import java.util.*; /** * 说明:特种设备安全巡检管理 * 作者:luoxiaobao * 时间:2021-06-19 * 官网:www.zcloudchina.com */ @Controller @RequestMapping("/specialequipmentaqxj") public class SpecialEquipmentAqxjController extends BaseController { @Autowired private SpecialEquipmentAqxjService specialequipmentaqxjService; @Autowired private ImgFilesController imgFilesController; @Autowired private ImgFilesService imgfilesService; /**新增 * @param * @throws Exception */ @RequestMapping(value="/add") @RequiresPermissions("specialequipmentaqxj:add") @ResponseBody public Object add(@RequestParam(value="FFILE",required=false) MultipartFile[] FILES, @RequestParam(value="TYPE",required=false) String[] TYPE) throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("SPECIALEQUIPMENTAQXJ_ID", this.get32UUID()); //主键 pd.put("CREATOR", Jurisdiction.getUsername()); //添加人 pd.put("CREATTIME", DateUtil.date2Str(new Date())); //添加时间 pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人 pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间 pd.put("ISDELETE", 0); //是否删除 1-是 0-否 pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); //企业ID specialequipmentaqxjService.save(pd); List fileList = new ArrayList(); String type = ""; for (int i = 0; i < TYPE.length; i++) { type = TYPE[i]; fileList.add(FILES[i]); if (i!=TYPE.length-1 && !TYPE[i].equals(TYPE[i+1])) { MultipartFile[] fileArr = new MultipartFile[fileList.size()]; imgFilesController.finish(fileList.toArray(fileArr),type,pd.getString("SPECIALEQUIPMENTAQXJ_ID")); fileList.clear(); } } if (fileList.size()>0) { MultipartFile[] fileArr = new MultipartFile[fileList.size()]; imgFilesController.finish(fileList.toArray(fileArr),type,pd.getString("SPECIALEQUIPMENTAQXJ_ID")); } map.put("pd", pd); map.put("result", errInfo); return map; } /**删除 * @param * @throws Exception */ @RequestMapping(value="/delete") @RequiresPermissions("specialequipmentaqxj:del") @ResponseBody public Object delete() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人 pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间 specialequipmentaqxjService.delete(pd); map.put("result", errInfo); //返回结果 return map; } /**修改 * @param * @throws Exception */ @RequestMapping(value="/edit") @RequiresPermissions("specialequipmentaqxj:edit") @ResponseBody public Object edit() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人 pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间 specialequipmentaqxjService.edit(pd); map.put("pd", pd); map.put("result", errInfo); return map; } /**列表 * @param page * @throws Exception */ @RequestMapping(value="/list") @RequiresPermissions("specialequipmentaqxj:list") @ResponseBody public Object list(Page page) throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); String KEYWORDS = pd.getString("KEYWORDS"); //关键词检索条件 if(Tools.notEmpty(KEYWORDS))pd.put("KEYWORDS", KEYWORDS.trim()); pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); //企业ID page.setPd(pd); List varList = specialequipmentaqxjService.list(page); //列出SpecialEquipmentAqxj列表 map.put("varList", varList); map.put("page", page); map.put("result", errInfo); return map; } /**列表(通过特种设备ID获取数据) * @param page * @throws Exception */ @RequestMapping(value="/listByEquipment") @RequiresPermissions("specialequipmentaqxj:list") @ResponseBody public Object listByEquipment(Page page) throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); String KEYWORDS = pd.getString("KEYWORDS"); //关键词检索条件 if(Tools.notEmpty(KEYWORDS))pd.put("KEYWORDS", KEYWORDS.trim()); page.setPd(pd); List varList = specialequipmentaqxjService.equipmentlistPage(page); //列出SpecialEquipmentAqxj列表 map.put("varList", varList); map.put("page", page); map.put("result", errInfo); return map; } /**去修改页面获取数据 * @param * @throws Exception */ @RequestMapping(value="/goEdit") @RequiresPermissions("specialequipmentaqxj:edit") @ResponseBody public Object goEdit() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd = specialequipmentaqxjService.findById(pd); //根据ID读取 PageData pd2 = new PageData(); pd2.put("FOREIGN_KEY", pd.getString("SPECIALEQUIPMENTAQXJ_ID")); pd2.put("TYPE",15); List faultImgs = imgfilesService.listAll(pd2); //特种设备故障照片 pd2 = new PageData(); pd2.put("FOREIGN_KEY", pd.getString("SPECIALEQUIPMENTAQXJ_ID")); pd2.put("TYPE",16); List handleImgs = imgfilesService.listAll(pd2); //特种设备故障处理后照片 pd2 = new PageData(); pd2.put("FOREIGN_KEY", pd.getString("SPECIALEQUIPMENTAQXJ_ID")); pd2.put("TYPE",17); List inspectionImgs = imgfilesService.listAll(pd2); //特种设备巡检照片 map.put("pd", pd); map.put("faultImgs", faultImgs); map.put("handleImgs", handleImgs); map.put("inspectionImgs", inspectionImgs); map.put("result", errInfo); return map; } /**批量删除 * @param * @throws Exception */ @RequestMapping(value="/deleteAll") @RequiresPermissions("specialequipmentaqxj:del") @ResponseBody public Object deleteAll() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人 pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间 String DATA_IDS = pd.getString("DATA_IDS"); if(Tools.notEmpty(DATA_IDS)){ String ArrayDATA_IDS[] = DATA_IDS.split(","); pd.put("ArrayDATA_IDS", ArrayDATA_IDS); //待删除ids specialequipmentaqxjService.deleteAll(pd); errInfo = "success"; }else{ errInfo = "fail"; } map.put("result", errInfo); //返回结果 return map; } /**导出到excel * @param * @throws Exception */ @RequestMapping(value="/excel") @RequiresPermissions("toExcel") public ModelAndView exportExcel() throws Exception{ ModelAndView mv = new ModelAndView(); PageData pd = new PageData(); pd = this.getPageData(); Map dataMap = new HashMap(); List titles = new ArrayList(); titles.add("特种设备信息ID"); //1 titles.add("巡检人"); //2 titles.add("巡检时间"); //3 titles.add("巡检内容"); //4 titles.add("是否有故障"); //5 titles.add("是否删除(0:有效 1:删除)"); //6 titles.add("添加人"); //7 titles.add("添加时间"); //8 titles.add("修改人"); //9 titles.add("修改时间"); //10 dataMap.put("titles", titles); pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); //企业ID List varOList = specialequipmentaqxjService.listAll(pd); List varList = new ArrayList(); for(int i=0;i