修改:进路区段故障占用时无法办理
修改:删除扣车批量操作bug
This commit is contained in:
parent
bc5b95df5f
commit
ec0b05323c
@ -121,6 +121,7 @@ public class DraftMapRouteServiceImpl implements DraftMapRouteService {
|
|||||||
update.setName(routeNewVO.getName());
|
update.setName(routeNewVO.getName());
|
||||||
update.setSetOverlapInCtc(routeNewVO.isSetOverlapInCtc());
|
update.setSetOverlapInCtc(routeNewVO.isSetOverlapInCtc());
|
||||||
update.setOverlapCode(routeNewVO.getOverlapCode());
|
update.setOverlapCode(routeNewVO.getOverlapCode());
|
||||||
|
update.setHoldStandList(routeNewVO.getHoldStandList());
|
||||||
DraftMapRoute db = update.convert2Draft();
|
DraftMapRoute db = update.convert2Draft();
|
||||||
this.draftMapRouteDAO.updateByPrimaryKeyWithBLOBs(db);
|
this.draftMapRouteDAO.updateByPrimaryKeyWithBLOBs(db);
|
||||||
}
|
}
|
||||||
|
@ -58,6 +58,12 @@ public class RouteService {
|
|||||||
if (!route.isCbtcMode() || route.isGround() || route.isAtp()) {
|
if (!route.isCbtcMode() || route.isGround() || route.isAtp()) {
|
||||||
failMessage = this.ciLevelCheck(route);
|
failMessage = this.ciLevelCheck(route);
|
||||||
}
|
}
|
||||||
|
// 进路区段是否故障占用
|
||||||
|
for (Section section : route.getSectionList()) {
|
||||||
|
if (Section.AxleFault.FAULT.equals(section.getFault())) {
|
||||||
|
return new Route.CheckFailMessage(Route.CheckFailReason.SectionFaultOccupied, section);
|
||||||
|
}
|
||||||
|
}
|
||||||
return failMessage;
|
return failMessage;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -611,6 +611,8 @@ public class Route extends MapNamedElement {
|
|||||||
SectionLockOppositeDirection,
|
SectionLockOppositeDirection,
|
||||||
/** 区段不空闲 */
|
/** 区段不空闲 */
|
||||||
SectionNotFree,
|
SectionNotFree,
|
||||||
|
/** 区段故障占用 */
|
||||||
|
SectionFaultOccupied,
|
||||||
/** 站台紧急停车按钮按下 */
|
/** 站台紧急停车按钮按下 */
|
||||||
ESPEffective,
|
ESPEffective,
|
||||||
/** 延续保护道岔/区段占用 */
|
/** 延续保护道岔/区段占用 */
|
||||||
|
@ -86,7 +86,7 @@ springfox:
|
|||||||
|
|
||||||
---
|
---
|
||||||
spring:
|
spring:
|
||||||
profiles: dev
|
profiles: test
|
||||||
datasource:
|
datasource:
|
||||||
url: jdbc:mysql://localhost:3306/joylink?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai
|
url: jdbc:mysql://localhost:3306/joylink?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai
|
||||||
username: root
|
username: root
|
||||||
@ -108,9 +108,9 @@ common:
|
|||||||
|
|
||||||
---
|
---
|
||||||
spring:
|
spring:
|
||||||
profiles: test
|
profiles: dev
|
||||||
datasource:
|
datasource:
|
||||||
url: jdbc:mysql://172.16.0.128:3306/joylink?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai
|
url: jdbc:mysql://114.116.21.254:3306/joylink?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai
|
||||||
username: root
|
username: root
|
||||||
password: Joylink@0503
|
password: Joylink@0503
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user