浏览代码

事故完成,应急任务状态改为已完成

tags/v1.2.0^2
wanjing 1年前
父节点
当前提交
d8faa6bbde
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. +8
    -0
      tuoheng-service/tuoheng-admin/src/main/java/com/tuoheng/admin/service/accident/verify/AccidentVerifyCompletedService.java

+ 8
- 0
tuoheng-service/tuoheng-admin/src/main/java/com/tuoheng/admin/service/accident/verify/AccidentVerifyCompletedService.java 查看文件

@@ -57,6 +57,7 @@ public class AccidentVerifyCompletedService {
*
* 1、向机场推送返舱指令,无人机返回机场
* 2、修改该事故状态为完成
* 3、应急任务状态改为已完成
*
* @param request
* @return
@@ -75,6 +76,13 @@ public class AccidentVerifyCompletedService {

this.updateAccident(accident.getId(), userId);

// 修改原巡检任务状态为已完成
Inspection inspection = inspectionMapper.selectOne(new LambdaQueryWrapper<Inspection>()
.eq(Inspection::getId, accident.getAccidentInspectionId())
.eq(Inspection::getMark, MarkEnum.VALID.getCode()));
inspection.setStatus(InspectionStatusEnum.FLIGHT_COMPLETED.getCode());
inspectionMapper.updateById(inspection);

// 无人机回仓
this.droneReturn(accident.getInspectionId());


正在加载...
取消
保存