| | |
| | | @Autowired |
| | | private PlatformWarnEventServiceImpl platformWarnEventService; |
| | | @Autowired |
| | | private PlatformWarnEventMapper platformWarnEventMapper; |
| | | @Autowired |
| | | private MemberMapper memberMapper; |
| | | @Autowired |
| | | private WxNoticeConfigMapper wxNoticeConfigMapper; |
| | |
| | | if(Constants.equalsInteger(platformJob.getStatus(),Constants.PlatformJobStatus.DONE.getKey())){ |
| | | //如果已下发成功,标记已授权离园状态 |
| | | platformJob.setStatus(Constants.PlatformJobStatus.AUTHED_LEAVE.getKey()); |
| | | //删除报警信息 |
| | | platformWarnEventMapper.update(new UpdateWrapper<PlatformWarnEvent>().lambda() |
| | | .set(PlatformWarnEvent::getIsdeleted,Constants.ONE) |
| | | .eq(PlatformWarnEvent::getPlatformId,platformJob.getId()) |
| | | ); |
| | | } |
| | | }else{ |
| | | platformJob.setInHkstatus(Constants.THREE); |
| | |
| | | //存储操作日志 |
| | | savePlatformLog(Constants.PlatformJobLogType.DONE.getKey(),oldPlatformJob,platformJob , |
| | | Constants.PlatformJobLogType.DONE.getInfo()); |
| | | |
| | | //删除报警信息 |
| | | platformWarnEventMapper.update(new UpdateWrapper<PlatformWarnEvent>().lambda() |
| | | .set(PlatformWarnEvent::getIsdeleted,Constants.ONE) |
| | | .eq(PlatformWarnEvent::getPlatformId,platformJob.getId()) |
| | | ); |
| | | |
| | | if(Constants.equalsInteger(platformJob.getType(),Constants.THREE)){ |
| | | // 外协车装货 查询TMS 电子锁情况 |