3d30ef3b sonin

运营 月/季报 修改

1 个父辈 c51112b3
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
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!