#
Junjie
2025-04-11 bac78729c350ebd870619acdaa4e224646e72a04
#
1个文件已修改
29 ■■■■■ 已修改文件
src/main/java/com/zy/asrs/service/impl/MainServiceImpl.java 29 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/asrs/service/impl/MainServiceImpl.java
@@ -84,7 +84,6 @@
    private TransportLiftOutServiceImpl transportLiftOutService;
    @Autowired
    private ShuttleMoveServiceImpl shuttleMoveService;
    private LiftAction liftAction;
    @Autowired
    private NoLiftInServiceImpl noLiftInService;
@@ -1541,34 +1540,6 @@
            e.printStackTrace();
        }
    }
    private void shuttleMoveExecuteMove(WrkMast wrkMast) {
        boolean stepMoveSta = this.shuttleMoveExecuteStepMoveSta(wrkMast);//小车移动到站点
        if (!stepMoveSta) {
            return;
        }
        boolean stepIntoLift = this.shuttleMoveExecuteStepIntoLift(wrkMast);//小车迁入提升机
        if (!stepIntoLift) {
            return;
        }
        boolean stepLiftMove = this.shuttleMoveExecuteStepLiftMove(wrkMast);//提升机搬运中
        if (!stepLiftMove) {
            return;
        }
        boolean updateShuttleLocation = this.shuttleMoveExecuteStepUpdateShuttleLocation(wrkMast);//提升机搬运完成更新小车坐标
        if (!updateShuttleLocation) {
            return;
        }
        boolean stepMoveLoc = this.shuttleMoveExecuteStepMoveLoc(wrkMast);//小车移动到目标库位中
        if (!stepMoveLoc) {
            return;
        }
    }
    private void shuttleMoveExecuteTransportLift(WrkMast wrkMast) {
        LiftThread liftThread = LiftUtils.getRecentLift(wrkMast.getLocNo());