|
|
@ -650,6 +650,7 @@ public class DcWarningServiceImpl implements IDcWarningService |
|
|
|
mapAll.put("existence",0); |
|
|
|
return AjaxResult.success(mapAll); |
|
|
|
} |
|
|
|
mapAll.put("dispatchId",dcDispatch.get("id")); |
|
|
|
mapAll.put("existence",1); |
|
|
|
HashMap<String, Object> map = dcWarningMapper.selectDcDispatch(dcWarning.getId());//获取机构id与资源id
|
|
|
|
if (map!=null){ |
|
|
@ -855,6 +856,64 @@ public class DcWarningServiceImpl implements IDcWarningService |
|
|
|
dcEventProcessService.insertDcEventProcess(dcEventProcess); |
|
|
|
return 1; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public HashMap selectDispatchId(String eventId) { |
|
|
|
return dcWarningMapper.selectDispatchId(eventId); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Integer updateDispatchSource(HashMap map) { |
|
|
|
DcDispatchResource dcDispatchResource = new DcDispatchResource(); |
|
|
|
Long dispatchId = Long.parseLong(map.get("dispatchId").toString()); |
|
|
|
dcWarningMapper.deleteDispatchResource(dispatchId);//删除全部属于该调度记录下的全部资源
|
|
|
|
ArrayList<Map<String,Object>> employeesArray = (ArrayList<Map<String,Object>>) map.get("employees");//取出人员
|
|
|
|
String context = ""; |
|
|
|
if (employeesArray!=null&&employeesArray.size()>0) { |
|
|
|
context += "路管人员"; |
|
|
|
for (Map<String,Object> array : employeesArray) { |
|
|
|
dcDispatchResource.setDispatchType(1);//类型
|
|
|
|
dcDispatchResource.setResourceId(Long.valueOf(array.get("id").toString()));//资源id
|
|
|
|
dcDispatchResource.setDispatchId(dispatchId);//关联调度记录
|
|
|
|
Integer integer = dcWarningMapper.insertDispatchResource(dcDispatchResource); |
|
|
|
context = context + array.get("name").toString() + "、"; |
|
|
|
if (integer == 0) { |
|
|
|
throw new RuntimeException("插入资源失败"); |
|
|
|
} |
|
|
|
} |
|
|
|
context = context.substring(0,context.length() -1); |
|
|
|
context += "参与事件救援"; |
|
|
|
} |
|
|
|
ArrayList<Map<String,Object>> vehicleArray = (ArrayList<Map<String,Object>>) map.get("vehicle");////取出车辆
|
|
|
|
if (vehicleArray!=null&&vehicleArray.size()>0) { |
|
|
|
if (context.length() > 0){ |
|
|
|
context += ","; |
|
|
|
} |
|
|
|
context += "救援车辆"; |
|
|
|
for (Map<String,Object> array : vehicleArray) { |
|
|
|
dcDispatchResource.setDispatchType(2); |
|
|
|
dcDispatchResource.setResourceId(Long.valueOf(array.get("id").toString())); |
|
|
|
dcDispatchResource.setDispatchId(dispatchId); |
|
|
|
Integer integer = dcWarningMapper.insertDispatchResource(dcDispatchResource); |
|
|
|
|
|
|
|
context = context + array.get("vehiclePlate").toString() + "、"; |
|
|
|
if (integer == 0) { |
|
|
|
throw new RuntimeException("插入资源失败"); |
|
|
|
} |
|
|
|
} |
|
|
|
context = context.substring(0,context.length() -1); |
|
|
|
context += "参与事件救援"; |
|
|
|
} |
|
|
|
|
|
|
|
DcDispatch dcDispatchEventId = dcWarningMapper.selectDcDispatchById(dispatchId); |
|
|
|
DcEventProcess dcEventProcess = new DcEventProcess(); |
|
|
|
dcEventProcess.setEventId(dcDispatchEventId.getEventId()); |
|
|
|
dcEventProcess.setSource(1); |
|
|
|
dcEventProcess.setContext(context); |
|
|
|
dcEventProcessService.insertDcEventProcess(dcEventProcess); |
|
|
|
return 1; |
|
|
|
} |
|
|
|
|
|
|
|
//误报解除
|
|
|
|
@Override |
|
|
|
public Integer falseAlarmResolution(DcWarning dcWarning) { |
|
|
|