package com.zcloud.controller.gf; import com.zcloud.controller.base.BaseController; import com.zcloud.entity.Page; import com.zcloud.entity.PageData; import com.zcloud.service.gf.GFBlindBoardAcceptUserService; import com.zcloud.service.gf.GFBlindBoardInfoService; import com.zcloud.service.gf.GFBlindBoardService; 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.ResponseBody; import org.springframework.web.servlet.ModelAndView; import javax.annotation.Resource; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; /** * 说明:盲板作业 * 作者:luoxiaobao * 时间:2021-08-23 * 官网:www.zcloudchina.com */ @Controller @RequestMapping("/gfBlindBoard") public class GFBlindBoardController extends BaseController { @Resource private GFBlindBoardService GFblindboardService; @Autowired private GFBlindBoardInfoService GFblindBoardInfoService; @Autowired private GFBlindBoardAcceptUserService blindboardacceptuserService; /**新增 * @param * @throws Exception */ @RequestMapping(value="/add") @RequiresPermissions("blindboard:add") @ResponseBody public Object add() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("BLINDBOARD_ID", this.get32UUID()); //主键 GFblindboardService.save(pd); map.put("result", errInfo); return map; } /**删除 * @throws Exception */ @RequestMapping(value="/delete") @RequiresPermissions("blindboard:del") @ResponseBody public Object delete() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); GFblindboardService.delete(pd); map.put("result", errInfo); //返回结果 return map; } /**修改 * @param * @throws Exception */ @RequestMapping(value="/edit") @RequiresPermissions("blindboard:edit") @ResponseBody public Object edit() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); GFblindboardService.edit(pd); map.put("result", errInfo); return map; } /**列表 * @param page * @throws Exception */ @RequestMapping(value="/list") @RequiresPermissions("blindboard: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 pd.put("ISMAIN", Jurisdiction.getIS_MAIN()); pd.put("ISSUPERVISE", Jurisdiction.getISSUPERVISE()); pd.put("DEPARTMENT_ID", Jurisdiction.getDEPARTMENT_ID()); String DEPTIDS = pd.getString("DEPTIDS"); if(Tools.notEmpty(DEPTIDS)) { String DEPT_IDS[] = DEPTIDS.split(","); pd.put("DEPT_IDS", DEPT_IDS); } String STARTTIME = pd.getString("STARTTIME"); // 关键词检索条件 if (Tools.notEmpty(STARTTIME)) pd.put("STARTTIME", STARTTIME.trim()); String ENDTIME = pd.getString("ENDTIME"); // 关键词检索条件 if (Tools.notEmpty(ENDTIME)) pd.put("ENDTIME", ENDTIME + " 23:59:59"); page.setPd(pd); List varList = GFblindboardService.list(page); //列出BlindBoard列表 map.put("varList", varList); map.put("page", page); map.put("result", errInfo); return map; } /**去修改页面获取数据 * @param * @throws Exception */ @RequestMapping(value="/goEdit") @ResponseBody public Object goEdit() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd = GFblindboardService.findById(pd); //根据ID读取 map.put("pd", pd); map.put("measuresList", GFblindboardService.listAllMeasures(pd)); map.put("imgList",blindboardacceptuserService.findByIds(pd)); map.put("imgList1",blindboardacceptuserService.findById(pd)); map.put("boardList", GFblindBoardInfoService.listAll(pd)); map.put("result", errInfo); return map; } /**批量删除 * @param * @throws Exception */ @RequestMapping(value="/deleteAll") @RequiresPermissions("blindboard:del") @ResponseBody public Object deleteAll() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); String DATA_IDS = pd.getString("DATA_IDS"); if(Tools.notEmpty(DATA_IDS)){ String ArrayDATA_IDS[] = DATA_IDS.split(","); GFblindboardService.deleteAll(ArrayDATA_IDS); errInfo = "success"; }else{ errInfo = "error"; } 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("设备管线名"); //1 titles.add("所属企业"); //2 titles.add("申请部门"); //3 titles.add("申请人"); //4 titles.add("删除标志"); //5 titles.add("创建时间"); //6 titles.add("添加人"); //7 titles.add("修改时间"); //8 titles.add("修改人"); //9 titles.add("编号"); //10 titles.add("申请单位负责人签字"); //11 titles.add("申请单位负责人签字时间"); //12 titles.add("介质"); //13 titles.add("温度"); //14 titles.add("施工单位"); //15 titles.add("施工单位人"); //16 titles.add("施工单位签字"); //17 titles.add("施工单位签字时间"); //18 titles.add("生产部门"); //19 titles.add("生产部门人"); //20 titles.add("生产部门签字"); //21 titles.add("生产部门签字时间"); //22 titles.add("安全部门"); //23 titles.add("安全部门人"); //24 titles.add("安全部门签字"); //25 titles.add("安全部门签字时间"); //26 titles.add("领导人部门"); //27 titles.add("领导人"); //28 titles.add("领导人签字"); //29 titles.add("领导人签字时间"); //30 titles.add("验收部门"); //31 titles.add("验收人"); //32 titles.add("验收签字"); //33 titles.add("验收签字时间"); //34 titles.add("状态"); //35 dataMap.put("titles", titles); List varOList = GFblindboardService.listAll(pd); List varList = new ArrayList(); for(int i=0;i