package com.zcloud.controller.tzsb; import com.zcloud.controller.base.BaseController; import com.zcloud.entity.Page; import com.zcloud.entity.PageData; import com.zcloud.service.tzsb.SpecialEquipmentChangeService; 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.ResponseBody; import org.springframework.web.servlet.ModelAndView; import java.util.*; /** * 说明:特种设备变更记录 * 作者:luoxiaobao * 时间:2021-06-19 * 官网:www.zcloudchina.com */ @Controller @RequestMapping("/specialequipmentchange") public class SpecialEquipmentChangeController extends BaseController { @Autowired private SpecialEquipmentChangeService specialequipmentchangeService; /**新增 * @param * @throws Exception */ @RequestMapping(value="/add") @RequiresPermissions("specialequipmentchange:add") @ResponseBody public Object add() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("SPECIALEQUIPMENTCHANGE_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 specialequipmentchangeService.save(pd); map.put("pd", pd); map.put("result", errInfo); return map; } /**删除 * @param * @throws Exception */ @RequestMapping(value="/delete") @RequiresPermissions("specialequipmentchange: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())); //修改时间 specialequipmentchangeService.delete(pd); map.put("result", errInfo); //返回结果 return map; } /**修改 * @param * @throws Exception */ @RequestMapping(value="/edit") @RequiresPermissions("specialequipmentchange: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())); //修改时间 specialequipmentchangeService.edit(pd); map.put("pd", pd); map.put("result", errInfo); return map; } /**列表 * @param page * @throws Exception */ @RequestMapping(value="/list") @RequiresPermissions("specialequipmentchange: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 = specialequipmentchangeService.list(page); //列出SpecialEquipmentChange列表 map.put("varList", varList); map.put("page", page); map.put("result", errInfo); return map; } /**去修改页面获取数据 * @param * @throws Exception */ @RequestMapping(value="/goEdit") @RequiresPermissions("specialequipmentchange:edit") @ResponseBody public Object goEdit() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd = specialequipmentchangeService.findById(pd); //根据ID读取 map.put("pd", pd); map.put("result", errInfo); return map; } /**批量删除 * @param * @throws Exception */ @RequestMapping(value="/deleteAll") @RequiresPermissions("specialequipmentchange: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 specialequipmentchangeService.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("修改时间"); //6 titles.add("是否删除(0:有效 1:删除)"); //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); pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); //企业ID List varOList = specialequipmentchangeService.listAll(pd); List varList = new ArrayList(); for(int i=0;i