|
|
|
@ -10,7 +10,6 @@ import com.baomidou.mybatisplus.core.toolkit.ObjectUtils;
|
|
|
|
|
import com.hnac.hzims.common.logs.utils.StringUtils; |
|
|
|
|
import com.hnac.hzims.message.MessageConstants; |
|
|
|
|
import com.hnac.hzims.message.dto.BusinessMessageDTO; |
|
|
|
|
import com.hnac.hzims.message.dto.MessagePushRecordDto; |
|
|
|
|
import com.hnac.hzims.message.fegin.IMessageClient; |
|
|
|
|
import com.hnac.hzims.middle.process.feign.ProcessDictFeignService; |
|
|
|
|
import com.hnac.hzims.middle.process.to.ProcessWorkFlowResponse; |
|
|
|
@ -59,7 +58,6 @@ import org.springblade.system.feign.ISysClient;
|
|
|
|
|
import org.springblade.system.user.cache.UserCache; |
|
|
|
|
import org.springblade.system.user.entity.User; |
|
|
|
|
import org.springblade.system.user.feign.IUserClient; |
|
|
|
|
import org.springframework.beans.BeanUtils; |
|
|
|
|
import org.springframework.beans.factory.annotation.Value; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
@ -963,7 +961,7 @@ public class TicketProcessServiceImpl implements TicketProcessService {
|
|
|
|
|
for (WorkTicketSafetyMeasureEntity measureVO : workTicketSafetyMeasureEntities) { |
|
|
|
|
String type = measureEnum.getType(); |
|
|
|
|
if (tempIndex != Integer.valueOf(type)) { |
|
|
|
|
index = 1; |
|
|
|
|
// index = 1;
|
|
|
|
|
tempIndex++; |
|
|
|
|
} |
|
|
|
|
log.info("获取安全措施的信息: {}", measureVO); |
|
|
|
@ -984,7 +982,7 @@ public class TicketProcessServiceImpl implements TicketProcessService {
|
|
|
|
|
//验证工作措施是有有数据
|
|
|
|
|
this.isMatterLibraryList(workTicketInfoMap1); |
|
|
|
|
// 工作地点保留带电部位或注意事项
|
|
|
|
|
this.matterLibraryListWithMap(workTicketInfoMap1); |
|
|
|
|
matterLibraryListWithMap(workTicketInfoMap1); |
|
|
|
|
result.putAll(workTicketInfoMap1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1025,12 +1023,13 @@ public class TicketProcessServiceImpl implements TicketProcessService {
|
|
|
|
|
List<TicketInfoDanger> ticketInfoDangers = workTicketVo.getTicketInfoDangers(); |
|
|
|
|
if (CollectionUtils.isNotEmpty(ticketInfoDangers)) { |
|
|
|
|
Map<String, List<Map<String, Object>>> map = new HashMap<>(); |
|
|
|
|
int index = 1; |
|
|
|
|
int[] index = {1}; |
|
|
|
|
List<Map<String, Object>> collect = ticketInfoDangers.stream().map(item -> { |
|
|
|
|
Map<String, Object> newItem = new HashMap<>(); |
|
|
|
|
newItem.put("index", index); |
|
|
|
|
newItem.put("index", index[0]); |
|
|
|
|
newItem.put("maintenance", item.getMaintenance() == null ? "\u00A0" : item.getMaintenance()); |
|
|
|
|
newItem.put("dangerousPoint", item.getDangerousPoint() == null ? "\u00A0" : item.getDangerousPoint()); |
|
|
|
|
index[0]++; |
|
|
|
|
return newItem; |
|
|
|
|
}).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
@ -1041,7 +1040,7 @@ public class TicketProcessServiceImpl implements TicketProcessService {
|
|
|
|
|
WordMapUtils.newMapWithList("ticketInfoDangers", result, true, 4, "maintenance", "dangerousPoint"); |
|
|
|
|
|
|
|
|
|
//7. 是否包含
|
|
|
|
|
this.isExists(result); |
|
|
|
|
isExists(result); |
|
|
|
|
//8. 存入新的数据
|
|
|
|
|
this.addMapPut(result); |
|
|
|
|
|
|
|
|
|