Merge branch 'hyx_changeFileUpload_2024-9-10' into pet
# Conflicts: # src/main/java/com/zcloud/controller/filemanager/MfolderController.java # src/main/java/com/zcloud/controller/firemanager/app/AppFireRecordController.java # src/main/java/com/zcloud/util/Const.javahyx_2024-10-12_xgfPerson
commit
f3b7639fcf
|
@ -38,21 +38,25 @@ public class CORSFilter implements Filter {
|
||||||
// (referer.trim().startsWith("http://192.168.192.201:8992/"))||
|
// (referer.trim().startsWith("http://192.168.192.201:8992/"))||
|
||||||
// (referer.trim().startsWith("http://192.168.192.201:8993/"))||
|
// (referer.trim().startsWith("http://192.168.192.201:8993/"))||
|
||||||
// (referer.trim().startsWith("https://skqhdg.porthebei.com:9005/"))){
|
// (referer.trim().startsWith("https://skqhdg.porthebei.com:9005/"))){
|
||||||
response.setContentType("textml;charset=UTF-8");
|
response.setContentType("textml;charset=UTF-8");
|
||||||
response.setHeader("Access-Control-Allow-Origin", request.getHeader("Origin"));
|
response.setHeader("Access-Control-Allow-Origin", request.getHeader("Origin"));
|
||||||
response.setHeader("Access-Control-Allow-Methods", "POST, GET, OPTIONS, DELETE");
|
response.setHeader("Access-Control-Allow-Methods", "POST, GET, OPTIONS, DELETE");
|
||||||
response.setHeader("Access-Control-Max-Age", "0");
|
response.setHeader("Access-Control-Max-Age", "0");
|
||||||
response.setHeader("Access-Control-Allow-Headers","Origin, No-Cache, X-Requested-With, If-Modified-Since, Pragma, Last-Modified, Cache-Control, Expires, Content-Type, X-E4M-With,userId,token");
|
response.setHeader("Access-Control-Allow-Headers","Origin, No-Cache, X-Requested-With, If-Modified-Since, Pragma, Last-Modified, Cache-Control, Expires, Content-Type, X-E4M-With,userId,token");
|
||||||
response.setHeader("Access-Control-Allow-Credentials", "true"); // 是否支持cookie跨域
|
response.setHeader("Access-Control-Allow-Credentials", "true"); // 是否支持cookie跨域
|
||||||
response.setHeader("XDomainRequestAllowed", "1");
|
response.setHeader("XDomainRequestAllowed", "1");
|
||||||
response.setHeader("x-frame-options","SAMEORIGIN"); // ****
|
response.setHeader("x-frame-options","SAMEORIGIN"); // ****
|
||||||
response.setHeader("X-Content-Type-Options","nosniff");
|
response.setHeader("X-Content-Type-Options","nosniff");
|
||||||
response.setHeader("Content-Security-Policy","default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self';");
|
response.setHeader("Content-Security-Policy","default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self';");
|
||||||
// 一公司烯体哦那个系统漏洞修复
|
// 系统漏洞修复
|
||||||
response.setHeader("X-XSS-Protection", "1; mode=block");
|
response.setHeader("X-XSS-Protection", "1; mode=block");
|
||||||
response.setHeader("X-Permitted-Cross-Domain-Policies", "none");
|
response.setHeader("X-Permitted-Cross-Domain-Policies", "none");
|
||||||
response.setHeader("Strict-Transport-Security", "max-age=31536000; includeSubDomains; preload");
|
response.setHeader("Strict-Transport-Security", "max-age=31536000; includeSubDomains; preload");
|
||||||
response.setHeader("Referrer-Policy", "strict-origin-when-cross-origin");
|
response.setHeader("Referrer-Policy", "strict-origin-when-cross-origin");
|
||||||
|
response.setHeader("X-Download-Options", "noopen");
|
||||||
|
response.setHeader("X-Content-TYpe-OPtions", "nosniff");
|
||||||
|
response.setHeader("Content-Security-Policy", "default-src 'self'");
|
||||||
|
|
||||||
filterChain.doFilter(servletRequest, servletResponse);
|
filterChain.doFilter(servletRequest, servletResponse);
|
||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
|
|
|
@ -81,6 +81,7 @@ public class ShiroConfiguration {
|
||||||
filterChainMap.put("/openApi/**/**", "anon");
|
filterChainMap.put("/openApi/**/**", "anon");
|
||||||
filterChainMap.put("/Api**/**", "anon");
|
filterChainMap.put("/Api**/**", "anon");
|
||||||
filterChainMap.put("/api/**/**", "anon");
|
filterChainMap.put("/api/**/**", "anon");
|
||||||
|
filterChainMap.put("/getStatisticsData/**","anon");
|
||||||
filterChainMap.put("/**", "authc");
|
filterChainMap.put("/**", "authc");
|
||||||
factoryBean.setFilterChainDefinitionMap(filterChainMap);
|
factoryBean.setFilterChainDefinitionMap(filterChainMap);
|
||||||
}
|
}
|
||||||
|
|
|
@ -65,7 +65,7 @@ public class AppSystemController extends BaseController {
|
||||||
depar.setSubDepartment(this.departmentService.listAllDepartment(depar.getDEPARTMENT_ID(),url));
|
depar.setSubDepartment(this.departmentService.listAllDepartment(depar.getDEPARTMENT_ID(),url));
|
||||||
depar.setTarget("treeFrame");
|
depar.setTarget("treeFrame");
|
||||||
depar.setIcon("../../../assets/images/user.gif");
|
depar.setIcon("../../../assets/images/user.gif");
|
||||||
zdepartmentPdList.add(depar);
|
zdepartmentPdList.addAll(depar.getSubDepartment());
|
||||||
// zdepartmentPdList.addAll(departmentService.listAllDepartment(ZDEPARTMENT_ID));
|
// zdepartmentPdList.addAll(departmentService.listAllDepartment(ZDEPARTMENT_ID));
|
||||||
JSONArray arr = JSONArray.fromObject(zdepartmentPdList);
|
JSONArray arr = JSONArray.fromObject(zdepartmentPdList);
|
||||||
String json = arr.toString();
|
String json = arr.toString();
|
||||||
|
|
|
@ -153,7 +153,7 @@ public class HotWorkApplicationController extends BaseController {
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**去修改页面获取数据
|
/**去修改页面获取数据
|
||||||
* @param
|
* @param
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
|
@ -573,7 +573,7 @@ public class HotWorkApplicationController extends BaseController {
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**批量删除
|
/**批量删除
|
||||||
* @param
|
* @param
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
|
@ -597,7 +597,7 @@ public class HotWorkApplicationController extends BaseController {
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**导出到excel
|
/**导出到excel
|
||||||
* @param
|
* @param
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
|
@ -1344,4 +1344,26 @@ public class HotWorkApplicationController extends BaseController {
|
||||||
map.put("result", errInfo);
|
map.put("result", errInfo);
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**强制结束动火
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value="/forcedEnd")
|
||||||
|
// @RequiresPermissions("hotwork:del")
|
||||||
|
@ResponseBody
|
||||||
|
public Object forcedEnd() throws Exception{
|
||||||
|
Map<String,String> map = new HashMap<String,String>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = new PageData();
|
||||||
|
pd = this.getPageData();
|
||||||
|
String userid = Jurisdiction.getUSER_ID();
|
||||||
|
if(!Tools.isEmpty(pd.getString("HOTWORKAPPLICATION_ID"))){
|
||||||
|
hotworkapplicationService.forcedEndHotwork(pd.getString("HOTWORKAPPLICATION_ID"),
|
||||||
|
userid, pd.getString("STATE"));
|
||||||
|
}
|
||||||
|
|
||||||
|
map.put("result", errInfo); //返回结果
|
||||||
|
return map;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -81,61 +81,92 @@ public class ImgFilesController extends BaseController {
|
||||||
public Object finish(
|
public Object finish(
|
||||||
@RequestParam(value="FFILE",required=false) MultipartFile[] files,
|
@RequestParam(value="FFILE",required=false) MultipartFile[] files,
|
||||||
@RequestParam(value="TYPE",required=false) String TYPE,
|
@RequestParam(value="TYPE",required=false) String TYPE,
|
||||||
@RequestParam(value="FOREIGN_KEY",required=false) String FOREIGN_KEY
|
@RequestParam(value="FOREIGN_KEY",required=false) String FOREIGN_KEY,
|
||||||
|
@RequestParam(value="temporaryFilePath",required=false) String[] temporaryFilePath
|
||||||
) throws Exception{
|
) throws Exception{
|
||||||
Map<String,Object> map = new HashMap<String,Object>();
|
Map<String,Object> map = new HashMap<String,Object>();
|
||||||
System.out.println("+++++++++++++++"+files);
|
System.out.println("+++++++++++++++"+files);
|
||||||
|
System.out.println("==================="+temporaryFilePath);
|
||||||
String errInfo = "success";
|
String errInfo = "success";
|
||||||
if (files != null && files.length > 0) {
|
if (temporaryFilePath != null && temporaryFilePath.length > 0) {
|
||||||
for (int i = 0; i < files.length; i++) {
|
for (int i = 0; i < temporaryFilePath.length; i++) {
|
||||||
String suffixName = files[i].getOriginalFilename().substring(files[i].getOriginalFilename().lastIndexOf(".")+1).toLowerCase();
|
String suffixName = temporaryFilePath[i].substring(temporaryFilePath[i].lastIndexOf(".")+1).toLowerCase();
|
||||||
if (!"json".equals(suffixName) && !"pdf".equals(suffixName) && !"jpg".equals(suffixName) && !"jpeg".equals(suffixName) && !"png".equals(suffixName) && !"mp4".equals(suffixName)) {
|
if (!"json".equals(suffixName) && !"pdf".equals(suffixName) && !"jpg".equals(suffixName) && !"jpeg".equals(suffixName) && !"png".equals(suffixName) && !"mp4".equals(suffixName)) {
|
||||||
errInfo = "fail";
|
errInfo = "fail";
|
||||||
map.put("result", errInfo);
|
map.put("result", errInfo);
|
||||||
map.put("msg", "文件格式不正确!");
|
map.put("msg", "文件格式不正确!");
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
}
|
if(TYPE.equals("2")) {//先删除原四色图
|
||||||
for (int i = 0; i < files.length; i++) {
|
PageData pd2 = new PageData();
|
||||||
MultipartFile file = files[i];
|
pd2.put("FOREIGN_KEY",FOREIGN_KEY);
|
||||||
// 保存文件
|
pd2.put("TYPE",TYPE);
|
||||||
File tempFile = new File(file.getOriginalFilename());
|
List<PageData> four = imgfilesService.listAll(pd2);
|
||||||
FileUtils.copyInputStreamToFile(file.getInputStream(), tempFile);
|
for (PageData pageData : four) {
|
||||||
if(!FileUpload.isImage(tempFile) && !TYPE.equals("2")) {//四色图改为json文件,不用判断类型
|
File old = new File(PathUtil.getProjectpath()+pageData.getString("FILEPATH"));
|
||||||
tempFile.delete();
|
old.delete();
|
||||||
map.put("result", "failed");
|
imgfilesService.delete(pageData);
|
||||||
map.put("exception", "上传图片格式不正确,请重新上传");
|
|
||||||
return map;
|
|
||||||
}
|
|
||||||
if (tempFile.exists()) {
|
|
||||||
tempFile.delete();
|
|
||||||
}
|
|
||||||
|
|
||||||
if(TYPE.equals("2")) {//先删除原四色图
|
|
||||||
PageData pd2 = new PageData();
|
|
||||||
pd2.put("FOREIGN_KEY",FOREIGN_KEY);
|
|
||||||
pd2.put("TYPE",TYPE);
|
|
||||||
List<PageData> four = imgfilesService.listAll(pd2);
|
|
||||||
for (PageData pageData : four) {
|
|
||||||
File old = new File(PathUtil.getProjectpath()+pageData.getString("FILEPATH"));
|
|
||||||
old.delete();
|
|
||||||
imgfilesService.delete(pageData);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
String ffile = DateUtil.getDays();
|
|
||||||
// String filePath = PathUtil.getProjectpath() + Const.FILEPATHFILE + ffile; //文件上传路径
|
|
||||||
// String fileName = FileUpload.fileUp(file, filePath, this.get32UUID()); //执行上传
|
|
||||||
String fileName = this.get32UUID()+file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf("."));
|
|
||||||
Smb.sshSftp(file, fileName,Const.FILEPATHYHTP + Jurisdiction.getCORPINFO_ID() + "/" + ffile);
|
|
||||||
PageData pd = new PageData();
|
|
||||||
pd.put("IMGFILES_ID", this.get32UUID());
|
|
||||||
pd.put("FILEPATH", Const.FILEPATHYHTP + Jurisdiction.getCORPINFO_ID() + "/" + ffile + "/" + fileName);
|
|
||||||
pd.put("TYPE", TYPE);
|
|
||||||
pd.put("FOREIGN_KEY", FOREIGN_KEY);
|
|
||||||
imgfilesService.save(pd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
// String productPath = FileUploadUtil.copyTemporaryFileToProduct(temporaryFilePath[i]);
|
||||||
|
PageData pd = new PageData();
|
||||||
|
pd.put("IMGFILES_ID", this.get32UUID());
|
||||||
|
pd.put("FILEPATH", temporaryFilePath[i]);
|
||||||
|
pd.put("TYPE", TYPE);
|
||||||
|
pd.put("FOREIGN_KEY", FOREIGN_KEY);
|
||||||
|
imgfilesService.save(pd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// if (files != null && files.length > 0) {
|
||||||
|
// for (int i = 0; i < files.length; i++) {
|
||||||
|
// String suffixName = files[i].getOriginalFilename().substring(files[i].getOriginalFilename().lastIndexOf(".")+1).toLowerCase();
|
||||||
|
// if (!"json".equals(suffixName) && !"pdf".equals(suffixName) && !"jpg".equals(suffixName) && !"jpeg".equals(suffixName) && !"png".equals(suffixName) && !"mp4".equals(suffixName)) {
|
||||||
|
// errInfo = "fail";
|
||||||
|
// map.put("result", errInfo);
|
||||||
|
// map.put("msg", "文件格式不正确!");
|
||||||
|
// return map;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// for (int i = 0; i < files.length; i++) {
|
||||||
|
// MultipartFile file = files[i];
|
||||||
|
//// 保存文件
|
||||||
|
// File tempFile = new File(file.getOriginalFilename());
|
||||||
|
// FileUtils.copyInputStreamToFile(file.getInputStream(), tempFile);
|
||||||
|
// if(!FileUpload.isImage(tempFile) && !TYPE.equals("2")) {//四色图改为json文件,不用判断类型
|
||||||
|
// tempFile.delete();
|
||||||
|
// map.put("result", "failed");
|
||||||
|
// map.put("exception", "上传图片格式不正确,请重新上传");
|
||||||
|
// return map;
|
||||||
|
// }
|
||||||
|
// if (tempFile.exists()) {
|
||||||
|
// tempFile.delete();
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// if(TYPE.equals("2")) {//先删除原四色图
|
||||||
|
// PageData pd2 = new PageData();
|
||||||
|
// pd2.put("FOREIGN_KEY",FOREIGN_KEY);
|
||||||
|
// pd2.put("TYPE",TYPE);
|
||||||
|
// List<PageData> four = imgfilesService.listAll(pd2);
|
||||||
|
// for (PageData pageData : four) {
|
||||||
|
// File old = new File(PathUtil.getProjectpath()+pageData.getString("FILEPATH"));
|
||||||
|
// old.delete();
|
||||||
|
// imgfilesService.delete(pageData);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// String ffile = DateUtil.getDays();
|
||||||
|
//// String filePath = PathUtil.getProjectpath() + Const.FILEPATHFILE + ffile; //文件上传路径
|
||||||
|
//// String fileName = FileUpload.fileUp(file, filePath, this.get32UUID()); //执行上传
|
||||||
|
// String fileName = this.get32UUID()+file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf("."));
|
||||||
|
// Smb.sshSftp(file, fileName,Const.FILEPATHYHTP + Jurisdiction.getCORPINFO_ID() + "/" + ffile);
|
||||||
|
// PageData pd = new PageData();
|
||||||
|
// pd.put("IMGFILES_ID", this.get32UUID());
|
||||||
|
// pd.put("FILEPATH", Const.FILEPATHYHTP + Jurisdiction.getCORPINFO_ID() + "/" + ffile + "/" + fileName);
|
||||||
|
// pd.put("TYPE", TYPE);
|
||||||
|
// pd.put("FOREIGN_KEY", FOREIGN_KEY);
|
||||||
|
// imgfilesService.save(pd);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
map.put("result", errInfo);
|
map.put("result", errInfo);
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,13 @@
|
||||||
package com.zcloud.controller.filemanager;
|
package com.zcloud.controller.filemanager;
|
||||||
|
|
||||||
import cn.hutool.core.io.IoUtil;
|
import cn.hutool.core.io.IoUtil;
|
||||||
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
|
import com.zcloud.service.bus.ImgFilesService;
|
||||||
|
import com.zcloud.util.*;
|
||||||
import net.sf.json.JSONArray;
|
import net.sf.json.JSONArray;
|
||||||
|
|
||||||
import java.io.Console;
|
import java.io.Console;
|
||||||
|
import java.io.File;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -24,16 +28,6 @@ import com.zcloud.controller.base.BaseController;
|
||||||
import com.zcloud.entity.Page;
|
import com.zcloud.entity.Page;
|
||||||
import com.zcloud.entity.PageData;
|
import com.zcloud.entity.PageData;
|
||||||
import com.zcloud.service.filemanager.MfolderService;
|
import com.zcloud.service.filemanager.MfolderService;
|
||||||
import com.zcloud.util.Const;
|
|
||||||
import com.zcloud.util.DateUtil;
|
|
||||||
import com.zcloud.util.DelFileUtil;
|
|
||||||
import com.zcloud.util.FileDownload;
|
|
||||||
import com.zcloud.util.FileUpload;
|
|
||||||
import com.zcloud.util.FileUtil;
|
|
||||||
import com.zcloud.util.Jurisdiction;
|
|
||||||
import com.zcloud.util.PathUtil;
|
|
||||||
import com.zcloud.util.Smb;
|
|
||||||
import com.zcloud.util.Tools;
|
|
||||||
|
|
||||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||||||
|
|
||||||
|
@ -52,6 +46,9 @@ public class MfolderController extends BaseController {
|
||||||
@Autowired
|
@Autowired
|
||||||
private MfolderService mfolderService;
|
private MfolderService mfolderService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private ImgFilesService imgfilesService;
|
||||||
|
|
||||||
/**创建目录
|
/**创建目录
|
||||||
* @param
|
* @param
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
|
|
|
@ -0,0 +1,955 @@
|
||||||
|
package com.zcloud.controller.statisticsdata;
|
||||||
|
|
||||||
|
import com.zcloud.controller.base.BaseController;
|
||||||
|
import com.zcloud.entity.Page;
|
||||||
|
import com.zcloud.entity.PageData;
|
||||||
|
import com.zcloud.entity.system.Dictionaries;
|
||||||
|
import com.zcloud.service.bus.*;
|
||||||
|
import com.zcloud.service.highriskwork.HighWorkService;
|
||||||
|
import com.zcloud.service.majordangersource.MajordangersourceDisposalService;
|
||||||
|
import com.zcloud.service.system.*;
|
||||||
|
import com.zcloud.util.*;
|
||||||
|
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 java.text.DecimalFormat;
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.util.*;
|
||||||
|
|
||||||
|
@Controller
|
||||||
|
@RequestMapping("/getStatisticsData")
|
||||||
|
public class StatisticsDataController extends BaseController {
|
||||||
|
|
||||||
|
private final static String CORPINFO_ID = "21590a00ea5e462e9ee44dd332dddc26";
|
||||||
|
private final static String USER_ID = "48a8ca9815814c979814ddcf041c5cd5";
|
||||||
|
private final static String USER_NAME = "秦港股份九公司";
|
||||||
|
private final static String DEPT_ID = "21590a00ea5e462e9ee44dd332dddc26";
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private RiskPointService riskpointService;
|
||||||
|
@Autowired
|
||||||
|
private UsersService usersService;
|
||||||
|
@Autowired
|
||||||
|
private DepartmentService departmentService;
|
||||||
|
@Autowired
|
||||||
|
private ListManagerService listmanagerService;
|
||||||
|
@Autowired
|
||||||
|
private HiddenService hiddenService;
|
||||||
|
@Autowired
|
||||||
|
private CardUserService cardUserService;
|
||||||
|
@Autowired
|
||||||
|
private MajordangersourceDisposalService majordangersourceDisposalService;
|
||||||
|
@Autowired
|
||||||
|
private HighWorkService highworkService;
|
||||||
|
@Autowired
|
||||||
|
private DictionariesService dictionariesService;
|
||||||
|
@Autowired
|
||||||
|
private VideoService videoService;
|
||||||
|
@Autowired
|
||||||
|
private MajordangersourceDisposalService majordangersourcedisposalService;
|
||||||
|
@Autowired
|
||||||
|
private PhotoService photoService;
|
||||||
|
@Autowired
|
||||||
|
private FhsmsService fhsmsService;
|
||||||
|
@Autowired
|
||||||
|
private RoleService roleService;
|
||||||
|
@Autowired
|
||||||
|
private PostService postService;
|
||||||
|
@Autowired
|
||||||
|
private CheckRecordService checkrecordService;
|
||||||
|
@Autowired
|
||||||
|
private ListStatisticsService listStatisticsService;
|
||||||
|
@Autowired
|
||||||
|
private IdentificationPartsService identificationPartsService;
|
||||||
|
@Autowired
|
||||||
|
private RiskUnitService riskUnitService;
|
||||||
|
@Autowired
|
||||||
|
private NoticeCorpService noticecorpService;
|
||||||
|
@Autowired
|
||||||
|
private ServiceNoticeService noticeService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 可视化首页统计数据
|
||||||
|
*
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value = "/findFormCount")
|
||||||
|
@ResponseBody
|
||||||
|
public Object findFormCount() throws Exception {
|
||||||
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = this.getPageData();
|
||||||
|
pd.put("CORPINFO_ID", CORPINFO_ID);
|
||||||
|
|
||||||
|
/*风险管控 数据统计*/
|
||||||
|
PageData risk = riskpointService.statisticsRiskCount(pd);
|
||||||
|
map.put("risk", risk);
|
||||||
|
|
||||||
|
/* 隐患排查数据统计 */
|
||||||
|
Map<String, Object> corp = new HashMap<>();
|
||||||
|
//部门
|
||||||
|
List<PageData> userCount = usersService.statisticsByCorp(pd);
|
||||||
|
corp.put("USERCOUNT", userCount.get(0).get("COUNT")); //人员总数
|
||||||
|
corp.put("USERCHECKCOUNT", userCount.get(1).get("COUNT")); //人员总数
|
||||||
|
//部门
|
||||||
|
List<PageData> deptCount = departmentService.statisticsByCorp(pd);
|
||||||
|
corp.put("DEPTCOUNT", deptCount.get(0).get("COUNT")); //人员总数
|
||||||
|
corp.put("DEPTCHECKCOUNT", deptCount.get(1).get("COUNT")); //人员总数
|
||||||
|
//清单
|
||||||
|
List<PageData> listCount = listmanagerService.statisticsByCorp(pd); //列出ListManager列表
|
||||||
|
corp.put("LISTCOUNT", listCount.get(0).get("COUNT")); //人员总数
|
||||||
|
corp.put("LISTCHECKCOUNT", listCount.get(1).get("COUNT")); //人员总数
|
||||||
|
map.put("corp", corp);
|
||||||
|
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 可视化首页 清单类型占比统计
|
||||||
|
*
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value = "/findListTypeChartData")
|
||||||
|
@ResponseBody
|
||||||
|
public Object findListTypeChartData() throws Exception {
|
||||||
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = this.getPageData();
|
||||||
|
pd.put("CORPINFO_ID",CORPINFO_ID);
|
||||||
|
|
||||||
|
//清单类型占比统计
|
||||||
|
List<PageData> chartData = listmanagerService.statisticsGroupType(pd);
|
||||||
|
map.put("chartData", chartData);
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 可视化首页 隐患整改趋势
|
||||||
|
*
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value = "/findHdRecTrendChartData")
|
||||||
|
@ResponseBody
|
||||||
|
public Object findHdRecTrendChartData() throws Exception {
|
||||||
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
//隐患整改趋势(近半年)
|
||||||
|
Map<String, Object> chartData = new HashMap<String, Object>();
|
||||||
|
List<String> legendData = Arrays.asList(new String[]{"已发现", "待确认", "已确认", "待验收", "已验收", "延期处置"});
|
||||||
|
chartData.put("legendData", legendData);
|
||||||
|
List<String> halfYearMonth = DateUtil.getHalfYearMonth(true);
|
||||||
|
chartData.put("xAxisData", halfYearMonth);
|
||||||
|
|
||||||
|
List seriesData = new ArrayList();
|
||||||
|
for (int i = 0; i < legendData.size(); i++) {
|
||||||
|
PageData pd = new PageData();
|
||||||
|
pd.put("CORPINFO_ID", CORPINFO_ID);
|
||||||
|
pd.put("STATENAME",legendData.get(i));
|
||||||
|
List data = new ArrayList();
|
||||||
|
List<PageData> hdRecChart = hiddenService.statisticsGroupMonthByState(pd); //根据状态按时间分组统计隐患数据
|
||||||
|
for (int j = 0; j < halfYearMonth.size(); j++) {
|
||||||
|
boolean flag = true;
|
||||||
|
for (int k = 0; k < hdRecChart.size(); k++) {
|
||||||
|
if (halfYearMonth.get(j).equals(hdRecChart.get(k).getString("CREATMONTH"))) {
|
||||||
|
flag = false;
|
||||||
|
data.add(hdRecChart.get(k).get("COUNT"));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (flag) {
|
||||||
|
data.add(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
seriesData.add(data);
|
||||||
|
}
|
||||||
|
chartData.put("seriesData", seriesData);
|
||||||
|
map.put("chartData", chartData);
|
||||||
|
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 可视化首页 风险程度统计
|
||||||
|
*
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value = "/findRiskPointChartData")
|
||||||
|
@ResponseBody
|
||||||
|
public Object findRiskPointChartData() throws Exception {
|
||||||
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = this.getPageData();
|
||||||
|
pd.put("CORPINFO_ID", CORPINFO_ID);
|
||||||
|
Map<String, Object> chartData = new HashMap<String, Object>();
|
||||||
|
List<PageData> deptList = riskpointService.listDeptByPoint(pd);
|
||||||
|
List<String> yAxisData = new ArrayList<String>();
|
||||||
|
for(PageData d :deptList){
|
||||||
|
PageData pdf = new PageData();
|
||||||
|
yAxisData.add(d.getString("DEPT_NAME"));
|
||||||
|
}
|
||||||
|
chartData.put("yAxisData", yAxisData);
|
||||||
|
|
||||||
|
List<Dictionaries> varList = dictionariesService.listSubDictByParentId("5a81e63ec0e94d919b3138bc01dbef6b");
|
||||||
|
List<String> legendData = new ArrayList<String>();
|
||||||
|
List seriesData = new ArrayList();
|
||||||
|
for(Dictionaries d :varList){
|
||||||
|
PageData pdf = new PageData();
|
||||||
|
legendData.add(d.getNAME());
|
||||||
|
seriesData.add(new ArrayList());
|
||||||
|
}
|
||||||
|
chartData.put("legendData", legendData);
|
||||||
|
//隐患整改趋势(近半年)
|
||||||
|
for (int i = 0; i < deptList.size(); i++) {
|
||||||
|
PageData dept = new PageData();
|
||||||
|
dept.put("DEPARTMENT_ID",deptList.get(i).getString("DEPARTMENT_ID"));
|
||||||
|
List<PageData> dataChart = riskpointService.statisticsGroupLevelByDept(dept); //按照级别分类统计各部门风险管控数据
|
||||||
|
for (int j = 0; j < varList.size(); j++) {
|
||||||
|
List secondList = (List) seriesData.get(j);
|
||||||
|
secondList.add(i, dataChart.get(j).getString("COUNT"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
chartData.put("seriesData", seriesData);
|
||||||
|
map.put("chartData", chartData);
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 可视化首页 本月人员进出
|
||||||
|
*
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value = "/findCarUserChartData")
|
||||||
|
@ResponseBody
|
||||||
|
public Object findCarUserChartData() throws Exception {
|
||||||
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
//隐患整改趋势(近半年)
|
||||||
|
Map<String, Object> chartData = new HashMap<String, Object>();
|
||||||
|
// List<String> legendData = Arrays.asList(new String[]{"进入人员", "外出人员", "刷卡率"});
|
||||||
|
List<String> legendData = Arrays.asList(new String[]{"进入人员", "外出人员"});
|
||||||
|
chartData.put("legendData", legendData);
|
||||||
|
List<String> thisMonth = DateUtil.getThisMonth(false); // 本月日期
|
||||||
|
chartData.put("xAxisData", thisMonth);
|
||||||
|
|
||||||
|
List seriesData = new ArrayList();
|
||||||
|
for (int i = 0; i < legendData.size(); i++) {
|
||||||
|
PageData pd = new PageData();
|
||||||
|
pd.put("CORPINFO_ID", CORPINFO_ID);
|
||||||
|
pd.put("STATENAME", legendData.get(i));
|
||||||
|
List data = new ArrayList();
|
||||||
|
List<PageData> hdRecChart = cardUserService.statisticsGroupDay(pd); //根据状态按时间分组统计人员进出刷卡
|
||||||
|
for (int j = 0; j < thisMonth.size(); j++) {
|
||||||
|
boolean flag = true;
|
||||||
|
for (int k = 0; k < hdRecChart.size(); k++) {
|
||||||
|
if (thisMonth.get(j).equals(hdRecChart.get(k).getString("CREATDAY"))) {
|
||||||
|
flag = false;
|
||||||
|
data.add(hdRecChart.get(k).get("COUNT"));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (flag) {
|
||||||
|
data.add(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
seriesData.add(data);
|
||||||
|
}
|
||||||
|
chartData.put("seriesData", seriesData);
|
||||||
|
map.put("chartData", chartData);
|
||||||
|
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 可视化首页 报警处置情况
|
||||||
|
*
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value = "/findAlarmDisposalChartData")
|
||||||
|
@ResponseBody
|
||||||
|
public Object findAlarmDisposalChartData() throws Exception {
|
||||||
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = this.getPageData();
|
||||||
|
pd.put("CORPINFO_ID", CORPINFO_ID);
|
||||||
|
//隐患整改趋势(近半年)
|
||||||
|
Map<String, Object> chartData = new HashMap<String, Object>();
|
||||||
|
List<String> legendData = Arrays.asList(new String[]{"报警数", "已处置", "处置中"});
|
||||||
|
chartData.put("legendData", legendData);
|
||||||
|
List<String> xAxisData = new ArrayList<String>();
|
||||||
|
List seriesData1 = new ArrayList();
|
||||||
|
List seriesData2 = new ArrayList();
|
||||||
|
List seriesData3 = new ArrayList();
|
||||||
|
|
||||||
|
List<PageData> disposalChart = majordangersourceDisposalService.statisticsGroupMajordangersource(pd); //根据重大危险源分组统计报警处置情况
|
||||||
|
List seriesData = new ArrayList();
|
||||||
|
for (PageData data : disposalChart) {
|
||||||
|
xAxisData.add(data.getString("MAJORDANGERSOURCE_NAME"));
|
||||||
|
seriesData1.add(data.get("COUNTALARM"));
|
||||||
|
seriesData2.add(data.get("COUNTDISPOSED"));
|
||||||
|
seriesData3.add(data.get("COUNTDISPOSAL"));
|
||||||
|
}
|
||||||
|
chartData.put("xAxisData", xAxisData);
|
||||||
|
seriesData.add(seriesData1);
|
||||||
|
seriesData.add(seriesData2);
|
||||||
|
seriesData.add(seriesData3);
|
||||||
|
chartData.put("seriesData", seriesData);
|
||||||
|
map.put("chartData", chartData);
|
||||||
|
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 可视化首页 作业类型统计分析
|
||||||
|
*
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value = "/findHighRiskWorkChartData")
|
||||||
|
@ResponseBody
|
||||||
|
public Object findHighRiskWorkChartData() throws Exception {
|
||||||
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = this.getPageData();
|
||||||
|
pd.put("CORPINFO_ID", CORPINFO_ID);
|
||||||
|
//隐患整改趋势(近半年)
|
||||||
|
Map<String, Object> chartData = new HashMap<String, Object>();
|
||||||
|
List<String> legendData = Arrays.asList(new String[]{"动火作业", "临时用电作业", "盲板作业", "高处作业", "有限空间作业", "吊装作业"});
|
||||||
|
|
||||||
|
List<PageData> workChart = highworkService.statisticsAllHighRiskWork(pd); //统计高危作业里各作业数
|
||||||
|
List seriesData = new ArrayList();
|
||||||
|
for (int i = 0; i < legendData.size(); i++) {
|
||||||
|
PageData pie = new PageData();
|
||||||
|
pie.put("name", legendData.get(i));
|
||||||
|
pie.put("value", workChart.get(i).get("COUNT"));
|
||||||
|
seriesData.add(pie);
|
||||||
|
}
|
||||||
|
chartData.put("seriesData", seriesData);
|
||||||
|
map.put("chartData", chartData);
|
||||||
|
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**数据可视化平台首页获取
|
||||||
|
* 1.获取企业的置顶视频
|
||||||
|
* 2.获取管理的置顶视频
|
||||||
|
* 3.没有视频或者没有置顶视频
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value="/getObjectForBiLogin")
|
||||||
|
@ResponseBody
|
||||||
|
public Object getObjectForBiLogin() throws Exception{
|
||||||
|
Map<String,Object> map = new HashMap<String,Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = new PageData();
|
||||||
|
pd.put("TYPE", "1");
|
||||||
|
pd.put("CORPINFO_TYPE", "1");
|
||||||
|
pd.put("CORPINFO_ID", CORPINFO_ID);
|
||||||
|
List<PageData> cpvarList = videoService.listAll(pd); //企业视频
|
||||||
|
pd = new PageData();
|
||||||
|
pd.put("CORPINFO_TYPE", "2");
|
||||||
|
pd.put("TYPE", "1");
|
||||||
|
List<PageData> ptVarList = videoService.listAll(pd); //平台视频
|
||||||
|
|
||||||
|
map.put("ptVarList", ptVarList);
|
||||||
|
map.put("cpvarList", cpvarList);
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**获取重大危险源数据
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value="/findValidateData")
|
||||||
|
@ResponseBody
|
||||||
|
public Object findValidateData() throws Exception{
|
||||||
|
Map<String,Object> map = new HashMap<String,Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = this.getPageData();
|
||||||
|
List<PageData> varList = majordangersourcedisposalService.listAll(pd); //根据ID读取
|
||||||
|
map.put("varList", varList);
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 清单检查完成率统计
|
||||||
|
*
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value = "/goIndexCount")
|
||||||
|
@ResponseBody
|
||||||
|
public Object goIndexCount() throws Exception {
|
||||||
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = this.getPageData();
|
||||||
|
pd.put("CORPINFO_ID", CORPINFO_ID); // 企业
|
||||||
|
String STARTTIME = pd.getString("STARTTIME"); // 关键词检索条件
|
||||||
|
if (Tools.notEmpty(STARTTIME))
|
||||||
|
pd.put("STARTTIME", STARTTIME.trim() + " 00:00:00");
|
||||||
|
String ENDTIME = pd.getString("ENDTIME"); // 关键词检索条件
|
||||||
|
if (Tools.notEmpty(ENDTIME))
|
||||||
|
pd.put("ENDTIME", ENDTIME.trim() + " 23:59:59");
|
||||||
|
|
||||||
|
List<PageData> varList = new ArrayList<PageData>();
|
||||||
|
PageData listType0001 = new PageData();
|
||||||
|
PageData listType0002 = new PageData();
|
||||||
|
PageData listType0003 = new PageData();
|
||||||
|
PageData listType0004 = new PageData();
|
||||||
|
PageData listType0005 = new PageData();
|
||||||
|
PageData all = new PageData();
|
||||||
|
|
||||||
|
Map<String, PageData> varMap = new HashMap<String, PageData>();
|
||||||
|
|
||||||
|
listType0001.put("type", "listType0001");
|
||||||
|
listType0001.put("name", "日常");
|
||||||
|
listType0001.put("molecule", 0);
|
||||||
|
listType0001.put("denominator", 0);
|
||||||
|
listType0001.put("percentage", 0d);
|
||||||
|
listType0002.put("type", "listType0002");
|
||||||
|
listType0002.put("name", "综合");
|
||||||
|
listType0002.put("molecule", 0);
|
||||||
|
listType0002.put("denominator", 0);
|
||||||
|
listType0002.put("percentage", 0d);
|
||||||
|
|
||||||
|
listType0003.put("type", "listType0003");
|
||||||
|
listType0003.put("name", "专业");
|
||||||
|
listType0003.put("molecule", 0);
|
||||||
|
listType0003.put("denominator", 0);
|
||||||
|
listType0003.put("percentage", 0d);
|
||||||
|
|
||||||
|
listType0004.put("type", "listType0004");
|
||||||
|
listType0004.put("name", "季节性");
|
||||||
|
listType0004.put("molecule", 0);
|
||||||
|
listType0004.put("denominator", 0);
|
||||||
|
listType0004.put("percentage", 0d);
|
||||||
|
|
||||||
|
listType0005.put("type", "listType0005");
|
||||||
|
listType0005.put("name", "节假日");
|
||||||
|
listType0005.put("molecule", 0);
|
||||||
|
listType0005.put("denominator", 0);
|
||||||
|
listType0005.put("percentage", 0d);
|
||||||
|
|
||||||
|
all.put("type", "all");
|
||||||
|
all.put("name", "合计");
|
||||||
|
all.put("molecule", 0);
|
||||||
|
all.put("denominator", 0);
|
||||||
|
all.put("percentage", 0d);
|
||||||
|
|
||||||
|
varMap.put("listType0001", listType0001);
|
||||||
|
varMap.put("listType0002", listType0002);
|
||||||
|
varMap.put("listType0003", listType0003);
|
||||||
|
varMap.put("listType0004", listType0004);
|
||||||
|
varMap.put("listType0005", listType0005);
|
||||||
|
varMap.put("all", all);
|
||||||
|
|
||||||
|
List<PageData> countList = listStatisticsService.getCountList(pd);// 统计分母
|
||||||
|
|
||||||
|
if (countList != null && countList.size() > 0) {
|
||||||
|
List<PageData> dayList = checkrecordService.listCountDay(pd); // 统计--日
|
||||||
|
if (dayList != null && dayList.size() > 0) {
|
||||||
|
for (PageData count : dayList) {
|
||||||
|
Integer molecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get(count.get("TYPE")).get("molecule").toString());
|
||||||
|
varMap.get(count.get("TYPE")).put("molecule", molecule);
|
||||||
|
|
||||||
|
Integer allMolecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get("all").get("molecule").toString());
|
||||||
|
varMap.get("all").put("molecule", allMolecule);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
List<PageData> weekList = checkrecordService.listCountWeek(pd); // 统计--周
|
||||||
|
if (weekList != null && weekList.size() > 0) {
|
||||||
|
for (PageData count : weekList) {
|
||||||
|
Integer molecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get(count.get("TYPE")).get("molecule").toString());
|
||||||
|
varMap.get(count.get("TYPE")).put("molecule", molecule);
|
||||||
|
|
||||||
|
Integer allMolecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get("all").get("molecule").toString());
|
||||||
|
varMap.get("all").put("molecule", allMolecule);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
List<PageData> monthList = checkrecordService.listCountMonth(pd); // 统计--月
|
||||||
|
|
||||||
|
if (monthList != null && monthList.size() > 0) {
|
||||||
|
for (PageData count : monthList) {
|
||||||
|
Integer molecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get(count.get("TYPE")).get("molecule").toString());
|
||||||
|
varMap.get(count.get("TYPE")).put("molecule", molecule);
|
||||||
|
|
||||||
|
Integer allMolecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get("all").get("molecule").toString());
|
||||||
|
varMap.get("all").put("molecule", allMolecule);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
List<PageData> quarterList = checkrecordService.listCountQuarter(pd); // 统计--季
|
||||||
|
|
||||||
|
if (quarterList != null && quarterList.size() > 0) {
|
||||||
|
for (PageData count : quarterList) {
|
||||||
|
Integer molecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get(count.get("TYPE")).get("molecule").toString());
|
||||||
|
varMap.get(count.get("TYPE")).put("molecule", molecule);
|
||||||
|
|
||||||
|
Integer allMolecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get("all").get("molecule").toString());
|
||||||
|
varMap.get("all").put("molecule", allMolecule);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
List<PageData> halfYearList = checkrecordService.listCountHalfYear(pd); // 统计--半年
|
||||||
|
|
||||||
|
if (halfYearList != null && halfYearList.size() > 0) {
|
||||||
|
for (PageData count : halfYearList) {
|
||||||
|
Integer molecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get(count.get("TYPE")).get("molecule").toString());
|
||||||
|
varMap.get(count.get("TYPE")).put("molecule", molecule);
|
||||||
|
|
||||||
|
Integer allMolecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get("all").get("molecule").toString());
|
||||||
|
varMap.get("all").put("molecule", allMolecule);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
List<PageData> yearList = checkrecordService.listCountYear(pd); // 统计--年
|
||||||
|
if (yearList != null && yearList.size() > 0) {
|
||||||
|
for (PageData count : yearList) {
|
||||||
|
Integer molecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get(count.get("TYPE")).get("molecule").toString());
|
||||||
|
varMap.get(count.get("TYPE")).put("molecule", molecule);
|
||||||
|
|
||||||
|
Integer allMolecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get("all").get("molecule").toString());
|
||||||
|
varMap.get("all").put("molecule", allMolecule);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 处理旬时间
|
||||||
|
StringBuffer stt = new StringBuffer();
|
||||||
|
stt.append(pd.getString("STARTTIME"));
|
||||||
|
stt.setCharAt(9, '1');
|
||||||
|
pd.put("STARTTIME", stt.toString());
|
||||||
|
|
||||||
|
String endDay = ENDTIME.substring(8, 10);
|
||||||
|
Integer endTime = Integer.parseInt(endDay);
|
||||||
|
StringBuffer et = new StringBuffer();
|
||||||
|
et.append(pd.getString("ENDTIME"));
|
||||||
|
|
||||||
|
if (endTime <= 10) {
|
||||||
|
stt.setCharAt(8, '1');
|
||||||
|
stt.setCharAt(9, '0');
|
||||||
|
pd.put("ENDTIME", et.toString());
|
||||||
|
} else if (endTime <= 20) {
|
||||||
|
stt.setCharAt(8, '2');
|
||||||
|
stt.setCharAt(9, '0');
|
||||||
|
pd.put("ENDTIME", et.toString());
|
||||||
|
} else {
|
||||||
|
Integer endMonth = Integer.parseInt(ENDTIME.substring(5, 7));
|
||||||
|
Integer endYear = Integer.parseInt(ENDTIME.substring(0, 4));
|
||||||
|
pd.put("ENDTIME", getLastDayOfMonth(endYear, endMonth) + " 23:59:59");
|
||||||
|
}
|
||||||
|
List<PageData> tenDaysList = checkrecordService.listCountTenDays(pd); // 统计--旬
|
||||||
|
if (tenDaysList != null && tenDaysList.size() > 0) {
|
||||||
|
for (PageData count : tenDaysList) {
|
||||||
|
Integer molecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get(count.get("TYPE")).get("molecule").toString());
|
||||||
|
varMap.get(count.get("TYPE")).put("molecule", molecule);
|
||||||
|
|
||||||
|
Integer allMolecule = Integer.parseInt(count.get("NUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get("all").get("molecule").toString());
|
||||||
|
varMap.get("all").put("molecule", allMolecule);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 分母
|
||||||
|
for (PageData count : countList) {
|
||||||
|
Integer denominator = Integer.parseInt(count.get("NOTEXAMINEDNUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get(count.get("TYPE")).get("denominator").toString());
|
||||||
|
varMap.get(count.get("TYPE")).put("denominator", denominator);
|
||||||
|
|
||||||
|
Integer allDenominator = Integer.parseInt(count.get("NOTEXAMINEDNUM").toString())
|
||||||
|
+ Integer.parseInt(varMap.get("all").get("denominator").toString());
|
||||||
|
varMap.get("all").put("denominator", allDenominator);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int i = 1; i < 5; i++) {
|
||||||
|
String type = "listType000" + i;
|
||||||
|
if (!varMap.get(type).get("denominator").toString().equals("0")) {
|
||||||
|
if (varMap.get(type).get("molecule").toString().equals("0")) {
|
||||||
|
varMap.get(type).put("percentage", 0d);
|
||||||
|
} else {
|
||||||
|
Double denominator = Double.parseDouble(varMap.get(type).get("denominator").toString());
|
||||||
|
Double molecule = Double.parseDouble(varMap.get(type).get("molecule").toString());
|
||||||
|
Double percentage = molecule / denominator * 100;
|
||||||
|
DecimalFormat df = new DecimalFormat("#.00");
|
||||||
|
varMap.get(type).put("percentage", df.format(percentage));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
varList.add(varMap.get(type));
|
||||||
|
}
|
||||||
|
if (!varMap.get("listType0005").get("denominator").toString().equals("0")) {
|
||||||
|
Integer jjr = checkrecordService.listCountJjr(pd) == null ? 0 : checkrecordService.listCountJjr(pd);
|
||||||
|
if (jjr == 0) {
|
||||||
|
varMap.get("listType0005").put("percentage", 0d);
|
||||||
|
} else {
|
||||||
|
Double denominator = Double.parseDouble(varMap.get("listType0005").get("denominator").toString());
|
||||||
|
Double molecule = Double.valueOf(jjr);
|
||||||
|
Double percentage = molecule / denominator * 100;
|
||||||
|
DecimalFormat df = new DecimalFormat("#.00");
|
||||||
|
varMap.get("listType0005").put("percentage", df.format(percentage));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Integer allMolecule = Integer.parseInt(varMap.get("listType0005").get("molecule").toString())
|
||||||
|
+ Integer.parseInt(varMap.get("all").get("molecule").toString());
|
||||||
|
varMap.get("all").put("molecule", allMolecule);
|
||||||
|
varList.add(varMap.get("listType0005"));
|
||||||
|
if (!varMap.get("all").get("denominator").toString().equals("0")) {
|
||||||
|
if (varMap.get("all").get("molecule").toString().equals("0")) {
|
||||||
|
varMap.get("all").put("percentage", 0d);
|
||||||
|
} else {
|
||||||
|
Double denominator = Double.parseDouble(varMap.get("all").get("denominator").toString());
|
||||||
|
Double molecule = Double.parseDouble(varMap.get("all").get("molecule").toString());
|
||||||
|
Double percentage = molecule / denominator * 100;
|
||||||
|
DecimalFormat df = new DecimalFormat("#.00");
|
||||||
|
varMap.get("all").put("percentage", df.format(percentage));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
varList.add(varMap.get("all"));
|
||||||
|
map.put("varList", varList);
|
||||||
|
map.put("varMap", varMap);
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String getLastDayOfMonth(int year, int month) {
|
||||||
|
Calendar cal = Calendar.getInstance();
|
||||||
|
// 设置年份
|
||||||
|
cal.set(Calendar.YEAR, year);
|
||||||
|
// 设置月份
|
||||||
|
cal.set(Calendar.MONTH, month - 1);
|
||||||
|
// 获取某月最大天数
|
||||||
|
int lastDay = cal.getActualMaximum(Calendar.DAY_OF_MONTH);
|
||||||
|
// 设置日历中月份的最大天数
|
||||||
|
cal.set(Calendar.DAY_OF_MONTH, lastDay);
|
||||||
|
// 格式化日期
|
||||||
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
||||||
|
String lastDayOfMonth = sdf.format(cal.getTime());
|
||||||
|
|
||||||
|
return lastDayOfMonth;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**首页 获取折线图
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value="/listmanagerIndexCount")
|
||||||
|
@ResponseBody
|
||||||
|
public Object listmanagerIndexCount() throws Exception{
|
||||||
|
Map<String,Object> map = new HashMap<String,Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = this.getPageData();
|
||||||
|
pd.put("CORPINFO_ID", CORPINFO_ID); //企业
|
||||||
|
List<PageData> valList = listmanagerService.goIndexCount(pd);
|
||||||
|
List valList1 = new ArrayList();
|
||||||
|
|
||||||
|
//杨明图标数据
|
||||||
|
// {months: "2022-06", count: 0, screenType: "riskChecklistType0001"}
|
||||||
|
// 6 * 3 近6個月 ,3 三种类型
|
||||||
|
|
||||||
|
Map<String,String> monSCrMap = new HashMap<>();
|
||||||
|
for (PageData pageData : valList){
|
||||||
|
String key = pageData.getString("months")+"*"+pageData.getString("screenType");
|
||||||
|
monSCrMap.put(key,pageData.getString("count"));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
List<String> halfYearMonth = DateUtil.getHalfYearMonth(true);
|
||||||
|
String [] typeAll = new String[]{"riskChecklistType0001","riskChecklistType0002","zhqd03"};
|
||||||
|
|
||||||
|
|
||||||
|
List<Map<String,Object>> list = new ArrayList<>(); // 整理完成的数据 size 6 * 3
|
||||||
|
for(String month : halfYearMonth){
|
||||||
|
for (String type : typeAll){
|
||||||
|
String count = "0";
|
||||||
|
|
||||||
|
String key = month +"*" + type;
|
||||||
|
if (monSCrMap.containsKey(key)){
|
||||||
|
count = monSCrMap.get(key);
|
||||||
|
}
|
||||||
|
Map<String,Object> monAndType = new HashMap<>();
|
||||||
|
monAndType.put("months",month);
|
||||||
|
monAndType.put("screenType",type);
|
||||||
|
monAndType.put("count",count);
|
||||||
|
list.add(monAndType);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println(list);
|
||||||
|
map.put("xAxisData", halfYearMonth);
|
||||||
|
map.put("valList", list);
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 隐患数量统计
|
||||||
|
*
|
||||||
|
* @param page
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value = "/getCountByUserId")
|
||||||
|
@ResponseBody
|
||||||
|
public Object getCountByUserId(Page page) throws Exception {
|
||||||
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = this.getPageData();
|
||||||
|
Map<String, Object> hidCount = new HashMap<>();
|
||||||
|
|
||||||
|
pd.put("userId", USER_ID); // 发现人
|
||||||
|
Integer dzg = 0;// 待整改 1
|
||||||
|
Integer ycq = 0;// 已超期 5
|
||||||
|
Integer dfc = 0;// 待复查 2
|
||||||
|
Integer yys = 0;// 已验收 4
|
||||||
|
// STATE -- 隐患状态 0-未提交 1- 未整改 2-已整改 3-已复查 4-已验收 5-已过期
|
||||||
|
if (Tools.notEmpty(pd.get("userId").toString())) {
|
||||||
|
pd.put("SELFUSERID", USER_ID);
|
||||||
|
pd.put("CORPINFO_ID", CORPINFO_ID);
|
||||||
|
|
||||||
|
List<PageData> rectifiHid = hiddenService.getCountByRectifiCationorId(pd); // 根据人员id获取整改隐患信息 state 1 5
|
||||||
|
for (int i = 0; i < rectifiHid.size(); i++) {
|
||||||
|
PageData rec = rectifiHid.get(i);
|
||||||
|
if (null == rec.get("STATE")) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (rec.get("STATE").equals("1") || rec.get("STATE").equals("-1")) {
|
||||||
|
dzg++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
List<PageData> creatorHid = hiddenService.getCountByCreatorId(pd); // 根据人员id获取发现隐患信息
|
||||||
|
for (int i = 0; i < creatorHid.size(); i++) {
|
||||||
|
PageData cre = creatorHid.get(i);
|
||||||
|
if (null == cre.get("STATE")) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (cre.get("STATE").equals("2")) {
|
||||||
|
dfc++;
|
||||||
|
}
|
||||||
|
if (cre.get("STATE").equals("4")) {
|
||||||
|
yys++;
|
||||||
|
}
|
||||||
|
if (cre.get("STATE").equals("-1")) {
|
||||||
|
ycq++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
hidCount.put("dzg", dzg);
|
||||||
|
hidCount.put("ycq", ycq);
|
||||||
|
hidCount.put("dfc", dfc);
|
||||||
|
hidCount.put("yys", yys);
|
||||||
|
|
||||||
|
map.put("hidCount", hidCount);
|
||||||
|
map.put("page", page);
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 风险点统计
|
||||||
|
*
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value = "/statistic")
|
||||||
|
@ResponseBody
|
||||||
|
public Object statistic() throws Exception {
|
||||||
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = this.getPageData();
|
||||||
|
pd.put("CORPINFO_ID", CORPINFO_ID);
|
||||||
|
|
||||||
|
List<PageData> riskAll = riskpointService.statisticsAll(pd);
|
||||||
|
List<PageData> idAll = identificationPartsService.listIndexAll(pd);
|
||||||
|
List<PageData> unitAll = riskUnitService.listIndexAll(pd);
|
||||||
|
Integer idcount = 0;
|
||||||
|
Integer unitcount = 0;
|
||||||
|
Integer cnzfx = 0;
|
||||||
|
if (idAll != null && idAll.size() > 0) {
|
||||||
|
idcount = idAll.size();
|
||||||
|
}
|
||||||
|
if (unitAll != null && unitAll.size() > 0) {
|
||||||
|
unitcount = unitAll.size();
|
||||||
|
}
|
||||||
|
for (int i = 0; riskAll.size() > i; i++) {
|
||||||
|
if (riskAll.get(i).get("LEVELID") != null && Tools.notEmpty(riskAll.get(i).get("LEVELID").toString())) {
|
||||||
|
if ("levelA".equals(riskAll.get(i).get("LEVELID").toString())
|
||||||
|
|| "levelB".equals(riskAll.get(i).get("LEVELID").toString())
|
||||||
|
|| "levelC".equals(riskAll.get(i).get("LEVELID").toString())
|
||||||
|
|| "levelD".equals(riskAll.get(i).get("LEVELID").toString())) {
|
||||||
|
cnzfx += Integer.valueOf(riskAll.get(i).get("COUNT").toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, Object> riskCount = new HashMap<>();
|
||||||
|
|
||||||
|
riskCount.put("idcount", idcount);
|
||||||
|
riskCount.put("unitcount", unitcount);
|
||||||
|
riskCount.put("cnzfx", cnzfx);
|
||||||
|
// 风险点-只按名称统计 辨识部位-统计不同单元内的辨识部位名称的总数
|
||||||
|
|
||||||
|
map.put("riskCount", riskCount);
|
||||||
|
map.put("riskAll", riskAll);
|
||||||
|
map.put("idAll", idAll);
|
||||||
|
map.put("unitAll", unitAll);
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 隐患类型数量统计
|
||||||
|
*
|
||||||
|
* @param page
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value = "/getCountByHiddenType")
|
||||||
|
@ResponseBody
|
||||||
|
public Object getCountByHiddenType(Page page) throws Exception {
|
||||||
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = this.getPageData();
|
||||||
|
pd.put("CORPINFO_ID", CORPINFO_ID);
|
||||||
|
|
||||||
|
List<PageData> dicIdsList = dictionariesService.getIdsByRecuByParentId("3babc15144444bdc8d763d0af2bdfff6");
|
||||||
|
int anl = 0;
|
||||||
|
int hbl = 0;
|
||||||
|
String anlIDs = dicIdsList.get(0).getString("ids");
|
||||||
|
String hblIDs = dicIdsList.get(1).getString("ids");
|
||||||
|
List<PageData> hiddList = hiddenService.getCountByHiddenType(pd);
|
||||||
|
for (PageData pageData : hiddList) {
|
||||||
|
String hiddenType = pageData.getString("DICTIONARIES_ID");
|
||||||
|
if (anlIDs.indexOf(hiddenType) != -1) {
|
||||||
|
anl += Integer.parseInt(pageData.getString("count"));
|
||||||
|
}
|
||||||
|
if (hblIDs.indexOf(hiddenType) != -1) {
|
||||||
|
hbl += Integer.parseInt(pageData.getString("count"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List valList = new ArrayList();
|
||||||
|
Map<String, Object> valMap = new HashMap<>();
|
||||||
|
valMap.put("name", "安全隐患");
|
||||||
|
valMap.put("value", anl);
|
||||||
|
valList.add(valMap);
|
||||||
|
valMap = new HashMap<>();
|
||||||
|
valMap.put("name", "卫生环保");
|
||||||
|
valMap.put("value", hbl);
|
||||||
|
|
||||||
|
valList.add(valMap);
|
||||||
|
map.put("hiddenTypeCount", valList);
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**平台公告
|
||||||
|
* @param page
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value="/listByIndex")
|
||||||
|
@ResponseBody
|
||||||
|
public Object listByIndex(Page page) throws Exception{
|
||||||
|
Map<String,Object> map = new HashMap<String,Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = this.getPageData();
|
||||||
|
//获取发布给这个企业的信息
|
||||||
|
pd.put("CORP_INFO_ID", CORPINFO_ID);
|
||||||
|
page.setPd(pd);
|
||||||
|
List<PageData> varList = noticeService.getNotAndCorpByCorpId(page);
|
||||||
|
|
||||||
|
map.put("varList", varList);
|
||||||
|
map.put("page", page);
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**企业公告
|
||||||
|
* @param page
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value="/enterpriseListByIndex")
|
||||||
|
@ResponseBody
|
||||||
|
public Object enterpriseListByIndex(Page page) throws Exception{
|
||||||
|
Map<String,Object> map = new HashMap<String,Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = this.getPageData();
|
||||||
|
String KEYWORDS = pd.getString("KEYWORDS"); //关键词检索条件
|
||||||
|
if(Tools.notEmpty(KEYWORDS))pd.put("KEYWORDS", KEYWORDS.trim());
|
||||||
|
pd.put("USER_ID", USER_ID);
|
||||||
|
page.setPd(pd);
|
||||||
|
List<PageData> varList = noticecorpService.listByIndex(page); //列出NOTICECORP列表
|
||||||
|
map.put("varList", varList);
|
||||||
|
map.put("page", page);
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**清單列表
|
||||||
|
* @param
|
||||||
|
* @throws Exception
|
||||||
|
*/
|
||||||
|
@RequestMapping(value="/checkListIndex")
|
||||||
|
@ResponseBody
|
||||||
|
public Object checkListIndex() throws Exception{
|
||||||
|
Map<String,Object> map = new HashMap<String,Object>();
|
||||||
|
String errInfo = "success";
|
||||||
|
PageData pd = new PageData();
|
||||||
|
pd = this.getPageData();
|
||||||
|
pd.put("CORPINFO_ID", CORPINFO_ID); //企业
|
||||||
|
pd.put("USER_ID",USER_ID);
|
||||||
|
pd.put("DEPARTMENT_ID", DEPT_ID);
|
||||||
|
|
||||||
|
pd.put("USER_ID","");
|
||||||
|
List<PageData> varList = listmanagerService.listAll(pd); //列出ListManager列表
|
||||||
|
int wjcNum = 0;
|
||||||
|
int yjcNum = 0;
|
||||||
|
for (PageData list : varList) {
|
||||||
|
if(list.getString("TYPE").equals("listType0005")) {
|
||||||
|
if(Integer.parseInt(list.get("checkCount").toString()) > 0) {
|
||||||
|
yjcNum++;
|
||||||
|
} else {
|
||||||
|
wjcNum++;
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if(Integer.parseInt(list.get("checkCount").toString()) > 0) {
|
||||||
|
yjcNum++;
|
||||||
|
} else {
|
||||||
|
wjcNum++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
map.put("yjcNum", yjcNum);
|
||||||
|
map.put("wjcNum", wjcNum);
|
||||||
|
map.put("varList", varList);
|
||||||
|
map.put("result", errInfo);
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -66,13 +66,13 @@ public class SpecialEquipmentAqxjController extends BaseController {
|
||||||
fileList.add(FILES[i]);
|
fileList.add(FILES[i]);
|
||||||
if (i!=TYPE.length-1 && !TYPE[i].equals(TYPE[i+1])) {
|
if (i!=TYPE.length-1 && !TYPE[i].equals(TYPE[i+1])) {
|
||||||
MultipartFile[] fileArr = new MultipartFile[fileList.size()];
|
MultipartFile[] fileArr = new MultipartFile[fileList.size()];
|
||||||
imgFilesController.finish(fileList.toArray(fileArr),type,pd.getString("SPECIALEQUIPMENTAQXJ_ID"));
|
imgFilesController.finish(fileList.toArray(fileArr),type,pd.getString("SPECIALEQUIPMENTAQXJ_ID"),new String[]{});
|
||||||
fileList.clear();
|
fileList.clear();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (fileList.size()>0) {
|
if (fileList.size()>0) {
|
||||||
MultipartFile[] fileArr = new MultipartFile[fileList.size()];
|
MultipartFile[] fileArr = new MultipartFile[fileList.size()];
|
||||||
imgFilesController.finish(fileList.toArray(fileArr),type,pd.getString("SPECIALEQUIPMENTAQXJ_ID"));
|
imgFilesController.finish(fileList.toArray(fileArr),type,pd.getString("SPECIALEQUIPMENTAQXJ_ID"),new String[]{});
|
||||||
}
|
}
|
||||||
map.put("pd", pd);
|
map.put("pd", pd);
|
||||||
map.put("result", errInfo);
|
map.put("result", errInfo);
|
||||||
|
|
|
@ -89,6 +89,7 @@ public interface FireRecordMapper {
|
||||||
|
|
||||||
List<PageData> datalistPageV2(Page page);
|
List<PageData> datalistPageV2(Page page);
|
||||||
|
|
||||||
|
List<PageData> datalistPageV3(Page page);
|
||||||
List<PageData> datalistPage(Page page);
|
List<PageData> datalistPage(Page page);
|
||||||
|
|
||||||
List<PageData> getCheckingByCid(String fireCheckId);
|
List<PageData> getCheckingByCid(String fireCheckId);
|
||||||
|
|
|
@ -79,7 +79,7 @@ public interface HotWorkApplicationMapper{
|
||||||
|
|
||||||
Integer getJobNumber(PageData pd);
|
Integer getJobNumber(PageData pd);
|
||||||
|
|
||||||
List<PageData> hotworkdatalistPage(Page page);
|
List<PageData> hotworkdatalistPage(Page page);
|
||||||
|
|
||||||
void cleanUpJobNumber(PageData pd);
|
void cleanUpJobNumber(PageData pd);
|
||||||
|
|
||||||
|
@ -90,8 +90,10 @@ public interface HotWorkApplicationMapper{
|
||||||
* @return
|
* @return
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
void updateState4ids(PageData pageData);
|
void updateState4ids(PageData pageData);
|
||||||
|
|
||||||
PageData getCountByMyApprovalForDelayedHotWork(PageData pageData);
|
PageData getCountByMyApprovalForDelayedHotWork(PageData pageData);
|
||||||
|
|
||||||
|
void forcedEndHotwork (PageData pageData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -80,6 +80,7 @@ public interface FireRecordService {
|
||||||
List<PageData> getCheckListByApp(Page page);
|
List<PageData> getCheckListByApp(Page page);
|
||||||
List<PageData> getCheckListByAppV2(Page page);
|
List<PageData> getCheckListByAppV2(Page page);
|
||||||
|
|
||||||
|
List<PageData> getCheckListByAppV3(Page page);
|
||||||
List<PageData> getCheckRecordByPid(PageData pd);
|
List<PageData> getCheckRecordByPid(PageData pd);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -723,6 +723,11 @@ public class FireRecordServiceImpl implements FireRecordService {
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<PageData> getCheckListByAppV3(Page page) {
|
||||||
|
List<PageData> data = fireRecordMapper.datalistPageV3(page);
|
||||||
|
return data;
|
||||||
|
}
|
||||||
@Override
|
@Override
|
||||||
public List<PageData> getCheckRecordByPid(PageData pd) {
|
public List<PageData> getCheckRecordByPid(PageData pd) {
|
||||||
return fireRecordMapper.getCheckRecordByPid(pd);
|
return fireRecordMapper.getCheckRecordByPid(pd);
|
||||||
|
|
|
@ -112,6 +112,8 @@ public interface HotWorkApplicationService{
|
||||||
public void updateState4ids(PageData pageData);
|
public void updateState4ids(PageData pageData);
|
||||||
|
|
||||||
PageData getCountByMyApprovalForDelayedHotWork(String user_id) throws Exception;
|
PageData getCountByMyApprovalForDelayedHotWork(String user_id) throws Exception;
|
||||||
|
|
||||||
|
void forcedEndHotwork (String HOTWORKAPPLICATION_ID,String user_id ,String state) throws Exception;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -259,5 +259,23 @@ public class HotWorkApplicationServiceImpl implements HotWorkApplicationService{
|
||||||
public List<PageData> archivelist(Page page)throws Exception{
|
public List<PageData> archivelist(Page page)throws Exception{
|
||||||
return hotworkapplicationMapper.filedatalistPage(page);
|
return hotworkapplicationMapper.filedatalistPage(page);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 方法名称:强制结束动火
|
||||||
|
* 方法描述:轻质结束正在进行中的动火或者已经过去的动火信息
|
||||||
|
* 创建人:guoyuepeng
|
||||||
|
* 时间:2024/9/3 14:48
|
||||||
|
* @param HOTWORKAPPLICATION_ID 动火ID
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public void forcedEndHotwork(String HOTWORKAPPLICATION_ID ,String userid,String state) throws Exception{
|
||||||
|
PageData pd = new PageData();
|
||||||
|
pd.put("OPERATOR", userid);
|
||||||
|
pd.put("OPERATTIME", DateUtil.date2Str(new Date()));
|
||||||
|
pd.put("HOTWORKAPPLICATION_ID", HOTWORKAPPLICATION_ID);
|
||||||
|
pd.put("STATE", "11");
|
||||||
|
pd.put("FORCED_END_STATE", state);
|
||||||
|
hotworkapplicationMapper.forcedEndHotwork(pd);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -277,6 +277,9 @@ public class HotWorkApplicationUserServiceImpl implements HotWorkApplicationUser
|
||||||
&& 0 > Integer.parseInt(hotVal.get("STATE").toString())){
|
&& 0 > Integer.parseInt(hotVal.get("STATE").toString())){
|
||||||
hotVal.put("examineUserName", hotVal.get("OPERATORNAME"));
|
hotVal.put("examineUserName", hotVal.get("OPERATORNAME"));
|
||||||
}
|
}
|
||||||
|
if("1".equals(hotVal.getString("IS_FORCED_END"))){ //如果是强制回档
|
||||||
|
hotVal.put("examineUserName", hotVal.get("OPERATORNAME"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
PageData pd = new PageData();
|
PageData pd = new PageData();
|
||||||
pd.put("hotIds",hotIds);
|
pd.put("hotIds",hotIds);
|
||||||
|
|
|
@ -0,0 +1,70 @@
|
||||||
|
package com.zcloud.util;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.scheduling.annotation.Scheduled;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 定时清除临时文件任务
|
||||||
|
* 每月30日定时清除 /uploadFiles/linshi/ 路径下所有文件
|
||||||
|
* @date 2024-9-10
|
||||||
|
* @author hyx
|
||||||
|
*/
|
||||||
|
@Configuration
|
||||||
|
public class ClearFilesJob {
|
||||||
|
|
||||||
|
private final static Logger log = LoggerFactory.getLogger(ClearFilesJob.class);
|
||||||
|
|
||||||
|
// @Scheduled(cron ="0 0 0 30 * ?")
|
||||||
|
@Scheduled(cron = "0 0 0 * * ?")
|
||||||
|
public void scheduled(){
|
||||||
|
log.info("==========清除临时文件定时任务开启==========");
|
||||||
|
System.out.println("==========清除临时文件定时任务开启==========");
|
||||||
|
// String filePath = Const.PATH_PREFIX + Const.TEMPORARY_FILE_PATH;
|
||||||
|
String filePath = "D:/file/test/linshi/";
|
||||||
|
String beforeDayDate = DateUtil.getBeforeDayDate();
|
||||||
|
System.out.println("要清除的文件夹:"+ filePath + beforeDayDate);
|
||||||
|
delAllFile(filePath + beforeDayDate);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除文件夹下所有文件
|
||||||
|
* @param path 目标路径
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public static boolean delAllFile(String path) {
|
||||||
|
boolean flag = false;
|
||||||
|
File file = new File(path);
|
||||||
|
if (!file.exists()) {
|
||||||
|
return flag;
|
||||||
|
}
|
||||||
|
if (!file.isDirectory()) {
|
||||||
|
return flag;
|
||||||
|
}
|
||||||
|
String[] tempList = file.list();
|
||||||
|
File temp = null;
|
||||||
|
for (int i = 0; i < tempList.length; i++) {
|
||||||
|
if (path.endsWith(File.separator)) {
|
||||||
|
temp = new File(path + tempList[i]);
|
||||||
|
} else {
|
||||||
|
temp = new File(path + File.separator + tempList[i]);
|
||||||
|
}
|
||||||
|
if (temp.isFile()) {
|
||||||
|
temp.delete();
|
||||||
|
}
|
||||||
|
if (temp.isDirectory()) {
|
||||||
|
//删除文件夹下文件
|
||||||
|
delAllFile(path + "/" + tempList[i]);
|
||||||
|
flag = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return flag;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -63,5 +63,9 @@ public class Const {
|
||||||
|
|
||||||
public static final String USER_CITY_CODE = "SESSION_USER_CITY_CODE";
|
public static final String USER_CITY_CODE = "SESSION_USER_CITY_CODE";
|
||||||
public static final String USER_CITY_NAME = "SESSION_USER_CITY_NAME";
|
public static final String USER_CITY_NAME = "SESSION_USER_CITY_NAME";
|
||||||
|
|
||||||
|
public final static String TEMPORARY_FILE_PATH = "/uploadFiles/linshi/"; // 临时文件路径
|
||||||
|
public final static String PRODUCT_FILE_PATH = "/uploadFiles/yhtp/"; //正式文件路径
|
||||||
|
public final static String PATH_PREFIX = "/mnt/vdc1/qask/file"; //服务器路径前缀
|
||||||
public static final String ONE = "1";
|
public static final String ONE = "1";
|
||||||
}
|
}
|
||||||
|
|
|
@ -195,6 +195,20 @@ public class DateUtil {
|
||||||
return dateStr;
|
return dateStr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取30天之前的日期字符串
|
||||||
|
* @return yyyyMMdd格式时间字符串
|
||||||
|
*/
|
||||||
|
public static String getBeforeDayDate() {
|
||||||
|
Calendar canlendar = Calendar.getInstance();
|
||||||
|
canlendar.setTime(new Date());
|
||||||
|
canlendar.add(Calendar.DATE, -30);
|
||||||
|
Date date = canlendar.getTime();
|
||||||
|
SimpleDateFormat sdfd = new SimpleDateFormat("yyyyMMdd");
|
||||||
|
String dateStr = sdfd.format(date);
|
||||||
|
return dateStr;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 得到n天之后是周几
|
* 得到n天之后是周几
|
||||||
* @param days
|
* @param days
|
||||||
|
|
|
@ -0,0 +1,90 @@
|
||||||
|
package com.zcloud.util;
|
||||||
|
|
||||||
|
import cn.hutool.core.io.FileUtil;
|
||||||
|
import cn.hutool.core.io.IORuntimeException;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文件上传工具类
|
||||||
|
* 变更文件上传方式,原上传方式可能会导致附件丢失
|
||||||
|
* 修改后逻辑:点击上传 -> 调后端接口返回临时文件路径 -> 提交-> 临时文件拷贝到正式,保存正式文件地址 -> 定期清空临时文件
|
||||||
|
* @date 2024-9-10
|
||||||
|
* @author hyx
|
||||||
|
* @version V1.0
|
||||||
|
*/
|
||||||
|
public class FileUploadUtil {
|
||||||
|
|
||||||
|
private final static String PATH_PREFIX = "/mnt/vdc1/qask/file"; //服务器路径前缀
|
||||||
|
private final static String TEMPORARY_FILE_PATH = "/uploadFiles/linshi/"; //临时文件储存路径
|
||||||
|
private final static String PRODUCT_FILE_PATH = "/uploadFiles/zhengshi/"; //正式文件储存路径
|
||||||
|
// private final static String PATH_PREFIX = "D:/file"; //服务器路径前缀
|
||||||
|
// private final static String TEMPORARY_FILE_PATH = "/test/linshi/"; //临时文件储存路径
|
||||||
|
// private final static String PRODUCT_FILE_PATH = "/test/zhengshi/"; //正式文件储存路径
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 上传文件到服务器临时地址
|
||||||
|
*
|
||||||
|
* @param file 文件
|
||||||
|
* @param CORPINFO_ID 企业id
|
||||||
|
* @return 文件临时路径
|
||||||
|
* @throws Exception
|
||||||
|
* @date 2024-9-10
|
||||||
|
* @author hyx
|
||||||
|
*/
|
||||||
|
public static String uploadTemporaryFile(MultipartFile file,String CORPINFO_ID) throws Exception {
|
||||||
|
String ffile = DateUtil.getDays();
|
||||||
|
String fileName = UuidUtil.get32UUID()+file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf("."));
|
||||||
|
try {
|
||||||
|
Smb.sshSftp(file,fileName,TEMPORARY_FILE_PATH + ffile + "/" + CORPINFO_ID);
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
return TEMPORARY_FILE_PATH + ffile + "/" + CORPINFO_ID + "/" + fileName;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 临时文件拷贝到正式
|
||||||
|
*
|
||||||
|
* @param temporaryFilePath 临时文件路径
|
||||||
|
* @param CORPINFO_ID 企业id
|
||||||
|
* @return 不含路径前缀的正式文件路径
|
||||||
|
* @throws Exception
|
||||||
|
* @date 2024-9-10
|
||||||
|
* @author hyx
|
||||||
|
*/
|
||||||
|
public static String copyTemporaryFileToProduct(String temporaryFilePath,String CORPINFO_ID) throws Exception {
|
||||||
|
//临时文件在服务器的完整路径
|
||||||
|
String completeTemporaryPath = PATH_PREFIX + temporaryFilePath;
|
||||||
|
//截取文件名
|
||||||
|
String fileName = completeTemporaryPath.substring(completeTemporaryPath.lastIndexOf("/")).replace("/","");
|
||||||
|
//正式文件完整路径
|
||||||
|
String completeProductPath = PATH_PREFIX + PRODUCT_FILE_PATH + CORPINFO_ID + "/" ;
|
||||||
|
//临时文件拷贝到正式路径
|
||||||
|
try {
|
||||||
|
FileUtil.copy(completeTemporaryPath,completeProductPath,false);
|
||||||
|
} catch (IORuntimeException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
return PRODUCT_FILE_PATH + CORPINFO_ID + "/" + fileName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String copyTemporaryFileToProduct(String temporaryFilePath) throws Exception {
|
||||||
|
//临时文件在服务器的完整路径
|
||||||
|
String completeTemporaryPath = PATH_PREFIX + temporaryFilePath;
|
||||||
|
//截取文件名
|
||||||
|
String fileName = completeTemporaryPath.substring(completeTemporaryPath.lastIndexOf("/")).replace("/","");
|
||||||
|
//正式文件完整路径
|
||||||
|
String completeProductPath = PATH_PREFIX + PRODUCT_FILE_PATH + "/" ;
|
||||||
|
//临时文件拷贝到正式路径
|
||||||
|
try {
|
||||||
|
FileUtil.copy(completeTemporaryPath,completeProductPath,false);
|
||||||
|
} catch (IORuntimeException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
return PRODUCT_FILE_PATH + "/" + fileName;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -64,7 +64,7 @@ smb.host=192.168.192.201
|
||||||
smb.port=22
|
smb.port=22
|
||||||
smb.user=root
|
smb.user=root
|
||||||
smb.password=SJSKaqhb@20240131
|
smb.password=SJSKaqhb@20240131
|
||||||
smb.basePath=/mnt/qask/file/
|
smb.basePath=/mnt/vdc1/qask/file/
|
||||||
#Mq\u914D\u7F6E
|
#Mq\u914D\u7F6E
|
||||||
rocketmq.consumer.group2=edu-admin-edit
|
rocketmq.consumer.group2=edu-admin-edit
|
||||||
rocketmq.consumer.group1=edu-admin-add
|
rocketmq.consumer.group1=edu-admin-add
|
||||||
|
@ -131,6 +131,7 @@ gongJiangXueYuanGetImgUrl=https://skqhdg.porthebei.com:9004/file/
|
||||||
|
|
||||||
# \u4E2D\u53F0
|
# \u4E2D\u53F0
|
||||||
# \u6D88\u8D39\u4E2D\u53F0\u901A\u77E5
|
# \u6D88\u8D39\u4E2D\u53F0\u901A\u77E5
|
||||||
|
tongbu.url=http://192.168.192.201:8971/qa-prevention-gwj-tongbu/
|
||||||
mq.consumer.dataChange.tongbu-data-change.topic=tongbu_dataChange_docking
|
mq.consumer.dataChange.tongbu-data-change.topic=tongbu_dataChange_docking
|
||||||
mq.consumer.dataChange.tongbu-data-change.group=tongbu_dataChange_group
|
mq.consumer.dataChange.tongbu-data-change.group=tongbu_dataChange_group
|
||||||
|
|
||||||
|
|
|
@ -192,7 +192,7 @@
|
||||||
f.TYPE,
|
f.TYPE,
|
||||||
f.PERIODSTART DATESTART,
|
f.PERIODSTART DATESTART,
|
||||||
f.PERIODEND DATEEND,
|
f.PERIODEND DATEEND,
|
||||||
u.NAME AS USER_NAME,
|
getUnameByUid(u.USER_ID) AS USER_NAME,
|
||||||
su.NAME AS PRINCIPALNAME,
|
su.NAME AS PRINCIPALNAME,
|
||||||
(select group_concat(chr.NAME) from BUS_CHECKUSER bh left join sys_user chr on chr.USER_ID=bh.USER_ID where bh.CHECKRECORD_ID=f.CHECKRECORD_ID) CHECK_USERS
|
(select group_concat(chr.NAME) from BUS_CHECKUSER bh left join sys_user chr on chr.USER_ID=bh.USER_ID where bh.CHECKRECORD_ID=f.CHECKRECORD_ID) CHECK_USERS
|
||||||
from
|
from
|
||||||
|
|
|
@ -192,7 +192,7 @@
|
||||||
sp.NAME
|
sp.NAME
|
||||||
AS POST_NAME,
|
AS POST_NAME,
|
||||||
s.NAME AS SCREENTYPENAME,
|
s.NAME AS SCREENTYPENAME,
|
||||||
u.NAME AS USER_NAME
|
getUnameByUid(f.USER_ID) AS USER_NAME
|
||||||
from
|
from
|
||||||
<include refid="tableName"></include>
|
<include refid="tableName"></include>
|
||||||
f
|
f
|
||||||
|
@ -220,7 +220,7 @@
|
||||||
d.NAME as DEPARTMENT_NAME,
|
d.NAME as DEPARTMENT_NAME,
|
||||||
sp.NAME
|
sp.NAME
|
||||||
AS POST_NAME,
|
AS POST_NAME,
|
||||||
u.NAME USER_NAME,
|
getUnameByUid(f.USER_ID) USER_NAME,
|
||||||
s.NAME AS SCREENTYPENAME,
|
s.NAME AS SCREENTYPENAME,
|
||||||
(select count(1) from BUS_LIST_CHECKITEM ch where
|
(select count(1) from BUS_LIST_CHECKITEM ch where
|
||||||
ch.LISTMANAGER_ID=f.LISTMANAGER_ID and ch.ISDELETE = '0') as count ,
|
ch.LISTMANAGER_ID=f.LISTMANAGER_ID and ch.ISDELETE = '0') as count ,
|
||||||
|
@ -271,7 +271,7 @@
|
||||||
and f.DEPARTMENT_ID = #{pd.DEPARTMENT_ID}
|
and f.DEPARTMENT_ID = #{pd.DEPARTMENT_ID}
|
||||||
</if>
|
</if>
|
||||||
<if test="pd.USERNAME != null and pd.USERNAME != ''"><!-- 关键词检索 -->
|
<if test="pd.USERNAME != null and pd.USERNAME != ''"><!-- 关键词检索 -->
|
||||||
and u.NAME LIKE CONCAT(CONCAT('%', #{pd.USERNAME}),'%')
|
and getUnameByUid(f.USER_ID) LIKE CONCAT(CONCAT('%', #{pd.USERNAME}),'%')
|
||||||
</if>
|
</if>
|
||||||
<if test="pd.TYPE != null and pd.TYPE != ''"><!-- 关键词检索 -->
|
<if test="pd.TYPE != null and pd.TYPE != ''"><!-- 关键词检索 -->
|
||||||
and f.TYPE = #{pd.TYPE}
|
and f.TYPE = #{pd.TYPE}
|
||||||
|
@ -500,7 +500,7 @@
|
||||||
d.NAME as DEPARTMENT_NAME,
|
d.NAME as DEPARTMENT_NAME,
|
||||||
sp.NAME
|
sp.NAME
|
||||||
AS POST_NAME,
|
AS POST_NAME,
|
||||||
u.NAME USER_NAME,
|
getUnameByUid(f.USER_ID) USER_NAME,
|
||||||
(select count(1) from BUS_LIST_CHECKITEM
|
(select count(1) from BUS_LIST_CHECKITEM
|
||||||
ch where ch.LISTMANAGER_ID=f.LISTMANAGER_ID and ch.ISDELETE =0) as
|
ch where ch.LISTMANAGER_ID=f.LISTMANAGER_ID and ch.ISDELETE =0) as
|
||||||
count,
|
count,
|
||||||
|
@ -593,7 +593,7 @@
|
||||||
d.NAME as DEPARTMENT_NAME,
|
d.NAME as DEPARTMENT_NAME,
|
||||||
sp.NAME
|
sp.NAME
|
||||||
AS POST_NAME,
|
AS POST_NAME,
|
||||||
u.NAME USER_NAME,
|
getUnameByUid(f.USER_ID) USER_NAME,
|
||||||
(select count(1) from BUS_LIST_CHECKITEM ch where ch.LISTMANAGER_ID=f.LISTMANAGER_ID and ch.ISDELETE =0) as count,
|
(select count(1) from BUS_LIST_CHECKITEM ch where ch.LISTMANAGER_ID=f.LISTMANAGER_ID and ch.ISDELETE =0) as count,
|
||||||
ve.numCount checkCount
|
ve.numCount checkCount
|
||||||
from
|
from
|
||||||
|
@ -649,7 +649,7 @@
|
||||||
and f.DEPARTMENT_ID = #{pd.DTID}
|
and f.DEPARTMENT_ID = #{pd.DTID}
|
||||||
</if>
|
</if>
|
||||||
<if test="pd.USERNAME != null and pd.USERNAME != ''">
|
<if test="pd.USERNAME != null and pd.USERNAME != ''">
|
||||||
and u.NAME LIKE CONCAT(CONCAT('%', #{pd.USERNAME}),'%')
|
and getUnameByUid(f.USER_ID) LIKE CONCAT(CONCAT('%', #{pd.USERNAME}),'%')
|
||||||
</if>
|
</if>
|
||||||
<if test="pd.KEYWORDS != null and pd.KEYWORDS != ''">
|
<if test="pd.KEYWORDS != null and pd.KEYWORDS != ''">
|
||||||
and f.NAME LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
|
and f.NAME LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
|
||||||
|
|
|
@ -143,6 +143,7 @@
|
||||||
fqp.QUALIFIED_TYPE_NAME,
|
fqp.QUALIFIED_TYPE_NAME,
|
||||||
IFNULL( t.DEVICE_COUNT, 0 ) DEVICE_COUNT,
|
IFNULL( t.DEVICE_COUNT, 0 ) DEVICE_COUNT,
|
||||||
d.`NAME` AS DEPARTMENT_NAME,
|
d.`NAME` AS DEPARTMENT_NAME,
|
||||||
|
p.USER_ID,
|
||||||
u.`NAME` AS USERNAME,
|
u.`NAME` AS USERNAME,
|
||||||
r.FIRE_REGION_NAME,
|
r.FIRE_REGION_NAME,
|
||||||
if(p.LATITUDE is null or p.LONGITUDE is null or p.LATITUDE = '' or p.LONGITUDE = '', '1', '0') AS ISPUNCTUATION
|
if(p.LATITUDE is null or p.LONGITUDE is null or p.LATITUDE = '' or p.LONGITUDE = '', '1', '0') AS ISPUNCTUATION
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
f.IS_SAFETY_DIRECTOR,
|
f.IS_SAFETY_DIRECTOR,
|
||||||
f.IS_GAS_TESTING,
|
f.IS_GAS_TESTING,
|
||||||
f.SPARE,
|
f.SPARE,
|
||||||
|
f.IS_FORCED_END,
|
||||||
f.HOTWORKAPPLICATION_ID
|
f.HOTWORKAPPLICATION_ID
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
|
@ -63,6 +64,7 @@
|
||||||
IS_SAFETY_DIRECTOR,
|
IS_SAFETY_DIRECTOR,
|
||||||
IS_GAS_TESTING,
|
IS_GAS_TESTING,
|
||||||
SPARE,
|
SPARE,
|
||||||
|
IS_FORCED_END,
|
||||||
HOTWORKAPPLICATION_ID
|
HOTWORKAPPLICATION_ID
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
|
@ -90,6 +92,7 @@
|
||||||
#{IS_SAFETY_DIRECTOR},
|
#{IS_SAFETY_DIRECTOR},
|
||||||
#{IS_GAS_TESTING},
|
#{IS_GAS_TESTING},
|
||||||
#{SPARE},
|
#{SPARE},
|
||||||
|
#{IS_FORCED_END},
|
||||||
#{HOTWORKAPPLICATION_ID}
|
#{HOTWORKAPPLICATION_ID}
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
|
@ -143,10 +146,10 @@
|
||||||
|
|
||||||
<!-- 修改 -->
|
<!-- 修改 -->
|
||||||
<update id="editState" parameterType="pd">
|
<update id="editState" parameterType="pd">
|
||||||
update
|
update
|
||||||
<include refid="tableName"></include>
|
<include refid="tableName"></include>
|
||||||
set
|
set
|
||||||
STATE = #{STATE}
|
STATE = #{STATE}
|
||||||
where
|
where
|
||||||
HOTWORKAPPLICATION_ID = #{HOTWORKAPPLICATION_ID}
|
HOTWORKAPPLICATION_ID = #{HOTWORKAPPLICATION_ID}
|
||||||
</update>
|
</update>
|
||||||
|
@ -191,6 +194,7 @@
|
||||||
f.IS_SAFETY_DIRECTOR,
|
f.IS_SAFETY_DIRECTOR,
|
||||||
f.IS_GAS_TESTING,
|
f.IS_GAS_TESTING,
|
||||||
f.SPARE,
|
f.SPARE,
|
||||||
|
f.IS_FORCED_END,
|
||||||
f.HOTWORKAPPLICATION_ID,
|
f.HOTWORKAPPLICATION_ID,
|
||||||
u.NAME CREATORNAME,
|
u.NAME CREATORNAME,
|
||||||
d.NAME DEPARTMENTNAME,
|
d.NAME DEPARTMENTNAME,
|
||||||
|
@ -215,15 +219,15 @@
|
||||||
)
|
)
|
||||||
</if>
|
</if>
|
||||||
<if test="pd.CORPINFO_ID != null and pd.CORPINFO_ID != ''">
|
<if test="pd.CORPINFO_ID != null and pd.CORPINFO_ID != ''">
|
||||||
and f.CORPINFO_ID = #{pd.CORPINFO_ID}
|
and f.CORPINFO_ID = #{pd.CORPINFO_ID}
|
||||||
</if>
|
</if>
|
||||||
<if test="pd.CREATOR != null and pd.CREATOR != ''">
|
<if test="pd.CREATOR != null and pd.CREATOR != ''">
|
||||||
and (f.CREATOR = #{pd.CREATOR})
|
and (f.CREATOR = #{pd.CREATOR})
|
||||||
</if>
|
</if>
|
||||||
<if test="pd.HOT_WORK_LEVEL_INDEX != null and pd.HOT_WORK_LEVEL_INDEX != ''">
|
<if test="pd.HOT_WORK_LEVEL_INDEX != null and pd.HOT_WORK_LEVEL_INDEX != ''">
|
||||||
and (HOT_WORK_LEVEL_INDEX = #{pd.HOT_WORK_LEVEL_INDEX})
|
and (HOT_WORK_LEVEL_INDEX = #{pd.HOT_WORK_LEVEL_INDEX})
|
||||||
</if>
|
</if>
|
||||||
<if test="pd.roleLevel != null and pd.roleLevel != ''"><!-- 权限显示 -->
|
<if test="pd.roleLevel != null and pd.roleLevel != ''"><!-- 权限显示 -->
|
||||||
<choose>
|
<choose>
|
||||||
<when test='pd.roleLevel == "0"'>
|
<when test='pd.roleLevel == "0"'>
|
||||||
</when>
|
</when>
|
||||||
|
@ -409,9 +413,9 @@
|
||||||
<include refid="Field"></include>
|
<include refid="Field"></include>
|
||||||
from
|
from
|
||||||
<include refid="tableName"></include> f
|
<include refid="tableName"></include> f
|
||||||
where 1=1
|
where 1=1
|
||||||
<if test="INSTATES != null and INSTATES.size() > 0">
|
<if test="INSTATES != null and INSTATES.size() > 0">
|
||||||
and STATE in
|
and STATE in
|
||||||
<foreach item="item" index="index" collection="INSTATES" open="(" separator="," close=")">
|
<foreach item="item" index="index" collection="INSTATES" open="(" separator="," close=")">
|
||||||
#{item}
|
#{item}
|
||||||
</foreach>
|
</foreach>
|
||||||
|
@ -430,7 +434,7 @@
|
||||||
#{item}
|
#{item}
|
||||||
</foreach>
|
</foreach>
|
||||||
</delete>
|
</delete>
|
||||||
<!-- bus_hotwork_measures-->
|
<!-- bus_hotwork_measures-->
|
||||||
|
|
||||||
<!-- 列表(全部) -->
|
<!-- 列表(全部) -->
|
||||||
<select id="listAllMeasures" parameterType="pd" resultType="pd">
|
<select id="listAllMeasures" parameterType="pd" resultType="pd">
|
||||||
|
@ -438,19 +442,19 @@
|
||||||
f.BUS_HOTWORK_MEASURES_ID,
|
f.BUS_HOTWORK_MEASURES_ID,
|
||||||
f.PROTECTIVE_MEASURES,
|
f.PROTECTIVE_MEASURES,
|
||||||
f.QUESTION1,
|
f.QUESTION1,
|
||||||
f.QUESTION2,
|
f.QUESTION2,
|
||||||
f.QUESTION3,
|
f.QUESTION3,
|
||||||
f.QUESTION4,
|
f.QUESTION4,
|
||||||
f.ISDELETE,
|
f.ISDELETE,
|
||||||
f.ORDERBY,
|
f.ORDERBY,
|
||||||
hwtm.ANSWER1,
|
hwtm.ANSWER1,
|
||||||
hwtm.ANSWER2,
|
hwtm.ANSWER2,
|
||||||
hwtm.ANSWER3,
|
hwtm.ANSWER3,
|
||||||
hwtm.ANSWER4
|
hwtm.ANSWER4
|
||||||
|
|
||||||
FROM
|
FROM
|
||||||
BUS_HOTWORK_MEASURES f
|
BUS_HOTWORK_MEASURES f
|
||||||
LEFT JOIN BUS_HOTWORKTOMEASURES hwtm on f.BUS_HOTWORK_MEASURES_ID = hwtm.BUS_HOTWORK_MEASURES_ID and hwtm.HOTWORKAPPLICATION_ID = #{HOTWORKAPPLICATION_ID}
|
LEFT JOIN BUS_HOTWORKTOMEASURES hwtm on f.BUS_HOTWORK_MEASURES_ID = hwtm.BUS_HOTWORK_MEASURES_ID and hwtm.HOTWORKAPPLICATION_ID = #{HOTWORKAPPLICATION_ID}
|
||||||
WHERE f.ISDELETE = '0'
|
WHERE f.ISDELETE = '0'
|
||||||
oRDER BY f.ORDERBY
|
oRDER BY f.ORDERBY
|
||||||
</select>
|
</select>
|
||||||
|
@ -485,8 +489,8 @@
|
||||||
<select id="getCountByMyApproval" parameterType="pd" resultType="pd">
|
<select id="getCountByMyApproval" parameterType="pd" resultType="pd">
|
||||||
select f.STATE ,fu.USER_ID,count(distinct HOTWORKAPPLICATION_ID) as count
|
select f.STATE ,fu.USER_ID,count(distinct HOTWORKAPPLICATION_ID) as count
|
||||||
from bus_hotworkapplication f
|
from bus_hotworkapplication f
|
||||||
left join bus_hotworkapplicationuser fu on fu.FOREIGN_KEY = f.HOTWORKAPPLICATION_ID
|
left join bus_hotworkapplicationuser fu on fu.FOREIGN_KEY = f.HOTWORKAPPLICATION_ID
|
||||||
and f.STATE = fu.state
|
and f.STATE = fu.state
|
||||||
where fu.user_id = #{USER_ID} AND fu.ISDELETE = '0' and f.STATE != 11 and f.STATE != -3
|
where fu.user_id = #{USER_ID} AND fu.ISDELETE = '0' and f.STATE != 11 and f.STATE != -3
|
||||||
GROUP BY f.STATE
|
GROUP BY f.STATE
|
||||||
</select>
|
</select>
|
||||||
|
@ -500,20 +504,20 @@
|
||||||
LEFT JOIN bus_hotworkapplicationuser fu ON fu.FOREIGN_KEY = f.HOTWORKAPPLICATION_ID
|
LEFT JOIN bus_hotworkapplicationuser fu ON fu.FOREIGN_KEY = f.HOTWORKAPPLICATION_ID
|
||||||
WHERE
|
WHERE
|
||||||
fu.user_id = #{USER_ID}
|
fu.user_id = #{USER_ID}
|
||||||
AND fu.STATE = '24'
|
AND fu.STATE = '24'
|
||||||
and f.STATE in ('1','2','3','4','5','6'
|
and f.STATE in ('1','2','3','4','5','6'
|
||||||
,'7','8','9')
|
,'7','8','9')
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<!-- 列表(全部) -->
|
<!-- 列表(全部) -->
|
||||||
<select id="getCountByDate" parameterType="pd" resultType="integer">
|
<select id="getCountByDate" parameterType="pd" resultType="integer">
|
||||||
select
|
select
|
||||||
count(*) as count
|
count(*) as count
|
||||||
from
|
from
|
||||||
<include refid="tableName"></include> f
|
<include refid="tableName"></include> f
|
||||||
where 1=1
|
where 1=1
|
||||||
and CREATOR >= #{startData}
|
and CREATOR >= #{startData}
|
||||||
and CREATOR <= #{endDate}
|
and CREATOR <= #{endDate}
|
||||||
</select>
|
</select>
|
||||||
<!-- 列表(全部) -->
|
<!-- 列表(全部) -->
|
||||||
<update id="updateState4ids" parameterType="pd" >
|
<update id="updateState4ids" parameterType="pd" >
|
||||||
|
@ -530,20 +534,20 @@
|
||||||
</update>
|
</update>
|
||||||
<insert id="saveJobNumber" parameterType="pd">
|
<insert id="saveJobNumber" parameterType="pd">
|
||||||
insert into
|
insert into
|
||||||
bus_hotworkapplicationnumber
|
bus_hotworkapplicationnumber
|
||||||
(
|
(
|
||||||
JOB_NUMBER
|
JOB_NUMBER
|
||||||
) values (
|
) values (
|
||||||
#{JOB_NUMBER}
|
#{JOB_NUMBER}
|
||||||
)
|
)
|
||||||
</insert>
|
</insert>
|
||||||
<select id="getJobNumber" parameterType="pd" resultType="integer">
|
<select id="getJobNumber" parameterType="pd" resultType="integer">
|
||||||
SELECT
|
SELECT
|
||||||
count(*) count
|
count(*) count
|
||||||
FROM
|
FROM
|
||||||
bus_hotworkapplicationnumber f
|
bus_hotworkapplicationnumber f
|
||||||
WHERE
|
WHERE
|
||||||
f.JOB_NUMBER LIKE CONCAT(CONCAT('%', #{JOB_NUMBER}),'%')
|
f.JOB_NUMBER LIKE CONCAT(CONCAT('%', #{JOB_NUMBER}),'%')
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<delete id="cleanUpJobNumber" parameterType="pd">
|
<delete id="cleanUpJobNumber" parameterType="pd">
|
||||||
|
@ -598,8 +602,23 @@
|
||||||
<select id="getCountByMyApprovalForDelayedHotWork" parameterType="pd" resultType="pd">
|
<select id="getCountByMyApprovalForDelayedHotWork" parameterType="pd" resultType="pd">
|
||||||
select f.STATE,u.USER_ID,count(distinct HOTWORKAPPLICATION_ID) as count
|
select f.STATE,u.USER_ID,count(distinct HOTWORKAPPLICATION_ID) as count
|
||||||
from bus_hotworkapplication f
|
from bus_hotworkapplication f
|
||||||
left join bus_hotworkapplicationuser fu on fu.FOREIGN_KEY = f.HOTWORKAPPLICATION_ID and f.STATE = fu.state
|
left join bus_hotworkapplicationuser fu on fu.FOREIGN_KEY = f.HOTWORKAPPLICATION_ID and f.STATE = fu.state
|
||||||
left join sys_user u on u.DEPARTMENT_ID = fu.USER_ID
|
left join sys_user u on u.DEPARTMENT_ID = fu.USER_ID
|
||||||
where u.USER_ID = #{USER_ID} AND fu.ISDELETE = '0' and f.STATE = 10
|
where u.USER_ID = #{USER_ID} AND fu.ISDELETE = '0' and f.STATE = 10
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- 强制结束动火 -->
|
||||||
|
<update id="forcedEndHotwork" parameterType="pd">
|
||||||
|
update
|
||||||
|
<include refid="tableName"></include>
|
||||||
|
set
|
||||||
|
STATE = #{STATE},
|
||||||
|
OPERATOR = #{OPERATOR},
|
||||||
|
OPERATTIME = #{OPERATTIME},
|
||||||
|
FORCED_END_STATE = #{state},
|
||||||
|
IS_FORCED_END ='1'
|
||||||
|
where
|
||||||
|
HOTWORKAPPLICATION_ID = #{HOTWORKAPPLICATION_ID}
|
||||||
|
</update>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|
Loading…
Reference in New Issue