ShipmentTaskService.java 28.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
package com.huaheng.pc.task.taskHeader.service;

import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
import com.huaheng.common.utils.Wrappers;
import com.huaheng.common.constant.QuantityConstant;
import com.huaheng.common.exception.service.ServiceException;
import com.huaheng.common.utils.StringUtils;
import com.huaheng.common.utils.security.ShiroUtils;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.framework.web.service.ConfigService;
import com.huaheng.pc.config.configValue.domain.ConfigValue;
import com.huaheng.pc.config.configValue.service.ConfigValueService;
import com.huaheng.pc.config.container.domain.Container;
import com.huaheng.pc.config.container.service.ContainerService;
import com.huaheng.pc.config.location.domain.Location;
import com.huaheng.pc.config.location.service.LocationService;
import com.huaheng.pc.config.material.domain.Material;
import com.huaheng.pc.config.materialWarnning.domain.MaterialWarning;
import com.huaheng.pc.config.materialWarnning.service.IMaterialWarningService;
import com.huaheng.pc.config.shipmentPreference.domain.ShipmentPreference;
import com.huaheng.pc.config.shipmentPreference.service.ShipmentPreferenceService;
import com.huaheng.pc.config.station.domain.Station;
import com.huaheng.pc.config.station.service.StationService;
import com.huaheng.pc.inventory.inventoryDetail.domain.InventoryDetail;
import com.huaheng.pc.inventory.inventoryDetail.service.InventoryDetailService;
import com.huaheng.pc.inventory.inventoryHeader.domain.InventoryHeader;
import com.huaheng.pc.inventory.inventoryHeader.service.InventoryHeaderService;
import com.huaheng.pc.inventory.inventoryTransaction.domain.InventoryTransaction;
import com.huaheng.pc.inventory.inventoryTransaction.service.InventoryTransactionService;
import com.huaheng.pc.shipment.shipmentContainerDetail.domain.ShipmentContainerDetail;
import com.huaheng.pc.shipment.shipmentContainerDetail.service.ShipmentContainerDetailService;
import com.huaheng.pc.shipment.shipmentContainerHeader.domain.ShipmentContainerHeader;
import com.huaheng.pc.shipment.shipmentContainerHeader.service.ShipmentContainerHeaderService;
import com.huaheng.pc.shipment.shipmentDetail.domain.ShipmentDetail;
import com.huaheng.pc.shipment.shipmentDetail.service.ShipmentDetailService;
import com.huaheng.pc.shipment.shipmentHeader.domain.ShipmentHeader;
import com.huaheng.pc.shipment.shipmentHeader.service.ShipmentHeaderService;
import com.huaheng.pc.system.dict.service.IDictDataService;
import com.huaheng.pc.task.taskDetail.domain.TaskDetail;
import com.huaheng.pc.task.taskDetail.service.TaskDetailService;
import com.huaheng.pc.task.taskHeader.domain.ShipmentTaskCreateModel;
import com.huaheng.pc.task.taskHeader.domain.TaskHeader;
import org.aspectj.weaver.loadtime.Aj;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import javax.annotation.Resource;
import java.math.BigDecimal;
import java.util.*;

/**
 * 入库任务创建和完成
 * @author mahua
 * @date 2020/7/14
 */
@Service
public class ShipmentTaskService {

    @Resource
    private ShipmentContainerHeaderService containerHeaderService;
    @Resource
    private ShipmentContainerDetailService shipmentContainerDetailService;
    @Resource
    private LocationService locationService;
    @Resource
    private InventoryDetailService inventoryDetailService;
    @Resource
    private TaskHeaderService taskHeaderService;
    @Resource
    private TaskDetailService taskDetailService;
    @Resource
    private ShipmentDetailService shipmentDetailService;
    @Resource
    private ShipmentHeaderService shipmentHeaderService;
    @Resource
    private InventoryHeaderService inventoryHeaderService;
    @Resource
    private InventoryTransactionService inventoryTransactionService;
    @Resource
    private ContainerService containerService;
    @Resource
    private IMaterialWarningService materialWarningService;
    @Resource
    private ShipmentPreferenceService shipmentPreferenceService;
    @Resource
    private ConfigService configService;
    @Resource
    private StationService stationService;
    @Resource
    private IDictDataService dictDataService;
    /**
     * 创建出库任务
     * @param shipmentTaskCreateModel
     * @return
     */
    @Transactional(rollbackFor = Exception.class)
    public AjaxResult createTaskFromShipmentContainers(ShipmentTaskCreateModel shipmentTaskCreateModel){
        Integer taskId;
        Integer preTaskNo = 0;
        Integer shipmentContainerHeaderId = shipmentTaskCreateModel.getShipmentContainerHeaderIds();
        //获取表头
        ShipmentContainerHeader shipmentContainerHeader = containerHeaderService.getById(shipmentContainerHeaderId);
        String zoneCode = shipmentContainerHeader.getZoneCode();
        if (shipmentContainerHeader == null) {
            return AjaxResult.error("出库货箱" + shipmentContainerHeaderId + "未找到,操作中止");
        }
        if (shipmentContainerHeader.getStatus() >= QuantityConstant.SHIPMENT_CONTAINER_TASK) {
            return AjaxResult.error("出库货箱" + shipmentContainerHeader.getContainerCode() + "已经生成任务,请不要重复生成,操作中止");
        }
        //获取所有该组盘头下的组盘子表
        List<ShipmentContainerDetail> shipmentContainerDetails = shipmentContainerDetailService.selectByShippingContainerId(shipmentContainerHeader.getId());
        if (shipmentContainerDetails.isEmpty()) {
            return AjaxResult.error("货箱" + shipmentContainerHeader.getContainerCode() + "没有子任务,操作中止");
        }

        //检测库位
        LambdaQueryWrapper<Location> locationLambdaQueryWrapper = Wrappers.lambdaQuery();
        locationLambdaQueryWrapper.eq(Location::getCode, shipmentContainerHeader.getLocationCode())
                .eq(Location::getWarehouseCode, ShiroUtils.getWarehouseCode())
                .eq(Location::getDeleted, false);
        Location location = locationService.getOne(locationLambdaQueryWrapper);
        if (StringUtils.isNull(location)) {
            return AjaxResult.error("库位禁用或不存在!");
        }
        if(location.getRowFlag() == QuantityConstant.ROW_OUT) {
            Location location1 = locationService.getNear(location);
            if(location1 != null) {
                String locationCode = location1.getCode();
                LambdaQueryWrapper<TaskHeader> taskHeaderLambdaQueryWrapper = Wrappers.lambdaQuery();
                taskHeaderLambdaQueryWrapper.eq(TaskHeader::getToLocation, locationCode)
                        .lt(TaskHeader::getStatus, QuantityConstant.TASK_STATUS_COMPLETED);
                List<TaskHeader> taskHeaderList = taskHeaderService.list(taskHeaderLambdaQueryWrapper);
                if(taskHeaderList != null && taskHeaderList.size() > 0) {
                    preTaskNo = taskHeaderList.get(0).getPreTaskNo();
                }
            }
        }
        LambdaQueryWrapper<Container> containerLambdaQueryWrapper = Wrappers.lambdaQuery();
        containerLambdaQueryWrapper.eq(Container::getCode, shipmentContainerHeader.getContainerCode())
                .eq(Container::getWarehouseCode, ShiroUtils.getWarehouseCode());
        Container container = containerService.getOne(containerLambdaQueryWrapper);
        if (StringUtils.isNull(container)) {
            return AjaxResult.error("托盘不存在!");
        }
        if(container.getStatus().equals(QuantityConstant.STATUS_CONTAINER_LOCK)) {
            return AjaxResult.error("托盘已经锁定!");
        }
        container.setStatus(QuantityConstant.STATUS_CONTAINER_LOCK);
        containerService.update(container, containerLambdaQueryWrapper);
        locationService.updateStatus(location.getCode(), QuantityConstant.STATUS_LOCATION_LOCK);
        //创建任务头
        TaskHeader task = new TaskHeader();
        task.setTaskType(QuantityConstant.TASK_TYPE_SORTINGSHIPMENT);
        task.setFromLocation(shipmentContainerHeader.getLocationCode());
        //判断是否整出任务,钱柜和AGV不能整出
        //表示整出优先
        //判断当前子货箱所有数量是否等于该托盘对应的所有库存的数量,
        //这里必须与库存的在库数量对比,后期可能存在一个配盘在执行任务,后一个配盘又在配这个的情况(这个时候不能整出)
        //如果相等,则说明这个货箱包含了所有的数量,则可以整出,否则,创建拣选任务;
        //查询所有库存

        LambdaQueryWrapper<InventoryDetail> inventoryDetailLambdaQueryWrapper = Wrappers.lambdaQuery();
        inventoryDetailLambdaQueryWrapper.eq(InventoryDetail::getLocationCode, shipmentContainerHeader.getLocationCode())
                .eq(InventoryDetail::getWarehouseCode, ShiroUtils.getWarehouseCode());
        List<InventoryDetail> inventories = inventoryDetailService.list(inventoryDetailLambdaQueryWrapper);
        BigDecimal inventoryTotal = new BigDecimal("0");
        for (InventoryDetail item : inventories) {
            inventoryTotal = inventoryTotal.add(item.getQty());
        }
        BigDecimal containerTotal = new BigDecimal("0");
        for (ShipmentContainerDetail item : shipmentContainerDetails) {
            containerTotal = containerTotal.add(item.getQty());
        }
        String value = dictDataService.getDictValueByLabel(QuantityConstant.RULE_SHIPMENT_TASK,zoneCode,ShiroUtils.getWarehouseCode());
        int shipmentTaskRule = Integer.parseInt(value);
        // 当onlyPicking为1,只允许分拣出库
        if (inventoryTotal.compareTo(containerTotal) == 0 &&
                (shipmentTaskRule == QuantityConstant.RULE_TASK_WHOLE_SHIPMENT)) {
            //整盘出库
            task.setTaskType(QuantityConstant.TASK_TYPE_WHOLESHIPMENT);
        } else {
            value = configService.getKey(QuantityConstant.RULE_TASK_LOCATION,ShiroUtils.getWarehouseCode());
            int taskLocationRule = Integer.parseInt(value);
            if (taskLocationRule == QuantityConstant.RULE_TASK_SET_LOCATION) {
                task.setToLocation(shipmentContainerHeader.getLocationCode());
            }
        }

        task.setZoneCode(location.getZoneCode());
        task.setInternalTaskType(QuantityConstant.TASK_INTENERTYPE_SHIPMENT);
        task.setAllocationHeadId(shipmentContainerHeader.getId());
        task.setWarehouseCode(shipmentContainerHeader.getWarehouseCode());
        task.setAssignedUser(ShiroUtils.getLoginName());
        task.setConfirmedBy(ShiroUtils.getLoginName());
        //东厂默认分配站台 KS0001 LK
        if(location.getWarehouseCode().equals("KS0001")&&location.getZoneCode().equals(QuantityConstant.ZONE_CODE_TYPE_LK)){
            Station station = stationService.getOne(
                    new LambdaQueryWrapper<Station>()
                            .eq(Station::getWarehouseCode, "KS0001")
                            .eq(Station::getArea, 5)
                            .eq(Station::getRoadway,1)
                            .last("limit 1"));
            if (station != null) {
                task.setPort(station.getCode());
            }
        }else {
            task.setPort(shipmentContainerHeader.getPort());
        }
        task.setStatus(QuantityConstant.TASK_STATUS_BUILD);
        task.setContainerCode(shipmentContainerHeader.getContainerCode());
        task.setGoodsShelfNo(container.getGoodsShelfNo());
        task.setCompanyCode(shipmentContainerHeader.getCompanyCode());
        task.setPreTaskNo(preTaskNo);
        if (!taskHeaderService.save(task)){
            throw new ServiceException("生成任务失败");
        }
        taskId = task.getId();
        for (ShipmentContainerDetail shipmentContainerDetail : shipmentContainerDetails) {
            TaskDetail taskDetail = new TaskDetail();
            taskDetail.setTaskId(task.getId());
            taskDetail.setInternalTaskType(task.getInternalTaskType());
            taskDetail.setWarehouseCode(task.getWarehouseCode());
            taskDetail.setCompanyCode(task.getCompanyCode());
            taskDetail.setTaskType(task.getTaskType());
            taskDetail.setToInventoryId(shipmentContainerDetail.getInventoryId());
            taskDetail.setAllocationId(shipmentContainerDetail.getId());
            taskDetail.setBillCode(shipmentContainerDetail.getShipmentCode());
            taskDetail.setBillDetailId(shipmentContainerDetail.getShipmentDetailId());
            taskDetail.setMaterialCode(shipmentContainerDetail.getMaterialCode());
            taskDetail.setMaterialName(shipmentContainerDetail.getMaterialName());
            taskDetail.setMaterialSpec(shipmentContainerDetail.getMaterialSpec());
            taskDetail.setMaterialUnit(shipmentContainerDetail.getMaterialUnit());
            taskDetail.setFromInventoryId(shipmentContainerDetail.getInventoryId());
            taskDetail.setQty(shipmentContainerDetail.getQty());
            taskDetail.setContainerCode(task.getContainerCode());
            taskDetail.setGoodsShelfNo(container.getGoodsShelfNo());
            taskDetail.setFromLocation(task.getFromLocation());
//            taskDetail.setToLocation(task.getToLocation());
            taskDetail.setLot(shipmentContainerDetail.getLot());
            taskDetail.setBatch(shipmentContainerDetail.getBatch());
            taskDetail.setProjectNo(shipmentContainerDetail.getProjectNo());
            taskDetail.setStatus(QuantityConstant.TASK_STATUS_BUILD);
            taskDetail.setWaveId(shipmentContainerDetail.getWaveId());
            taskDetail.setInventorySts(shipmentContainerDetail.getInventorySts());
            if (!taskDetailService.save(taskDetail)) {
                throw new ServiceException("新建任务明细失败,sql报错");
            }
            shipmentContainerDetail.setStatus(QuantityConstant.SHIPMENT_CONTAINER_TASK);
            if (!shipmentContainerDetailService.updateById(shipmentContainerDetail)) {
                throw new ServiceException("修改组盘明细状态失败");
            }
        }
        //更新货位状态
        shipmentContainerHeader.setStatus(QuantityConstant.SHIPMENT_CONTAINER_TASK);
        if (!containerHeaderService.updateById(shipmentContainerHeader)) {
            throw new ServiceException("修改组盘头状态失败,sql报错");
        }

        return AjaxResult.success(taskId);
    }

    /**
     * 完成出库任务
     * @param task
     */
    @Transactional(rollbackFor = Exception.class)
    public AjaxResult completeShipmentTask(TaskHeader task) {
        //获取任务明细
        List<TaskDetail> taskDetails = taskDetailService.findByTaskId(task.getId());

        if (task.getStatus().intValue() == QuantityConstant.TASK_STATUS_COMPLETED) {
            throw new ServiceException("任务已完成");
        }

        if (StringUtils.isEmpty(task.getFromLocation())) {
            throw new ServiceException("任务" + task.getId() + "没有起始库位,执行中止");
        }

        if (StringUtils.isEmpty(task.getToLocation())
                && task.getTaskType().equals(QuantityConstant.TASK_TYPE_SORTINGSHIPMENT)) {
            throw new ServiceException("任务" + task.getId() + "没有目的库位,执行中止");
        }
        String warehouseCode = task.getWarehouseCode();
        InventoryHeader inventoryHeader = null;
        if(task.getTaskType().equals(QuantityConstant.TASK_TYPE_SORTINGSHIPMENT)) {
            LambdaQueryWrapper<InventoryHeader> lambdaQueryWrapper = Wrappers.lambdaQuery();
            lambdaQueryWrapper.eq(InventoryHeader::getWarehouseCode, warehouseCode)
                    .eq(InventoryHeader::getLocationCode, task.getFromLocation())
                    .eq(InventoryHeader::getContainerCode, task.getContainerCode());
            inventoryHeader = inventoryHeaderService.getOne(lambdaQueryWrapper);
            if(inventoryHeader != null) {
                String locationCode = inventoryHeader.getLocationCode();
                Location location = locationService.getLocationByCode(locationCode, warehouseCode);
                location.setStatus(QuantityConstant.STATUS_LOCATION_EMPTY);
                locationService.updateById(location);
                inventoryHeader.setLocationCode(task.getToLocation());
                inventoryHeaderService.updateById(inventoryHeader);
                LambdaQueryWrapper<InventoryDetail> lambdaQueryWrapper2 = Wrappers.lambdaQuery();
                lambdaQueryWrapper2.eq(InventoryDetail::getWarehouseCode, warehouseCode)
                        .eq(InventoryDetail::getInventoryHeaderId, inventoryHeader.getId());
                List<InventoryDetail> inventoryDetails = inventoryDetailService.list(lambdaQueryWrapper2);
                if(inventoryDetails != null && inventoryDetails.size() > 0) {
                    for(InventoryDetail inventoryDetail : inventoryDetails) {
                        inventoryDetail.setLocationCode(task.getToLocation());
                        inventoryDetailService.updateById(inventoryDetail);
                    }
                }
            }
        }

        for (TaskDetail taskDetail : taskDetails) {
            if (taskDetail.getStatus() < QuantityConstant.TASK_STATUS_RUNNING) {
                //获取出库子货箱
                ShipmentContainerDetail shipmentContainerDetail = shipmentContainerDetailService.getById(taskDetail.getAllocationId());
                //获取对应库存记录
                InventoryDetail inventoryDetail = inventoryDetailService.getById(taskDetail.getToInventoryId());
                if (inventoryDetail == null) {
                    throw new ServiceException("任务明细对应的库存ID【" + taskDetail.getToInventoryId().toString() + "】不存在!");
                }
                //减扣库存单
                inventoryHeader = inventoryHeaderService.getById(inventoryDetail.getInventoryHeaderId());

                //扣减库存明细
                inventoryDetail.setTaskQty(inventoryDetail.getTaskQty().subtract(taskDetail.getQty()));
                inventoryDetail.setQty(inventoryDetail.getQty().subtract(taskDetail.getQty()));

                if (inventoryDetail.getQty().signum() == -1) {
                    throw new ServiceException("扣减库存大于wms库存");
                }
                if (inventoryDetail.getQty().signum() == 0
                    && inventoryDetail.getTaskQty().signum() == 0) {
                    //如果库存没有了,就删除这个库存
                    inventoryDetailService.removeById(inventoryDetail.getId());
                    inventoryHeader.setTotalQty(inventoryHeader.getTotalQty().subtract(taskDetail.getQty()));
                    inventoryHeader.setTotalLines(inventoryHeader.getTotalLines() - 1);
                    if (inventoryHeader.getTotalQty().signum() == 0) {
                        inventoryHeaderService.removeById(inventoryHeader.getId());
                    } else {
                        inventoryHeaderService.updateById(inventoryHeader);
                    }
                } else {
                    //否则更新这个库存
                    inventoryDetailService.updateById(inventoryDetail);
                    inventoryHeader.setTotalQty(inventoryHeader.getTotalQty().subtract(taskDetail.getQty()));
                    inventoryHeaderService.updateById(inventoryHeader);
                }
                //设置子任务状态为已执行
                taskDetail.setStatus(QuantityConstant.TASK_STATUS_COMPLETED);
                taskDetailService.updateById(taskDetail);
                //修改出库组盘明细状态
                shipmentContainerDetail.setStatus(QuantityConstant.SHIPMENT_CONTAINER_FINISHED);
                shipmentContainerDetailService.updateById(shipmentContainerDetail);
                //记录库存交易记录
                InventoryTransaction inventoryTransaction = new InventoryTransaction();
                inventoryTransaction.setWarehouseCode(warehouseCode);
                inventoryTransaction.setCompanyCode(inventoryDetail.getCompanyCode());
                inventoryTransaction.setLocationCode(inventoryDetail.getLocationCode());
                inventoryTransaction.setContainerCode(inventoryDetail.getContainerCode());
                inventoryTransaction.setTransactionType(QuantityConstant.INVENTORY_TRANSACTION_SHIPMENT);
                inventoryTransaction.setMaterialCode(inventoryDetail.getMaterialCode());
                inventoryTransaction.setMaterialName(inventoryDetail.getMaterialName());
                inventoryTransaction.setMaterialSpec(inventoryDetail.getMaterialSpec());
                inventoryTransaction.setMaterialUnit(inventoryDetail.getMaterialUnit());
                inventoryTransaction.setBillCode(taskDetail.getBillCode());
                inventoryTransaction.setInventoryDetailId(inventoryDetail.getId());
                inventoryTransaction.setMoCode(inventoryDetail.getMoCode());
                inventoryTransaction.setUWarehouseCode(inventoryDetail.getUWarehouseCode());
                inventoryTransaction.setGoodsShelfNo(inventoryDetail.getGoodsShelfNo());
                inventoryTransaction.setZoneCode(inventoryDetail.getZoneCode());
                //取出子单据
                ShipmentDetail shipmentDetail = shipmentDetailService.getById(taskDetail.getBillDetailId());
                if(shipmentDetail != null) {
                    inventoryTransaction.setBillDetailId(shipmentDetail.getId());
                }
                inventoryTransaction.setBatch(inventoryDetail.getBatch());
                inventoryTransaction.setLot(inventoryDetail.getLot());
                inventoryTransaction.setProjectNo(inventoryDetail.getProjectNo());
                inventoryTransaction.setQcCheck(inventoryDetail.getQcCheck());
                inventoryTransaction.setSupplierCode(inventoryDetail.getSupplierCode());
                inventoryTransaction.setManufactureDate(inventoryDetail.getManufactureDate());
                inventoryTransaction.setExpirationDate(inventoryDetail.getExpirationDate());
                inventoryTransaction.setInventorySts(inventoryDetail.getInventorySts());
                //这里取反,更符合出库的语义,同时方便对记录进行统计
                inventoryTransaction.setTaskQty(taskDetail.getQty());
                inventoryTransactionService.save(inventoryTransaction);
                materialWarningService.materialWarning(taskDetail.getMaterialCode(), taskDetail.getCompanyCode());
            }
        }
        //设置主任务为已执行
        task.setStatus(QuantityConstant.TASK_STATUS_COMPLETED);
        task.setCompleteStatus(1);
        taskHeaderService.updateById(task);
        /* 更新库位和容器*/
        updateShipmentLocationContainer(task.getFromLocation(), task.getToLocation(),
                task.getContainerCode(), task.getTaskType(), warehouseCode);

        //设置出库货箱表头状态为拣货任务完成
        LambdaUpdateWrapper<ShipmentContainerHeader> shipmentContainerHeaderLambdaUpdateWrapper = Wrappers.lambdaUpdate();
        shipmentContainerHeaderLambdaUpdateWrapper.eq(ShipmentContainerHeader::getId, task.getAllocationHeadId())
            .set(ShipmentContainerHeader::getStatus, QuantityConstant.SHIPMENT_CONTAINER_FINISHED);
        if (!containerHeaderService.update(shipmentContainerHeaderLambdaUpdateWrapper)) {
            throw new ServiceException("更新组盘头状态失败");
        }

        //修改出库单状态
        List<TaskDetail> taskDetailList = taskDetailService.findByTaskId(task.getId());
        HashSet<Integer> ids = new HashSet<>();
        for (TaskDetail taskDetail : taskDetailList) {
            ShipmentDetail shipmentDetail = shipmentDetailService.getById(taskDetail.getBillDetailId());
            
            if (StringUtils.isNotNull(shipmentDetail)) {
                if(StringUtils.isNull(shipmentDetail.getBackQty())){
                    shipmentDetail.setBackQty(BigDecimal.ZERO.add(taskDetail.getQty()));
                }else{
                    shipmentDetail.setBackQty(shipmentDetail.getBackQty().add(taskDetail.getQty()));
                }
                if (shipmentDetail.getQty().compareTo(shipmentDetail.getTaskQty()) == 0) {
                    shipmentDetail.setStatus(QuantityConstant.SHIPMENT_HEADER_COMPLETED);
                    shipmentDetailService.updateById(shipmentDetail);
                }else{
                    shipmentDetailService.updateById(shipmentDetail);
                }
                ids.add(shipmentDetail.getShipmentId());
            }
            
        }

        /*更新出库单状态*/
        for (Integer id : ids) {
            ShipmentHeader shipmentHeader = shipmentHeaderService.getById(id);
            if (shipmentHeader != null) {
                Map<String, Integer> status = shipmentDetailService.selectStatus(shipmentHeader.getId());
                Integer maxStatus = status.get("maxStatus");
                Integer minStatus = status.get("minStatus");
                if (maxStatus.equals(QuantityConstant.SHIPMENT_HEADER_COMPLETED)) {
                    shipmentHeader.setFirstStatus(QuantityConstant.SHIPMENT_HEADER_COMPLETED);
                }
                if (minStatus.equals(QuantityConstant.SHIPMENT_HEADER_COMPLETED)) {
                    shipmentHeader.setLastStatus(QuantityConstant.SHIPMENT_HEADER_COMPLETED);
                }
                shipmentHeader.setLastUpdatedBy(task.getLastUpdatedBy());
                shipmentHeader.setLastUpdated(new Date());
                shipmentHeaderService.updateById(shipmentHeader);
            }
        }

        return AjaxResult.success("完成出库任务成功");
    }

    /**
     * 出库任务完成时更新库位和容器状态
     * @param fromLocation 源库位
     * @param toLocation 目标库位
     * @param containerCode 容器编码
     * @param taskType 任务类型
     */
    public void updateShipmentLocationContainer(String fromLocation, String toLocation,
                            String containerCode, Integer taskType, String warehouseCode){
        //将库位状态改为空闲,如果是整出的对应的容器也清空
        Location fromLocationRecord = locationService.getLocationByCode(fromLocation, warehouseCode);
        if (StringUtils.isNull(fromLocationRecord)) {
            throw new ServiceException("系统没有" + fromLocation + "库位");
        }
        /* 如果目标库位与源库位不一样时,需要更新两个库位*/
        if (StringUtils.isNotEmpty(toLocation)
                && !fromLocation.equals(toLocation)) {
            Location toLocationRecord = locationService.getLocationByCode(toLocation, warehouseCode);
            if (StringUtils.isNull(fromLocationRecord)) {
                throw new ServiceException("系统没有" + toLocation + "库位");
            }
            toLocationRecord.setStatus(QuantityConstant.STATUS_LOCATION_EMPTY);
            if (taskType.equals(QuantityConstant.TASK_TYPE_WHOLESHIPMENT)) {
                toLocationRecord.setContainerCode("");
            } else {
                toLocationRecord.setContainerCode(containerCode);
            }
            locationService.updateById(toLocationRecord);
            fromLocationRecord.setContainerCode("");
        }
        fromLocationRecord.setStatus(QuantityConstant.STATUS_LOCATION_EMPTY);
        if (taskType.equals(QuantityConstant.TASK_TYPE_WHOLESHIPMENT)) {
            fromLocationRecord.setContainerCode("");
        }
        locationService.updateById(fromLocationRecord);

        Container container = containerService.getContainerByCode(containerCode, warehouseCode);
        if (StringUtils.isEmpty(containerCode)) {
            throw new ServiceException("系统无"+container+"容器");
        }

        if (taskType.equals(QuantityConstant.TASK_TYPE_WHOLESHIPMENT)) {
            if ("LS".equals(container.getContainerType())) {
                if (!containerService.removeById(container.getId())) {
                    throw new ServiceException("删除临时容器失败");
                }
            } else {
                containerService.updateLocationCodeAndStatus(containerCode, "",
                        QuantityConstant.STATUS_CONTAINER_EMPTY, warehouseCode);
            }
        } else {
            //查询是否存在关联的库存,入如果没有就修改容器状态为empty
            LambdaQueryWrapper<InventoryDetail> inventoryDetaillambdaQueryWrapper = Wrappers.lambdaQuery();
            inventoryDetaillambdaQueryWrapper.eq(InventoryDetail::getContainerCode, containerCode);
            List<InventoryDetail> detailList = inventoryDetailService.list(inventoryDetaillambdaQueryWrapper);
            //库存查询不到该容器就把容器状态改为可用
            if (detailList.isEmpty()) {
                containerService.updateLocationCodeAndStatus(containerCode, toLocation,
                        QuantityConstant.STATUS_CONTAINER_EMPTY, warehouseCode);
            } else {
                containerService.updateLocationCodeAndStatus(containerCode, toLocation,
                        QuantityConstant.STATUS_CONTAINER_SOME, warehouseCode);
            }
        }
    }
}