Browse Source

交通事件 处置页修改

develop
王兴琳 9 months ago
parent
commit
46ae553dad
  1. 4
      zc-business/src/main/java/com/zc/business/domain/DcEventTrafficControl.java
  2. 67
      zc-business/src/main/java/com/zc/business/service/impl/DcEventServiceImpl.java

4
zc-business/src/main/java/com/zc/business/domain/DcEventTrafficControl.java

@ -1,6 +1,7 @@
package com.zc.business.domain; package com.zc.business.domain;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
@ -11,9 +12,12 @@ import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity; import com.ruoyi.common.core.domain.BaseEntity;
import java.util.List;
/** /**
* 交通管制事件 * 交通管制事件
"管制设施"为事件事件子类对象 dc_event_traffic_control "管制设施"为事件事件子类对象 dc_event_traffic_control
* *
* @author ruoyi * @author ruoyi

67
zc-business/src/main/java/com/zc/business/service/impl/DcEventServiceImpl.java

@ -6,12 +6,13 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.common.core.domain.AjaxResult; import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.utils.DateUtils; import com.ruoyi.common.utils.DateUtils;
import com.ruoyi.common.utils.SecurityUtils; import com.ruoyi.common.utils.SecurityUtils;
import com.ruoyi.common.utils.StakeMarkUtils;
import com.ruoyi.common.utils.StringUtils; import com.ruoyi.common.utils.StringUtils;
import com.ruoyi.common.utils.uuid.IdUtils; import com.ruoyi.common.utils.uuid.IdUtils;
import com.ruoyi.system.service.ISysDeptService; import com.ruoyi.system.service.ISysDeptService;
import com.zc.business.domain.*; import com.zc.business.domain.*;
import com.zc.business.enums.*; import com.zc.business.enums.EventSubclass;
import com.zc.business.enums.EventSubclassEnum;
import com.zc.business.enums.ValueConverter;
import com.zc.business.mapper.*; import com.zc.business.mapper.*;
import com.zc.business.service.IDcEventProcessService; import com.zc.business.service.IDcEventProcessService;
import com.zc.business.service.IDcEventService; import com.zc.business.service.IDcEventService;
@ -146,7 +147,9 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
//设置事件Id UUID无下划线格式32 //设置事件Id UUID无下划线格式32
String uuid = IdUtils.fastSimpleUUID(); String uuid = IdUtils.fastSimpleUUID();
dcEvent.setId(uuid); dcEvent.setId(uuid);
dcEvent.setEventState(0L); if (dcEvent.getEventState() == null) {
dcEvent.setEventState(0L);
}
//获取部门信息 //获取部门信息
dcEvent.setDeptId(SecurityUtils.getDeptId()); dcEvent.setDeptId(SecurityUtils.getDeptId());
//用户 //用户
@ -170,7 +173,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
String facilityId = String.valueOf(dcEvent.getDcEventTrafficControl().getFacilityIds()[0]); String facilityId = String.valueOf(dcEvent.getDcEventTrafficControl().getFacilityIds()[0]);
dcEvent.setStakeMark(extracted(facilityId)); dcEvent.setStakeMark(extracted(facilityId));
} }
if (eventType == 3 && dcEvent.getDcEventTrafficControl().getFacilityId() != null && dcEvent.getDcEventTrafficControl().getFacilityId()>0) { if (eventType == 3 && dcEvent.getDcEventTrafficControl().getFacilityId() != null && dcEvent.getDcEventTrafficControl().getFacilityId() > 0) {
String facilityId = String.valueOf(dcEvent.getDcEventTrafficControl().getFacilityId()); String facilityId = String.valueOf(dcEvent.getDcEventTrafficControl().getFacilityId());
dcEvent.setStakeMark(extracted(facilityId)); dcEvent.setStakeMark(extracted(facilityId));
} }
@ -179,6 +182,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
String facilityId = String.valueOf(dcEvent.getDcEventTrafficCongestion().getFacilityId()); String facilityId = String.valueOf(dcEvent.getDcEventTrafficCongestion().getFacilityId());
dcEvent.setStakeMark(extracted(facilityId)); dcEvent.setStakeMark(extracted(facilityId));
} }
//施工建设 //施工建设
if (eventType == 7 && dcEvent.getDcEventConstruction().getFacilityId() != null) { if (eventType == 7 && dcEvent.getDcEventConstruction().getFacilityId() != null) {
String facilityId = String.valueOf(dcEvent.getDcEventConstruction().getFacilityId()); String facilityId = String.valueOf(dcEvent.getDcEventConstruction().getFacilityId());
@ -223,9 +227,23 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
//交通管制 //交通管制
case 3: case 3:
if (dcEvent.getDcEventTrafficControl() != null) { if (dcEvent.getDcEventTrafficControl() != null) {
if (dcEvent.getDcEventTrafficControl().getFacilityId()==null || dcEvent.getDcEventTrafficControl().getFacilityId()>0){ if (dcEventId == null) {//非首页进入
if (dcEvent.getDcEventTrafficControl().getFacilityId() == null || dcEvent.getDcEventTrafficControl().getFacilityId() > 0) {
dcEvent.getDcEventTrafficControl().setId(uuid);
int i6 = dcEventTrafficControlMapper.insertDcEventTrafficControl(dcEvent.getDcEventTrafficControl());
break;
}
}
//事件处置页
if (dcEvent.getEventState() == 1 && dcEvent.getDcEventTrafficControl().getFacilityIds() == null) {//新增的数据不是收费站
updateDcEventState(dcEvent.getId(), dcEvent.getEventState().intValue());
dcEvent.getDcEventTrafficControl().setId(uuid); dcEvent.getDcEventTrafficControl().setId(uuid);
int i6 = dcEventTrafficControlMapper.insertDcEventTrafficControl(dcEvent.getDcEventTrafficControl()); int i6 = dcEventTrafficControlMapper.insertDcEventTrafficControl(dcEvent.getDcEventTrafficControl());
DcEvent dcEvent1 = new DcEvent();
dcEvent1.setId(dcEventId);//事件id
dcEvent1.setEventNature(1l);//首发事件
dcEvent1.setLinkId(uuid);//关联管制事件id
dcEventMapper.updateDcEventLinkId(dcEvent1);//修改事件性质
break; break;
} }
// 插入多个收费站 // 插入多个收费站
@ -325,7 +343,11 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
//新增第一条数据 //新增第一条数据
dcEvent.setId(map.get("facilityId" + i)); dcEvent.setId(map.get("facilityId" + i));
dcEvent.setEventState(0L);
if (dcEvent.getEventState() == null) {
dcEvent.setEventState(0L);
}
dcEvent.setDeptId(SecurityUtils.getDeptId()); dcEvent.setDeptId(SecurityUtils.getDeptId());
dcEvent.setUserId(SecurityUtils.getUserId()); dcEvent.setUserId(SecurityUtils.getUserId());
dcEvent.setCreateTime(DateUtils.getNowDate()); dcEvent.setCreateTime(DateUtils.getNowDate());
@ -346,7 +368,6 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
String linkId = sb.toString(); String linkId = sb.toString();
dcEvent.setLinkId(linkId); dcEvent.setLinkId(linkId);
System.out.println(linkId);
//交通管制 //交通管制
if (eventType == 3 && dcEvent.getDcEventTrafficControl().getFacilityIds()[i] != null) { if (eventType == 3 && dcEvent.getDcEventTrafficControl().getFacilityIds()[i] != null) {
@ -354,8 +375,11 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
dcEvent.setStakeMark(extracted(facilityId)); dcEvent.setStakeMark(extracted(facilityId));
} }
dcEventMapper.insertDcEvent(dcEvent); dcEventMapper.insertDcEvent(dcEvent);
extracted(dcEvent); extracted(dcEvent);
//首页事件 交通管制事件 添加 状态默认为 1 处置中
updateDcEventState(dcEvent.getId(), dcEvent.getEventState().intValue());
int i6 = dcEventTrafficControlMapper.insertDcEventTrafficControl(dcEvent.getDcEventTrafficControl()); int i6 = dcEventTrafficControlMapper.insertDcEventTrafficControl(dcEvent.getDcEventTrafficControl());
} }
} }
@ -702,9 +726,9 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
} }
*/ */
// 事件子类校验 // 事件子类校验
for (EventSubclass value : EventSubclass.values()) { for (EventSubclass value : EventSubclass.values()) {
if (value.getDescription().equals(dcEvent.getEventSubclass())){ if (value.getDescription().equals(dcEvent.getEventSubclass())) {
dcEvent.setEventSubclass(value.getCode()); dcEvent.setEventSubclass(value.getCode());
} }
} }
@ -716,9 +740,10 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
}*/ }*/
//事件方向 //事件方向
if (dcEvent.getDirection().equals("菏泽方向")){ if (dcEvent.getDirection().equals("菏泽方向")) {
dcEvent.setDirection("1"); dcEvent.setDirection("1");
} if (dcEvent.getDirection().equals("济南方向")){ }
if (dcEvent.getDirection().equals("济南方向")) {
dcEvent.setDirection("3"); dcEvent.setDirection("3");
} }
@ -818,7 +843,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
int i7 = -1; int i7 = -1;
for (String id : ids) { for (String id : ids) {
DcEvent dcEvent = dcEventMapper.selectDcEventMainById(id); DcEvent dcEvent = dcEventMapper.selectDcEventMainById(id);
if (dcEvent==null){ if (dcEvent == null) {
continue; continue;
} }
// todo 删除信息发布记录 // todo 删除信息发布记录
@ -1034,18 +1059,18 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
@Override @Override
public int updateDcEventState(String id, int state) { public int updateDcEventState(String id, int state) {
//多次修改请求 //多次修改请求
DcEvent dcEvent1 = dcEventMapper.selectDcEventById(id); DcEvent dcEvent1 = dcEventMapper.selectDcEventById(id);
//事件删除 后 返回成功 //事件删除 后 返回成功
if (dcEvent1 ==null){ if (dcEvent1 == null) {
return 1; return 1;
} }
//事件状态已被修改 返回成功 //事件状态已被修改 返回成功
if (dcEvent1.getEventState()==state){ if (dcEvent1.getEventState() == state) {
return 1; return 1;
} }
int i = dcEventMapper.updateDcEventState(id, state); int i = dcEventMapper.updateDcEventState(id, state);
if (i > 0) { if (i > 0) {
DcEvent dcEvent = dcEventMapper.selectDcEventMainById(id); DcEvent dcEvent = dcEventMapper.selectDcEventMainById(id);
@ -1530,7 +1555,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
} }
} }
String label = ValueConverter.eventLabel(result.getRightPath()); String label = ValueConverter.eventLabel(result.getRightPath());
if (StringUtils.isNotEmpty(label)){ if (StringUtils.isNotEmpty(label)) {
context = context + label + "修改为:" + result.getRight() + ","; context = context + label + "修改为:" + result.getRight() + ",";
} }
} }
@ -1609,10 +1634,10 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl
DcEvent dcEvent = dcEventMapper.selectDcEventById(eventId); DcEvent dcEvent = dcEventMapper.selectDcEventById(eventId);
if (dcEvent.getEventType() == null || (dcEvent.getEventType() != 1 && dcEvent.getEventType() != 2 && dcEvent.getEventType() != 6)){ if (dcEvent.getEventType() == null || (dcEvent.getEventType() != 1 && dcEvent.getEventType() != 2 && dcEvent.getEventType() != 6)) {
return AjaxResult.error("该事件类型无需清障!"); return AjaxResult.error("该事件类型无需清障!");
} }
if (dcEvent.getEventState() != null && dcEvent.getEventState() == 2){ if (dcEvent.getEventState() != null && dcEvent.getEventState() == 2) {
return AjaxResult.error("该事件已结束,无法进行操作!"); return AjaxResult.error("该事件已结束,无法进行操作!");
} }
int i = dcEventMapper.selectClearInfo(eventId); int i = dcEventMapper.selectClearInfo(eventId);

Loading…
Cancel
Save