092ab24d 张雷

Merge remote-tracking branch 'origin/master' into master

2 个父辈 74143070 9bccf323
1 package com.skua.modules.report.service.impl; 1 package com.skua.modules.report.service.impl;
2 2
3 import cn.hutool.core.util.StrUtil;
3 import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; 4 import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
4 import com.skua.common.constant.BusinessConstant; 5 import com.skua.common.constant.BusinessConstant;
5 import com.skua.common.constant.ReportConstant; 6 import com.skua.common.constant.ReportConstant;
...@@ -175,34 +176,46 @@ public class OperationReportServiceImpl implements IOperationReportService { ...@@ -175,34 +176,46 @@ public class OperationReportServiceImpl implements IOperationReportService {
175 176
176 // 翻译 177 // 翻译
177 Map<String, String> sysDepartDictMap = businessService.dictMap("sys_depart", null); 178 Map<String, String> sysDepartDictMap = businessService.dictMap("sys_depart", null);
179 Map<String, String> sysUserDictMap = businessService.dictMap("sys_user", null);
178 // 1. 重点工作事项:取重点事项推进情况里面,当月完成的重点事项记录 180 // 1. 重点工作事项:取重点事项推进情况里面,当月完成的重点事项记录
179 QueryWrapper<?> queryWrapper1 = new QueryWrapper<>(); 181 QueryWrapper<?> queryWrapper1 = new QueryWrapper<>();
180 queryWrapper1.eq("status", "2") 182 queryWrapper1.eq("status", "2")
181 .ge("end_time", startDate) 183 .ge("end_time", startDate)
182 .le("end_time", endDate); 184 .le("end_time", endDate);
183 List<Map<String, Object>> queryMapList1 = baseService.queryForList("select * from f_major_issues_process", queryWrapper1); 185 List<Map<String, Object>> queryMapList1 = baseService.queryForList("select * from f_major_issues_process", queryWrapper1);
184 for (Map<String, Object> item: queryMapList1) { 186 List<Map<String, Object>> priorityWorkItemList = queryMapList1.stream().map(item -> {
185 List<Map<String, Object>> priorityWorkItemList = new ArrayList<>(); 187 Map<String, Object> entityMap = item.keySet().stream().collect(Collectors.toMap(StrUtil::toCamelCase, key -> (item.get(key) == null ? "" : item.get(key))));
186 priorityWorkItemList.add(new HashMap<String, Object>(){{ 188 entityMap.put("departName", sysDepartDictMap.get(item.get("depart_id")));
187 put("key0", item.get("depart_id")); 189 return entityMap;
188 put("value0", sysDepartDictMap.get(item.get("depart_id"))); 190 }).collect(Collectors.toList());
189 }}); 191 productDataVO.setPriorityWorkItemList(priorityWorkItemList);
190 productDataVO.setPriorityWorkItemList(priorityWorkItemList);
191 }
192 // 2: 隐患排查巡检:取风险点巡检记录里面巡检类型是生产巡检的数据 192 // 2: 隐患排查巡检:取风险点巡检记录里面巡检类型是生产巡检的数据
193 QueryWrapper<?> queryWrapper2 = new QueryWrapper<>(); 193 QueryWrapper<?> queryWrapper2 = new QueryWrapper<>();
194 queryWrapper2.eq("inspection_type", "1") 194 queryWrapper2.eq("inspection_type", "1")
195 .eq("status", "2")
195 .ge("end_date", startDate + BusinessConstant.startTimeSuffix) 196 .ge("end_date", startDate + BusinessConstant.startTimeSuffix)
196 .le("end_date", endDate + BusinessConstant.endTimeSuffix); 197 .le("end_date", endDate + BusinessConstant.endTimeSuffix);
197 List<Map<String, Object>> queryMapList2 = baseService.queryForList("select * from danger_inspection_record", queryWrapper2); 198 List<Map<String, Object>> queryMapList2 = baseService.queryForList("select * from danger_inspection_record", queryWrapper2);
198 for (Map<String, Object> item: queryMapList2) { 199 Map<String, String> recordId2CountMap;
199 List<Map<String, Object>> hiddenDangerInspectionList = new ArrayList<>(); 200 if (!queryMapList2.isEmpty()) {
200 hiddenDangerInspectionList.add(new HashMap<String, Object>(){{ 201 List<String> recordIdList = queryMapList2.stream().map(item -> ConvertUtils.getString(item.get("id"))).collect(Collectors.toList());
201 put("key0", item.get("depart_id")); 202 QueryWrapper<?> tmpQueryWrapper = new QueryWrapper<>();
202 put("value0", sysDepartDictMap.get(item.get("depart_id"))); 203 tmpQueryWrapper.in("danger_inspection_record.id", recordIdList)
203 }}); 204 .eq("danger_inspection_item.status", "0")
204 productDataVO.setHiddenDangerInspectionList(hiddenDangerInspectionList); 205 .groupBy("danger_inspection_record.id");
206 List<Map<String, Object>> tmpQueryMapList = baseService.queryForList("select danger_inspection_record.id as id, count(*) as total from danger_inspection_item left join danger_inspection_info on danger_inspection_item.inspection_info_id = danger_inspection_info.id left join danger_inspection_record on danger_inspection_info.inspection_record_id = danger_inspection_record.id", tmpQueryWrapper);
207 recordId2CountMap = tmpQueryMapList.stream().collect(Collectors.toMap(item -> ConvertUtils.getString(item.get("id")), item -> ConvertUtils.getString(item.get("total"))));
208 } else {
209 recordId2CountMap = new HashMap<>();
205 } 210 }
211 List<Map<String, Object>> hiddenDangerInspectionList = queryMapList2.stream().map(item -> {
212 Map<String, Object> entityMap = item.keySet().stream().collect(Collectors.toMap(StrUtil::toCamelCase, key -> (item.get(key) == null ? "" : item.get(key))));
213 entityMap.put("departName", sysDepartDictMap.get(item.get("depart_id")));
214 entityMap.put("realname", sysUserDictMap.get(item.get("report_user")));
215 entityMap.put("exceptionCount", recordId2CountMap.getOrDefault(item.get("id"), "0"));
216 return entityMap;
217 }).collect(Collectors.toList());
218 productDataVO.setHiddenDangerInspectionList(hiddenDangerInspectionList);
206 return productDataVO; 219 return productDataVO;
207 } 220 }
208 221
......
...@@ -10,6 +10,7 @@ import javax.servlet.http.HttpServletResponse; ...@@ -10,6 +10,7 @@ import javax.servlet.http.HttpServletResponse;
10 import cn.hutool.json.JSONObject; 10 import cn.hutool.json.JSONObject;
11 import com.skua.core.context.BaseContextHandler; 11 import com.skua.core.context.BaseContextHandler;
12 import com.skua.core.query.QueryGenerator; 12 import com.skua.core.query.QueryGenerator;
13 import com.skua.modules.equipment.service.IEquipmentAssetService;
13 import org.apache.commons.lang.StringUtils; 14 import org.apache.commons.lang.StringUtils;
14 import org.apache.poi.hssf.usermodel.HSSFWorkbook; 15 import org.apache.poi.hssf.usermodel.HSSFWorkbook;
15 import org.apache.poi.ss.usermodel.Sheet; 16 import org.apache.poi.ss.usermodel.Sheet;
...@@ -109,6 +110,8 @@ public class EquipmentController { ...@@ -109,6 +110,8 @@ public class EquipmentController {
109 @Autowired 110 @Autowired
110 private IEquipmentInfoService equipmentInfoService; 111 private IEquipmentInfoService equipmentInfoService;
111 @Autowired 112 @Autowired
113 private IEquipmentAssetService equipmentAssetService;
114 @Autowired
112 private Key2ValueService key2ValueService; 115 private Key2ValueService key2ValueService;
113 116
114 117
...@@ -384,17 +387,26 @@ public class EquipmentController { ...@@ -384,17 +387,26 @@ public class EquipmentController {
384 Result<?> result = new Result<>(); 387 Result<?> result = new Result<>();
385 Equipment equipment = EquipmentUtils.equipDTO2Entity(equipmentDTO); 388 Equipment equipment = EquipmentUtils.equipDTO2Entity(equipmentDTO);
386 // todo 前端未传,特殊处理 389 // todo 前端未传,特殊处理
387 equipment.getEquipmentInfo().setAssetId(equipment.getEquipmentAsset().getId()); 390 // equipment.getEquipmentInfo().setAssetId(equipment.getEquipmentAsset().getId());
388 // equipment.getEquipmentExt().setInfoId(equipment.getEquipmentInfo().getId()); 391 // equipment.getEquipmentExt().setInfoId(equipment.getEquipmentInfo().getId());
389 // 校验ID是否一致 392 // 校验ID是否一致
390 JoinSqlUtils.checkSqlIdFunc(equipment); 393 // JoinSqlUtils.checkSqlIdFunc(equipment);
391 // 与点表有关联的台账不允许删除 394 // 与点表有关联的台账不允许删除
392 List<SysMonitorMetricInfo> monitorMetricInfo = sysMonitorMetricInfoService.list(new QueryWrapper<SysMonitorMetricInfo>().eq("equipment_code", equipmentDTO.getEquipmentInfo().getId())); 395 List<SysMonitorMetricInfo> monitorMetricInfo = sysMonitorMetricInfoService.list(new QueryWrapper<SysMonitorMetricInfo>().eq("equipment_code", equipmentDTO.getEquipmentInfo().getId()));
393 if (monitorMetricInfo!=null&&monitorMetricInfo.size()>0) { 396 if (monitorMetricInfo!=null&&monitorMetricInfo.size()>0) {
394 result.error500("与运行点表有关联的设备台账不允许删除"); 397 result.error500("与运行点表有关联的设备台账不允许删除");
395 return result; 398 return result;
396 } 399 }
397 iCrudSqlService.delete(equipment); 400 // iCrudSqlService.delete(equipment);
401 transactionTemplate.execute((transactionStatus -> {
402 if (StringUtils.isNotEmpty(equipment.getEquipmentInfo().getId())) {
403 equipmentInfoService.removeById(equipment.getEquipmentInfo().getId());
404 }
405 if (StringUtils.isNotEmpty(equipment.getEquipmentAsset().getId())) {
406 equipmentAssetService.removeById(equipment.getEquipmentAsset().getId());
407 }
408 return 1;
409 }));
398 return Result.ok("删除成功!"); 410 return Result.ok("删除成功!");
399 } 411 }
400 412
......
...@@ -158,19 +158,19 @@ public class InspectionAnalysisController { ...@@ -158,19 +158,19 @@ public class InspectionAnalysisController {
158 @GetMapping("/getInspectionTaskIndicators") 158 @GetMapping("/getInspectionTaskIndicators")
159 public Result<InspectionTaskIndicatorsVO> getInspectionTaskIndicators(String startDate,String endDate){ 159 public Result<InspectionTaskIndicatorsVO> getInspectionTaskIndicators(String startDate,String endDate){
160 Result<InspectionTaskIndicatorsVO> result = new Result<>(); 160 Result<InspectionTaskIndicatorsVO> result = new Result<>();
161 InspectionTaskIndicatorsVO inspectionTaskIndicatorsVO = inspectionAnalysisService.getInspectionTaskIndicatorsNew(startDate,endDate); 161 InspectionTaskIndicatorsVO inspectionTaskIndicatorsVO = inspectionAnalysisService.getInspectionTaskIndicators(startDate,endDate);
162 result.setSuccess(true); 162 result.setSuccess(true);
163 result.setResult(inspectionTaskIndicatorsVO); 163 result.setResult(inspectionTaskIndicatorsVO);
164 return result; 164 return result;
165 } 165 }
166 @ApiOperation(value = "巡检分析-巡检任务指标-详情", notes = "巡检分析-巡检任务指标-详情") 166 @ApiOperation(value = "巡检分析-巡检任务指标-详情", notes = "巡检分析-巡检任务指标-详情")
167 @GetMapping("/getInspectionTaskIndicatorsDetail") 167 @GetMapping("/getInspectionTaskIndicatorsDetail")
168 public Result<List<InspectionEquipIndicatorsDetailVO>> getInspectionTaskIndicatorsDetail(String departId,String startDate,String endDate){ 168 public Result<List<InspectionTaskIndicatorsVO>> getInspectionTaskIndicatorsDetail(String departId,String startDate,String endDate){
169 Result<List<InspectionEquipIndicatorsDetailVO>> result = new Result<>(); 169 Result<List<InspectionTaskIndicatorsVO>> result = new Result<>();
170 if(StringUtils.isEmpty(departId)){ 170 if(StringUtils.isEmpty(departId)){
171 departId = BaseContextHandler.getDeparts(); 171 departId = BaseContextHandler.getDeparts();
172 } 172 }
173 List<InspectionEquipIndicatorsDetailVO> dataList = inspectionAnalysisService.getInspectionTaskIndicatorsDetail( JSUtils.quoteEach(departId,",") ,startDate,endDate); 173 List<InspectionTaskIndicatorsVO> dataList = inspectionAnalysisService.getInspectionTaskIndicatorsDetail( JSUtils.quoteEach(departId,",") ,startDate,endDate);
174 result.setSuccess(true); 174 result.setSuccess(true);
175 result.setResult(dataList); 175 result.setResult(dataList);
176 return result; 176 return result;
......
...@@ -28,7 +28,7 @@ public interface IInspectionAnalysisService { ...@@ -28,7 +28,7 @@ public interface IInspectionAnalysisService {
28 * @param endDate 28 * @param endDate
29 * @return 29 * @return
30 */ 30 */
31 List<InspectionEquipIndicatorsDetailVO> getInspectionTaskIndicatorsDetail(String departIds, String startDate, String endDate); 31 List<InspectionTaskIndicatorsVO> getInspectionTaskIndicatorsDetail(String departIds, String startDate, String endDate);
32 /*** 32 /***
33 * 巡检分析-巡检设备指标 33 * 巡检分析-巡检设备指标
34 * @param startDate 34 * @param startDate
......
...@@ -34,16 +34,4 @@ public class InspectionAbnormalItemsTrendVO { ...@@ -34,16 +34,4 @@ public class InspectionAbnormalItemsTrendVO {
34 private Integer notCheckedItemsCount; 34 private Integer notCheckedItemsCount;
35 @ApiModelProperty(value = "异常项数量") 35 @ApiModelProperty(value = "异常项数量")
36 private Integer abnormalItemsCount; 36 private Integer abnormalItemsCount;
37
38 public Integer getNotCheckedItemsCount() {
39 if (totalCount != null && checkedItemsCount != null) {
40 if (totalCount - checkedItemsCount < 0) {
41 return checkedItemsCount - totalCount;
42 } else {
43 return totalCount - checkedItemsCount;
44 }
45 } else {
46 return 0;
47 }
48 }
49 } 37 }
......
...@@ -26,4 +26,6 @@ public class InspectionTaskIndicatorsVO { ...@@ -26,4 +26,6 @@ public class InspectionTaskIndicatorsVO {
26 private String abnormalRate; 26 private String abnormalRate;
27 @ApiModelProperty(value = "异常项处理率") 27 @ApiModelProperty(value = "异常项处理率")
28 private String processedAbnormalRate; 28 private String processedAbnormalRate;
29
30 private String departName;
29 } 31 }
......
...@@ -45,4 +45,32 @@ public class TaskPoolConfig { ...@@ -45,4 +45,32 @@ public class TaskPoolConfig {
45 executor.initialize(); 45 executor.initialize();
46 return executor; 46 return executor;
47 } 47 }
48
49 @Bean(name="taskExecutor2")
50 public ThreadPoolTaskExecutor taskExecutor2() {
51 ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
52 //配置核心线程数:就是线程池中的核心线程数量,这几个核心线程,只是在没有用的时候,也不会被回收
53 executor.setCorePoolSize(50);
54 //配置最大线程数:就是线程池中可以容纳的最大线程的数量
55 executor.setMaxPoolSize(200);
56 //配置队列大小
57 executor.setQueueCapacity(500);
58 //线程池维护线程所允许的空闲时间:就是线程池中除了核心线程之外的其他的最长可以保留的时间,因为在线程池中,除了核心线程即使在无任务的情况下也不能被清除,其余的都是有存活时间的,意思就是非核心线程可以保留的最长的空闲时间
59 executor.setKeepAliveSeconds(60);
60 //配置线程池中的线程的名称前缀
61 executor.setThreadNamePrefix("task-executor2-");
62
63 // handler,是一种拒绝策略,我们可以在任务满了之后,拒绝执行某些任务。
64 // rejection-policy:当pool已经达到max size的时候,如何处理新任务
65 // CALLER_RUNS:不在新线程中执行任务,而是有调用者所在的线程来执行
66 executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
67 // AbortPolicy:用于被拒绝任务的处理程序,它将抛出RejectedExecutionException
68 // CallerRunsPolicy:用于被拒绝任务的处理程序,它直接在execute方法的调用线程中运行被拒绝的任务。
69 // DiscardOldestPolicy:用于被拒绝任务的处理程序,它放弃最旧的未处理请求,然后重试execute。
70 // DiscardPolicy:用于被拒绝任务的处理程序,默认情况下它将丢弃被拒绝的任务。
71
72 //执行初始化
73 executor.initialize();
74 return executor;
75 }
48 } 76 }
...\ No newline at end of file ...\ No newline at end of file
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!