自动化立体仓库 - WMS系统
pang.jiabao
2024-10-24 eab4454169760cbbbf80226caca08f545c516464
src/main/java/com/zy/asrs/service/impl/OpenServiceImpl.java
@@ -163,7 +163,7 @@
    @Override
    @Transactional
    public R outbound(List<LocDto> locDtos) throws InterruptedException {
    public R outbound(List<LocDto> locDtos,String endLocation) throws InterruptedException {
        if (Cools.isEmpty(locDtos)) {
            return R.parse(BaseRes.PARAM);
        }
@@ -198,7 +198,7 @@
        // -----------------------------------------------------------------------------------------------
        for (TaskDto taskDto : taskDtos) {
            BasDevp staNo = basDevpService.checkSiteStatus(taskDto.getStaNo());
            workService.stockOut(staNo, taskDto, null);
            workService.stockOut(staNo, taskDto, null, endLocation);
        }
        return R.ok("出库成功");
    }