|
|
@ -4,6 +4,7 @@ import com.alibaba.fastjson.JSONObject; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
import com.logpm.basicdata.entity.*; |
|
|
|
import com.logpm.basicdata.entity.*; |
|
|
|
import com.logpm.basicdata.feign.*; |
|
|
|
import com.logpm.basicdata.feign.*; |
|
|
|
|
|
|
|
import com.logpm.distribution.dto.FindParamterDTO; |
|
|
|
import com.logpm.distribution.dto.OrderPackageDTO; |
|
|
|
import com.logpm.distribution.dto.OrderPackageDTO; |
|
|
|
import com.logpm.distribution.entity.DistributionParcelListEntity; |
|
|
|
import com.logpm.distribution.entity.DistributionParcelListEntity; |
|
|
|
import com.logpm.distribution.entity.DistributionStockArticleEntity; |
|
|
|
import com.logpm.distribution.entity.DistributionStockArticleEntity; |
|
|
@ -879,7 +880,11 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd |
|
|
|
|
|
|
|
|
|
|
|
//把upShelfOrderList中的orderCode提取到一个Set集合中
|
|
|
|
//把upShelfOrderList中的orderCode提取到一个Set集合中
|
|
|
|
List<String> orderCodeList = upShelfOrderList.stream().map(UpShelfOrderDTO::getOrderCode).collect(Collectors.toList()); |
|
|
|
List<String> orderCodeList = upShelfOrderList.stream().map(UpShelfOrderDTO::getOrderCode).collect(Collectors.toList()); |
|
|
|
List<DistributionParcelListEntity> parcelListList = distributionParcelListClient.findALLNoUpShelfPackageByOrderCodeList(orderCodeList, warehouseId); |
|
|
|
|
|
|
|
|
|
|
|
FindParamterDTO findParamterDTO = new FindParamterDTO(); |
|
|
|
|
|
|
|
findParamterDTO.setOrderCodeList(orderCodeList); |
|
|
|
|
|
|
|
findParamterDTO.setWarehouseId(warehouseId); |
|
|
|
|
|
|
|
List<DistributionParcelListEntity> parcelListList = distributionParcelListClient.findALLNoUpShelfPackageByOrderCodeList(findParamterDTO); |
|
|
|
|
|
|
|
|
|
|
|
List<UpShelfPackageDTO> upShelfPackageList = new ArrayList<>(); |
|
|
|
List<UpShelfPackageDTO> upShelfPackageList = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
|
@ -969,7 +974,11 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd |
|
|
|
List<String> orderPackageCodes = trayGoodsEntityList.stream().map(WarehouseTrayGoodsEntity::getAssociationValue).collect(Collectors.toList()); |
|
|
|
List<String> orderPackageCodes = trayGoodsEntityList.stream().map(WarehouseTrayGoodsEntity::getAssociationValue).collect(Collectors.toList()); |
|
|
|
warehouseTrayTypeService.downPackageByOrderPackageCodeList(orderPackageCodes,"同步处理:包件解托",warehouseId); |
|
|
|
warehouseTrayTypeService.downPackageByOrderPackageCodeList(orderPackageCodes,"同步处理:包件解托",warehouseId); |
|
|
|
} |
|
|
|
} |
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findListByOrderPackageCodeList(orderPackageCodeList, warehouseId); |
|
|
|
|
|
|
|
|
|
|
|
FindParamterDTO findParamterDTO = new FindParamterDTO(); |
|
|
|
|
|
|
|
findParamterDTO.setOrderPackageCodeList(orderPackageCodeList); |
|
|
|
|
|
|
|
findParamterDTO.setWarehouseId(warehouseId); |
|
|
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findListByOrderPackageCodeList(findParamterDTO); |
|
|
|
//排除parcelListEntityList中元素orderPackageStatus 不等于20的
|
|
|
|
//排除parcelListEntityList中元素orderPackageStatus 不等于20的
|
|
|
|
parcelListEntityList = parcelListEntityList.stream().filter(parcelListEntity -> "20".equals(parcelListEntity.getOrderPackageStatus())).collect(Collectors.toList()); |
|
|
|
parcelListEntityList = parcelListEntityList.stream().filter(parcelListEntity -> "20".equals(parcelListEntity.getOrderPackageStatus())).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
|
@ -1427,7 +1436,10 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd |
|
|
|
//把updownGoodsEntities的association_value提取到一个List中
|
|
|
|
//把updownGoodsEntities的association_value提取到一个List中
|
|
|
|
List<String> associationValueList = updownGoodsEntities.stream().map(WarehouseUpdownGoodsEntity::getAssociationValue).collect(Collectors.toList()); |
|
|
|
List<String> associationValueList = updownGoodsEntities.stream().map(WarehouseUpdownGoodsEntity::getAssociationValue).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findListByOrderPackageCodeList(associationValueList, warehouseId); |
|
|
|
FindParamterDTO findParamterDTO = new FindParamterDTO(); |
|
|
|
|
|
|
|
findParamterDTO.setOrderPackageCodeList(associationValueList); |
|
|
|
|
|
|
|
findParamterDTO.setWarehouseId(warehouseId); |
|
|
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findListByOrderPackageCodeList(findParamterDTO); |
|
|
|
//把parcelListEntityList转化成orderPackageCode为key的Map
|
|
|
|
//把parcelListEntityList转化成orderPackageCode为key的Map
|
|
|
|
Map<String, DistributionParcelListEntity> parcelListEntityMap = parcelListEntityList.stream().collect(Collectors.toMap(DistributionParcelListEntity::getOrderPackageCode, Function.identity())); |
|
|
|
Map<String, DistributionParcelListEntity> parcelListEntityMap = parcelListEntityList.stream().collect(Collectors.toMap(DistributionParcelListEntity::getOrderPackageCode, Function.identity())); |
|
|
|
|
|
|
|
|
|
|
|