skyouc
2025-08-09 efa392d963d11000ef22c6778684648042a80ac6
zy-asrs-wms/src/main/java/com/zy/asrs/wms/asrs/timer/TaskTimer.java
@@ -171,7 +171,8 @@
    }
    //入库
    private void executeTask1(Task task) {
    @Transactional(rollbackFor = Exception.class)
    public void executeTask1(Task task) {
        Long hostId = task.getHostId();
        Loc loc = locService.getOne(new LambdaQueryWrapper<Loc>().eq(Loc::getLocNo, task.getTargetLoc()).eq(Loc::getHostId, hostId));
        if (loc == null) {
@@ -242,7 +243,8 @@
    }
    //库位移转
    private void executeTask11(Task task) {
    @Transactional(rollbackFor = Exception.class)
    public void executeTask11(Task task) {
        Long hostId = task.getHostId();
        Loc originLoc = locService.getOne(new LambdaQueryWrapper<Loc>().eq(Loc::getLocNo, task.getOriginLoc()).eq(Loc::getHostId, hostId));
@@ -387,6 +389,11 @@
        }
    }
    /**
     * 更新任务明细,更新库存明细
     * @param task
     */
    //出库
    private void executeTask101(Task task) {
        Long hostId = task.getHostId();
@@ -422,6 +429,11 @@
                }
            }
        }
    }
    /**