|
|
|
@ -33,6 +33,7 @@ import org.springblade.core.secure.utils.AuthUtil;
|
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.core.tool.utils.BeanUtil; |
|
|
|
|
import org.springblade.core.tool.utils.Func; |
|
|
|
|
import org.springblade.core.tool.utils.ObjectUtil; |
|
|
|
|
import org.springblade.core.tool.utils.StringUtil; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
@ -1995,16 +1996,22 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
warehouseGoodsAllocationClient.updateAllocationCache(allocationId.toString()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// for (String orderCode : orderSet) {
|
|
|
|
|
// distributionStockArticleClient.updateOrderInfo(orderCode, warehouseId);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
if(orderPackageCodes.isEmpty()){ |
|
|
|
|
log.warn(">>>> 没有需要下架的包件"); |
|
|
|
|
return Resp.scanSuccess("下架成功", "成功下架" + 0 + "件"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
FindParamterDTO findParamterDTO = new FindParamterDTO(); |
|
|
|
|
findParamterDTO.setOrderPackageCodeList(orderPackageCodes); |
|
|
|
|
findParamterDTO.setWarehouseId(warehouseId); |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findListByOrderPackageCodeList(findParamterDTO); |
|
|
|
|
if(ObjectUtil.isEmpty(parcelListEntityList)){ |
|
|
|
|
log.warn(">>>> 当前包件集合 {}没有上架信息",orderPackageCodes); |
|
|
|
|
return Resp.scanSuccess("下架成功", "成功下架" + 0 + "件"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//把parcelListEntityList中所有元素的conditions作为key进行分组成一个Map
|
|
|
|
|
Map<Integer, List<DistributionParcelListEntity>> listMap = parcelListEntityList.stream().collect(Collectors.groupingBy(DistributionParcelListEntity::getConditions)); |
|
|
|
@ -2041,8 +2048,6 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
|
|
|
|
|
log.info(">>>>> T downPackageAndDelTrayAndIsUpdate start"); |
|
|
|
|
int num = 0; |
|
|
|
|
Set<String> orderSet = new TreeSet<>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// upShelfPackageList
|
|
|
|
|
List<String> barcodeList = upShelfPackageList.stream() |
|
|
|
@ -2151,27 +2156,11 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
log.warn("###########downPackageAndDelTrayAndIsUpdate: 发送打托广播失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// for (String orderCode : orderSet) {
|
|
|
|
|
// distributionStockArticleClient.updateOrderInfo(orderCode, warehouseId);
|
|
|
|
|
// }
|
|
|
|
|
// List<String> orders = new ArrayList<>(orderSet);
|
|
|
|
|
// if (orders.isEmpty()) {
|
|
|
|
|
// return Resp.scanSuccess("下架成功", "成功下架" + num + "件");
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// OrderPackageDTO orderPackageDTO1 = new OrderPackageDTO();
|
|
|
|
|
// orderPackageDTO1.setWarehouseId(warehouseId);
|
|
|
|
|
// orderPackageDTO1.setStrings(orders);
|
|
|
|
|
// distributionStockArticleClient.updateOrdersInfo(orderPackageDTO1);
|
|
|
|
|
// log.info(">>>>> T downPackageAndDelTrayAndIsUpdate end");
|
|
|
|
|
|
|
|
|
|
return Resp.scanSuccess("下架成功", "成功下架" + num + "件"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|