|
|
|
@ -23,7 +23,9 @@ import com.logpm.warehouse.vo.*;
|
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.log4j.Log4j2; |
|
|
|
|
import org.springblade.common.constant.TenantNum; |
|
|
|
|
import org.springblade.common.constant.broadcast.FanoutConstants; |
|
|
|
|
import org.springblade.common.exception.CustomerException; |
|
|
|
|
import org.springblade.common.model.FanoutMsg; |
|
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.core.tool.utils.BeanUtil; |
|
|
|
@ -58,6 +60,7 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
private final IWarehouseUpdownGoodsLogService warehouseUpdownGoodsLogService; |
|
|
|
|
private final IBasicdataWarehouseClient warehouseClient; |
|
|
|
|
private final IDistributionStockListInfoClient distributionStockListInfoClient; |
|
|
|
|
private final ISendFanoutService sendFanoutService; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public boolean packageChangeStock(List<String> orderPackageCodes) { |
|
|
|
@ -941,6 +944,7 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
} |
|
|
|
|
String enableStatus = goodsAllocationEntity.getEnableStatus(); |
|
|
|
|
Long goodsShelfId = goodsAllocationEntity.getGoodsShelfId(); |
|
|
|
|
String qrCode = goodsAllocationEntity.getQrCode(); |
|
|
|
|
if ("2".equals(enableStatus)) { |
|
|
|
|
log.warn("##############upShelfPackage: 库位已被禁用 allocationId={}", allocationId); |
|
|
|
|
return R.fail(403, "库位已被禁用"); |
|
|
|
@ -1009,6 +1013,35 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
//更新货位缓存
|
|
|
|
|
warehouseGoodsAllocationClient.updateAllocationCache(allocationId.toString()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
//把parcelListEntityList通过conditions进行分组,conditions作为key
|
|
|
|
|
Map<Integer, List<DistributionParcelListEntity>> map = parcelListEntityList.stream().collect(Collectors.groupingBy(DistributionParcelListEntity::getConditions)); |
|
|
|
|
|
|
|
|
|
map.keySet().forEach(conditions -> { |
|
|
|
|
List<DistributionParcelListEntity> list = map.get(conditions); |
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",1); |
|
|
|
|
jsonObject.put("conditions",conditions); |
|
|
|
|
jsonObject.put("operation",3); |
|
|
|
|
//把list中所有元素的orderPackageCode提取出来存入一个List<String>
|
|
|
|
|
List<String> orderPackageCodes = list.stream().map(DistributionParcelListEntity::getOrderPackageCode).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
jsonObject.put("orderPackageCodes",orderPackageCodes); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
jsonObject.put("allocationName",qrCode); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("###########upShelfPackage: 发送打托广播失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// for (UpShelfPackageDTO upShelfPackageDTO : upShelfPackageList) {
|
|
|
|
|
// String orderPackageCode = upShelfPackageDTO.getOrderPackageCode();
|
|
|
|
|
// log.info("##############upShelfPackage: 当前处理的包件码 orderPackageCode={}", orderPackageCode);
|
|
|
|
@ -1159,6 +1192,7 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
return R.fail(403, "库位不存在"); |
|
|
|
|
} |
|
|
|
|
String enableStatus = goodsAllocationEntity.getEnableStatus(); |
|
|
|
|
String qrCode = goodsAllocationEntity.getQrCode(); |
|
|
|
|
Long goodsShelfId = goodsAllocationEntity.getGoodsShelfId(); |
|
|
|
|
if ("2".equals(enableStatus)) { |
|
|
|
|
log.warn("##############upShelfOrder: 库位已被禁用 allocationId={}", allocationId); |
|
|
|
@ -1203,9 +1237,12 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
} |
|
|
|
|
//
|
|
|
|
|
bindingAllocationAndZeroOrderAndLog(upShelfZeroOrderList, updownTypeEntity, remark); |
|
|
|
|
|
|
|
|
|
List<String> orderCodes = new ArrayList<>(); |
|
|
|
|
for (UpShelfZeroOrderDTO upShelfZeroOrderDTO : upShelfZeroOrderList) { |
|
|
|
|
num = num + upShelfZeroOrderDTO.getEnterNum(); |
|
|
|
|
updateZeroOrderGroundingStatus(upShelfZeroOrderDTO.getOrderCode(), warehouseId); |
|
|
|
|
orderCodes.add(upShelfZeroOrderDTO.getOrderCode()); |
|
|
|
|
// updateZeroOrderGroundingStatus(upShelfZeroOrderDTO.getOrderCode(), warehouseId);
|
|
|
|
|
} |
|
|
|
|
updateUpdownTypeNum(updownTypeEntity); |
|
|
|
|
|
|
|
|
@ -1225,6 +1262,24 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
} |
|
|
|
|
//更新货位缓存
|
|
|
|
|
warehouseGoodsAllocationClient.updateAllocationCache(allocationId.toString()); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",2); |
|
|
|
|
jsonObject.put("operation",3); |
|
|
|
|
jsonObject.put("orderCodes",orderCodes); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
jsonObject.put("allocationName",qrCode); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
|
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("###########upShelfPackage: 发送打托广播失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return Resp.scanSuccess("上架成功", "成功上架" + num + "条"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1316,6 +1371,7 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
return R.fail(403, "库位不存在"); |
|
|
|
|
} |
|
|
|
|
String enableStatus = goodsAllocationEntity.getEnableStatus(); |
|
|
|
|
String qrCode = goodsAllocationEntity.getQrCode(); |
|
|
|
|
Long goodsShelfId = goodsAllocationEntity.getGoodsShelfId(); |
|
|
|
|
if ("2".equals(enableStatus)) { |
|
|
|
|
log.warn("##############upShelfOrder: 库位已被禁用 allocationId={}", allocationId); |
|
|
|
@ -1380,6 +1436,36 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
if (s.length() > 0) { |
|
|
|
|
msg = msg + s + "超出输入数量,或输入数量为0,请输入正确数量再进行操作"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
List<Long> stockListIds = new ArrayList<>(); |
|
|
|
|
upShelfStockList.forEach(upShelfStockDTO -> { |
|
|
|
|
String materialCode = upShelfStockDTO.getMaterialCode(); |
|
|
|
|
String incomingBatch = upShelfStockDTO.getIncomingBatch(); |
|
|
|
|
Long marketId = upShelfStockDTO.getMarketId(); |
|
|
|
|
DistributionStockListEntity stockListEntity = distributionStockListClient.getEntityByMarketIdAndMaterialCodeAndIncomingBatch(marketId, materialCode, incomingBatch, warehouseId); |
|
|
|
|
if(!Objects.isNull(stockListEntity)){ |
|
|
|
|
stockListIds.add(stockListEntity.getId()); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",3); |
|
|
|
|
jsonObject.put("operation",3); |
|
|
|
|
jsonObject.put("stockListIds",stockListIds); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
jsonObject.put("allocationName",qrCode); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("###########saveTrayTypeByOrderPackageCode: 发送打托广播失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return Resp.scanSuccess(msg, "成功上架" + num + "件"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1542,11 +1628,179 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
warehouseUpdownGoodsLogEntity.setWarehouseId(updownTypeEntity.getWarehouseId()); |
|
|
|
|
updownGoodsLogEntities.add(warehouseUpdownGoodsLogEntity); |
|
|
|
|
|
|
|
|
|
parcelListEntity.setOrderPackageGroundingStatus("10"); |
|
|
|
|
// parcelListEntity.setOrderPackageGroundingStatus("10");
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
// updownParcelEntities.addAll(parcelListEntities);
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
removeByIds(toNullUpdownTypeIds); |
|
|
|
|
if (!updateAllocationIds.isEmpty()) { |
|
|
|
|
basicdataGoodsAllocationClient.updateListAllocationStatus(updateAllocationIds, "1"); |
|
|
|
|
} |
|
|
|
|
if (!deleteTrayAllocationList.isEmpty()) { |
|
|
|
|
warehouseTaryAllocationService.removeBatchByIds(deleteTrayAllocationList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
updateUpdownTypeList.forEach(this::updateUpdownTypeNum); |
|
|
|
|
|
|
|
|
|
warehouseUpdownGoodsLogService.saveBatch(updownGoodsLogEntities); |
|
|
|
|
|
|
|
|
|
// distributionParcelListClient.updateList(updownParcelEntities);
|
|
|
|
|
|
|
|
|
|
map.keySet().forEach(allocationId -> { |
|
|
|
|
warehouseGoodsAllocationClient.updateAllocationCache(allocationId.toString()); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
for (String orderCode : orderSet) { |
|
|
|
|
distributionStockArticleClient.updateOrderInfo(orderCode, warehouseId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
num = num + updownGoodsLogEntities.size(); |
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
//把parcelListEntityList中所有元素的conditions作为key进行分组成一个Map
|
|
|
|
|
Map<Integer, List<DistributionParcelListEntity>> listMap = parcelListEntityList.stream().collect(Collectors.groupingBy(DistributionParcelListEntity::getConditions)); |
|
|
|
|
|
|
|
|
|
listMap.keySet().forEach(conditions -> { |
|
|
|
|
List<DistributionParcelListEntity> ls = listMap.get(conditions); |
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",1); |
|
|
|
|
jsonObject.put("conditions",conditions); |
|
|
|
|
jsonObject.put("operation",4); |
|
|
|
|
//把ls中所有元素的orderPackageCode放入一个List
|
|
|
|
|
List<String> orderPackageCodes = ls.stream().map(DistributionParcelListEntity::getOrderPackageCode).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
jsonObject.put("orderPackageCodes",orderPackageCodes); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("###########saveTrayTypeByOrderPackageCode: 发送打托广播失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return Resp.scanSuccess("下架成功", "成功下架" + num + "件"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private R downPackageNoFanout(List<UpShelfPackageDTO> upShelfPackageList, Long warehouseId, String remark) { |
|
|
|
|
int num = 0; |
|
|
|
|
Set<String> orderSet = new HashSet<>(); |
|
|
|
|
|
|
|
|
|
//把upShelfPackageList中的orderPackageCde提取到List中
|
|
|
|
|
List<String> orderPackageCodeList = upShelfPackageList.stream().map(UpShelfPackageDTO::getOrderPackageCode).collect(Collectors.toList()); |
|
|
|
|
QueryWrapper<WarehouseUpdownGoodsEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("association_type", "3") |
|
|
|
|
.eq("warehouse_id", warehouseId) |
|
|
|
|
.in("association_value", orderPackageCodeList); |
|
|
|
|
List<WarehouseUpdownGoodsEntity> updownGoodsEntities = warehouseUpdownGoodsService.list(queryWrapper); |
|
|
|
|
|
|
|
|
|
//把updownGoodsEntities的association_value提取到一个List中
|
|
|
|
|
List<String> associationValueList = updownGoodsEntities.stream().map(WarehouseUpdownGoodsEntity::getAssociationValue).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
FindParamterDTO findParamterDTO = new FindParamterDTO(); |
|
|
|
|
findParamterDTO.setOrderPackageCodeList(associationValueList); |
|
|
|
|
findParamterDTO.setWarehouseId(warehouseId); |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findListByOrderPackageCodeList(findParamterDTO); |
|
|
|
|
//把parcelListEntityList转化成orderPackageCode为key的Map
|
|
|
|
|
Map<String, DistributionParcelListEntity> parcelListEntityMap = parcelListEntityList.stream().collect(Collectors.toMap(DistributionParcelListEntity::getOrderPackageCode, Function.identity())); |
|
|
|
|
|
|
|
|
|
//把updownGoodsEntities通过allocatiionId进行分组
|
|
|
|
|
Map<Long, List<WarehouseUpdownGoodsEntity>> map = updownGoodsEntities.stream().collect(Collectors.groupingBy(WarehouseUpdownGoodsEntity::getAllocationId)); |
|
|
|
|
|
|
|
|
|
List<Long> allocationIds = new ArrayList<>(map.keySet()); |
|
|
|
|
|
|
|
|
|
QueryWrapper<WarehouseUpdownTypeEntity> updownTypeEntityQueryWrapper = new QueryWrapper<>(); |
|
|
|
|
updownTypeEntityQueryWrapper.in("allocation_id", allocationIds) |
|
|
|
|
.eq("is_deleted", 0); |
|
|
|
|
List<WarehouseUpdownTypeEntity> updownTypeList = list(updownTypeEntityQueryWrapper); |
|
|
|
|
//把updownTypeList转化成allocationId为key的Map
|
|
|
|
|
Map<Long, WarehouseUpdownTypeEntity> updownTypeMap = updownTypeList.stream().collect(Collectors.toMap(WarehouseUpdownTypeEntity::getAllocationId, Function.identity())); |
|
|
|
|
|
|
|
|
|
List<Long> toNullUpdownTypeIds = new ArrayList<>(); |
|
|
|
|
List<Long> updateAllocationIds = new ArrayList<>(); |
|
|
|
|
List<WarehouseTaryAllocationEntity> deleteTrayAllocationList = new ArrayList<>(); |
|
|
|
|
List<WarehouseUpdownTypeEntity> updateUpdownTypeList = new ArrayList<>(); |
|
|
|
|
List<WarehouseUpdownGoodsLogEntity> updownGoodsLogEntities = new ArrayList<>(); |
|
|
|
|
List<DistributionParcelListEntity> updownParcelEntities = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
map.keySet().forEach(allocationId -> { |
|
|
|
|
QueryWrapper<WarehouseTaryAllocationEntity> taryAllocationEntityQueryWrapper = new QueryWrapper<>(); |
|
|
|
|
taryAllocationEntityQueryWrapper.eq("allocation_id", allocationId) |
|
|
|
|
.eq("is_deleted", 0); |
|
|
|
|
WarehouseTaryAllocationEntity taryAllocationEntity = warehouseTaryAllocationService.getOne(taryAllocationEntityQueryWrapper); |
|
|
|
|
List<WarehouseUpdownGoodsEntity> updownGoodsEntities1 = map.get(allocationId); |
|
|
|
|
List<String> orderPackageCodes = updownGoodsEntities1.stream().map(WarehouseUpdownGoodsEntity::getAssociationValue).collect(Collectors.toList()); |
|
|
|
|
if (!Objects.isNull(taryAllocationEntity)) { |
|
|
|
|
warehouseTrayTypeService.downPackageByOrderPackageCodeList(orderPackageCodes, remark, warehouseId); |
|
|
|
|
} |
|
|
|
|
WarehouseUpdownTypeEntity updownTypeEntity = updownTypeMap.get(allocationId); |
|
|
|
|
Long updownTypeId = updownTypeEntity.getId(); |
|
|
|
|
//把updownGoodsEntities1的id提取到List中
|
|
|
|
|
List<Long> updownGoodsIds = updownGoodsEntities1.stream().map(WarehouseUpdownGoodsEntity::getId).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
Integer residue = warehouseUpdownGoodsService.deleteByUpdownGoodsIds(updownGoodsIds, updownTypeEntity.getId()); |
|
|
|
|
if (residue == 0) { |
|
|
|
|
//删除上架方式
|
|
|
|
|
toNullUpdownTypeIds.add(updownTypeId); |
|
|
|
|
//修改库位状态为空闲
|
|
|
|
|
updateAllocationIds.add(allocationId); |
|
|
|
|
// basicdataGoodsAllocationClient.updateAllocationStatus(allocationId, "1");
|
|
|
|
|
//如果有托盘还要删除托盘与库位的绑定
|
|
|
|
|
if (!Objects.isNull(taryAllocationEntity)) { |
|
|
|
|
deleteTrayAllocationList.add(taryAllocationEntity); |
|
|
|
|
// warehouseTaryAllocationService.deleteById(taryAllocationEntity);
|
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
updateUpdownTypeList.add(updownTypeEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntities = new ArrayList<>(); |
|
|
|
|
orderPackageCodes.forEach(orderPackageCode -> { |
|
|
|
|
DistributionParcelListEntity parcelListEntity = parcelListEntityMap.get(orderPackageCode); |
|
|
|
|
if (!Objects.isNull(parcelListEntity)) { |
|
|
|
|
parcelListEntities.add(parcelListEntity); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
parcelListEntities.forEach(parcelListEntity -> { |
|
|
|
|
orderSet.add(parcelListEntity.getOrderCode()); |
|
|
|
|
WarehouseUpdownGoodsLogEntity warehouseUpdownGoodsLogEntity = new WarehouseUpdownGoodsLogEntity(); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setCreateUser(1714696768639311873L); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setUpdateUser(1714696768639311873L); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setCreateDept(1649331096241836033L); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setTenantId(TenantNum.HUITONGCODE); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setUpdownTypeId(updownTypeEntity.getId()); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setAreaId(updownTypeEntity.getAreaId()); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setAreaTitle(updownTypeEntity.getAreaTitle()); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setShelfId(updownTypeEntity.getShelfId()); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setShelfTitle(updownTypeEntity.getShelfTitle()); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setAllocationId(updownTypeEntity.getAllocationId()); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setAllocationTitle(updownTypeEntity.getAllocationTitle()); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setPositionCode(updownTypeEntity.getPositionCode()); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setBindingType("2"); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setIsAlltrays(0); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setAssociationId(parcelListEntity.getId()); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setAssociationValue(parcelListEntity.getOrderPackageCode()); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setAssociationType("3"); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setNum(1); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setRemark(remark); |
|
|
|
|
warehouseUpdownGoodsLogEntity.setWarehouseId(updownTypeEntity.getWarehouseId()); |
|
|
|
|
updownGoodsLogEntities.add(warehouseUpdownGoodsLogEntity); |
|
|
|
|
|
|
|
|
|
// parcelListEntity.setOrderPackageGroundingStatus("10");
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
updownParcelEntities.addAll(parcelListEntities); |
|
|
|
|
// updownParcelEntities.addAll(parcelListEntities);
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -1562,7 +1816,7 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
|
|
|
|
|
warehouseUpdownGoodsLogService.saveBatch(updownGoodsLogEntities); |
|
|
|
|
|
|
|
|
|
distributionParcelListClient.updateList(updownParcelEntities); |
|
|
|
|
// distributionParcelListClient.updateList(updownParcelEntities);
|
|
|
|
|
|
|
|
|
|
map.keySet().forEach(allocationId -> { |
|
|
|
|
warehouseGoodsAllocationClient.updateAllocationCache(allocationId.toString()); |
|
|
|
@ -1572,11 +1826,12 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
distributionStockArticleClient.updateOrderInfo(orderCode, warehouseId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
num = num + updownParcelEntities.size(); |
|
|
|
|
num = num + updownGoodsLogEntities.size(); |
|
|
|
|
|
|
|
|
|
return Resp.scanSuccess("下架成功", "成功下架" + num + "件"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R downDeliveryPackage(List<UpShelfPackageDTO> upShelfPackageList, Long warehouseId) { |
|
|
|
|
int num = 0; |
|
|
|
@ -1636,6 +1891,7 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
public R downPackageOrDelTray(List<UpShelfPackageDTO> upShelfPackageList, Long warehouseId, String remark) { |
|
|
|
|
int num = 0; |
|
|
|
|
Set<String> orderSet = new TreeSet<>(); |
|
|
|
|
List<String> orderPackageCodes = new ArrayList<>(); |
|
|
|
|
for (UpShelfPackageDTO upShelfPackageDTO : upShelfPackageList) { |
|
|
|
|
String orderPackageCode = upShelfPackageDTO.getOrderPackageCode(); |
|
|
|
|
//查询包件在哪个库位上
|
|
|
|
@ -1686,16 +1942,50 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
warehouseUpdownGoodsLogService.saveAllocationAndPackage(updownTypeEntity, parcelListEntity, "2", 0, remark); |
|
|
|
|
updatePackageGroundingStatus(orderPackageCode, "10", warehouseId); |
|
|
|
|
// updatePackageGroundingStatus(orderPackageCode, "10", warehouseId);
|
|
|
|
|
updateUpdownTypeNum(updownTypeEntity); |
|
|
|
|
|
|
|
|
|
orderSet.add(orderCode); |
|
|
|
|
num = num + quantity; |
|
|
|
|
orderPackageCodes.add(orderPackageCode); |
|
|
|
|
warehouseGoodsAllocationClient.updateAllocationCache(allocationId.toString()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (String orderCode : orderSet) { |
|
|
|
|
distributionStockArticleClient.updateOrderInfo(orderCode, warehouseId); |
|
|
|
|
// for (String orderCode : orderSet) {
|
|
|
|
|
// distributionStockArticleClient.updateOrderInfo(orderCode, warehouseId);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
FindParamterDTO findParamterDTO = new FindParamterDTO(); |
|
|
|
|
findParamterDTO.setOrderCodeList(orderPackageCodes); |
|
|
|
|
findParamterDTO.setWarehouseId(warehouseId); |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findListByOrderPackageCodeList(findParamterDTO); |
|
|
|
|
|
|
|
|
|
//把parcelListEntityList中所有元素的conditions作为key进行分组成一个Map
|
|
|
|
|
Map<Integer, List<DistributionParcelListEntity>> listMap = parcelListEntityList.stream().collect(Collectors.groupingBy(DistributionParcelListEntity::getConditions)); |
|
|
|
|
|
|
|
|
|
listMap.keySet().forEach(conditions -> { |
|
|
|
|
List<DistributionParcelListEntity> ls = listMap.get(conditions); |
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",1); |
|
|
|
|
jsonObject.put("conditions",conditions); |
|
|
|
|
jsonObject.put("operation",4); |
|
|
|
|
//把ls中所有元素的orderPackageCode放入一个List
|
|
|
|
|
List<String> packageCodes = ls.stream().map(DistributionParcelListEntity::getOrderPackageCode).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
jsonObject.put("orderPackageCodes",packageCodes); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("###########saveTrayTypeByOrderPackageCode: 发送打托广播失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return Resp.scanSuccess("下架成功", "成功下架" + num + "件"); |
|
|
|
@ -1779,14 +2069,36 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
warehouseUpdownGoodsLogService.saveAllocationAndPackage(updownTypeEntity, parcelListEntity, "2", 0, remark); |
|
|
|
|
if (isOrNo) { |
|
|
|
|
updatePackageGroundingStatus(orderPackageCode, "10", warehouseId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
updateUpdownTypeNum(updownTypeEntity); |
|
|
|
|
|
|
|
|
|
orderSet.add(orderCode); |
|
|
|
|
// orderSet.add(orderCode);
|
|
|
|
|
num = num + quantity; |
|
|
|
|
warehouseGoodsAllocationClient.updateAllocationCache(allocationId.toString()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (isOrNo) { |
|
|
|
|
// updatePackageGroundingStatus(orderPackageCode, "10", warehouseId);
|
|
|
|
|
try{ |
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",1); |
|
|
|
|
jsonObject.put("operation",4); |
|
|
|
|
jsonObject.put("conditions",parcelListEntity.getConditions()); |
|
|
|
|
List<String> orderPackageCodes = new ArrayList<>(); |
|
|
|
|
orderPackageCodes.add(orderPackageCode); |
|
|
|
|
jsonObject.put("orderPackageCodes",orderPackageCodes); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("###########saveTrayTypeByOrderPackageCode: 发送打托广播失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -1794,16 +2106,16 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
// for (String orderCode : orderSet) {
|
|
|
|
|
// distributionStockArticleClient.updateOrderInfo(orderCode, warehouseId);
|
|
|
|
|
// }
|
|
|
|
|
List<String> orders = new ArrayList<>(orderSet); |
|
|
|
|
if (orders.isEmpty()) { |
|
|
|
|
return Resp.scanSuccess("下架成功", "成功下架" + num + "件"); |
|
|
|
|
} |
|
|
|
|
// 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"); |
|
|
|
|
// OrderPackageDTO orderPackageDTO1 = new OrderPackageDTO();
|
|
|
|
|
// orderPackageDTO1.setWarehouseId(warehouseId);
|
|
|
|
|
// orderPackageDTO1.setStrings(orders);
|
|
|
|
|
// distributionStockArticleClient.updateOrdersInfo(orderPackageDTO1);
|
|
|
|
|
// log.info(">>>>> T downPackageAndDelTrayAndIsUpdate end");
|
|
|
|
|
|
|
|
|
|
return Resp.scanSuccess("下架成功", "成功下架" + num + "件"); |
|
|
|
|
} |
|
|
|
@ -1819,6 +2131,10 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
String orderCode = upShelfZeroOrderDTO.getOrderCode();//订单号
|
|
|
|
|
Long allocationId = upShelfZeroOrderDTO.getAllocationId();//库位id
|
|
|
|
|
Integer enterNum = upShelfZeroOrderDTO.getEnterNum();//下架数量
|
|
|
|
|
|
|
|
|
|
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient.getEntityByAllocationId(allocationId); |
|
|
|
|
String qrCode = goodsAllocationEntity.getQrCode(); |
|
|
|
|
|
|
|
|
|
BasicdataTrayEntity trayEntity = warehouseTaryAllocationService.getTrayByAllocationId(allocationId); |
|
|
|
|
QueryWrapper<WarehouseUpdownGoodsEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("association_value", orderCode) |
|
|
|
@ -1856,6 +2172,26 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
removeById(updownTypeId); |
|
|
|
|
//修改库位状态为空闲
|
|
|
|
|
basicdataGoodsAllocationClient.updateAllocationStatus(allocationId, "1"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",2); |
|
|
|
|
jsonObject.put("operation",4); |
|
|
|
|
List<String> orderCodes = new ArrayList<>(); |
|
|
|
|
orderCodes.add(orderCode); |
|
|
|
|
jsonObject.put("orderCodes",orderCodes); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
jsonObject.put("allocationName",qrCode); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("###########saveTrayTypeByOrderPackageCode: 发送打托广播失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
saveUpdownGoodsLog(updownGoodsList, "2", 0, remark, warehouseId); |
|
|
|
|
updateUpdownTypeNum(updownTypeEntity); |
|
|
|
@ -1872,7 +2208,7 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
//存入日志
|
|
|
|
|
saveUpdownGoodsLogPart(updownGoodsList, enterNum, "2", 0, remark + "部分", updownTypeEntity.getWarehouseId()); |
|
|
|
|
} |
|
|
|
|
updateZeroOrderGroundingStatus(orderCode, warehouseId); |
|
|
|
|
// updateZeroOrderGroundingStatus(orderCode, warehouseId);
|
|
|
|
|
updateUpdownTypeNum(updownTypeEntity); |
|
|
|
|
allNum = allNum + enterNum; |
|
|
|
|
//更新货位缓存
|
|
|
|
@ -1924,6 +2260,10 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
String incomingBatch = upShelfStockDTO.getIncomingBatch(); |
|
|
|
|
|
|
|
|
|
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient.getEntityByAllocationId(allocationId); |
|
|
|
|
String qrCode = goodsAllocationEntity.getQrCode(); |
|
|
|
|
|
|
|
|
|
BasicdataTrayEntity trayEntity = warehouseTaryAllocationService.getTrayByAllocationId(allocationId); |
|
|
|
|
|
|
|
|
|
QueryWrapper<WarehouseUpdownGoodsEntity> queryWrapper = new QueryWrapper<>(); |
|
|
|
@ -1971,6 +2311,29 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
removeById(updownTypeId); |
|
|
|
|
//修改库位状态为空闲
|
|
|
|
|
basicdataGoodsAllocationClient.updateAllocationStatus(allocationId, "1"); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
DistributionStockListEntity stockListEntity = distributionStockListClient.getEntityByMarketIdAndMaterialCodeAndIncomingBatch(marketId, materialCode, incomingBatch, warehouseId); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",3); |
|
|
|
|
jsonObject.put("operation",4); |
|
|
|
|
List<Long> stockListIds = new ArrayList<>(); |
|
|
|
|
stockListIds.add(stockListEntity.getId()); |
|
|
|
|
jsonObject.put("stockListIds",stockListIds); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
jsonObject.put("allocationName",qrCode); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("###########saveTrayTypeByOrderPackageCode: 发送打托广播失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
//更新货位缓存
|
|
|
|
|
warehouseGoodsAllocationClient.updateAllocationCache(allocationId.toString()); |
|
|
|
@ -2018,11 +2381,14 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
.eq("is_deleted", 0); |
|
|
|
|
WarehouseUpdownTypeEntity updownTypeEntity = baseMapper.selectOne(updownTypeEntityQueryWrapper); |
|
|
|
|
// Long updownTypeId = updownTypeEntity.getId();
|
|
|
|
|
// BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient.getEntityByAllocationId(allocationId);
|
|
|
|
|
// if(Objects.isNull(goodsAllocationEntity)){
|
|
|
|
|
// log.warn("#################downTrayCode: 库位信息不存在 allocationId={}",allocationId);
|
|
|
|
|
// return R.fail(403,"库位信息不存在");
|
|
|
|
|
// }
|
|
|
|
|
BasicdataGoodsAllocationEntity goodsAllocationEntity = basicdataGoodsAllocationClient.getEntityByAllocationId(allocationId); |
|
|
|
|
if(Objects.isNull(goodsAllocationEntity)){ |
|
|
|
|
log.warn("#################downTrayCode: 库位信息不存在 allocationId={}",allocationId); |
|
|
|
|
return R.fail(403,"库位信息不存在"); |
|
|
|
|
} |
|
|
|
|
String qrCode = goodsAllocationEntity.getQrCode(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Long wid = goodsAllocationEntity.getWarehouseId();
|
|
|
|
|
// if(!wid.equals(warehouseId)){
|
|
|
|
|
// log.warn("#################downTrayCode: 库位不在当前仓 allocationId={}",allocationId);
|
|
|
|
@ -2045,23 +2411,95 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
//修改状态
|
|
|
|
|
Set<String> setOrder = new TreeSet<>(); |
|
|
|
|
for (WarehouseUpdownGoodsEntity updownGoodsEntity : updownGoodsList) { |
|
|
|
|
String associationType = updownGoodsEntity.getAssociationType(); |
|
|
|
|
String associationValue = updownGoodsEntity.getAssociationValue(); |
|
|
|
|
// String associationType = updownGoodsEntity.getAssociationType();
|
|
|
|
|
// String associationValue = updownGoodsEntity.getAssociationValue();
|
|
|
|
|
Integer num = updownGoodsEntity.getNum(); |
|
|
|
|
if ("1".equals(associationType)) { |
|
|
|
|
updateZeroOrderGroundingStatus(associationValue, warehouseId); |
|
|
|
|
} else if ("3".equals(associationType)) { |
|
|
|
|
DistributionParcelListEntity parcelListEntity = distributionParcelListClient.findByPacketBarCodeAndWarehouseId(associationValue, warehouseId); |
|
|
|
|
updatePackageGroundingStatus(associationValue, "10", warehouseId); |
|
|
|
|
setOrder.add(parcelListEntity.getOrderCode()); |
|
|
|
|
} |
|
|
|
|
// if ("1".equals(associationType)) {
|
|
|
|
|
// updateZeroOrderGroundingStatus(associationValue, warehouseId);
|
|
|
|
|
// } else if ("3".equals(associationType)) {
|
|
|
|
|
// DistributionParcelListEntity parcelListEntity = distributionParcelListClient.findByPacketBarCodeAndWarehouseId(associationValue, warehouseId);
|
|
|
|
|
// updatePackageGroundingStatus(associationValue, "10", warehouseId);
|
|
|
|
|
// setOrder.add(parcelListEntity.getOrderCode());
|
|
|
|
|
// }
|
|
|
|
|
allNum = allNum + num; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
for (String orderCode : setOrder) { |
|
|
|
|
distributionStockArticleClient.updateOrderInfo(orderCode, warehouseId); |
|
|
|
|
// for (String orderCode : setOrder) {
|
|
|
|
|
// distributionStockArticleClient.updateOrderInfo(orderCode, warehouseId);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
//把updownGoodsList通过associationType进行分组associationType作为key
|
|
|
|
|
Map<String, List<WarehouseUpdownGoodsEntity>> map = updownGoodsList.stream().collect(Collectors.groupingBy(WarehouseUpdownGoodsEntity::getAssociationType)); |
|
|
|
|
map.keySet().forEach(associationType -> { |
|
|
|
|
List<WarehouseUpdownGoodsEntity> updownGoodsEntities = map.get(associationType); |
|
|
|
|
//把updownGoodsEntities中所有元素的associationValue放入一个List
|
|
|
|
|
List<String> associationValues = updownGoodsEntities.stream().map(WarehouseUpdownGoodsEntity::getAssociationValue).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
if("1".equals(associationType)){ |
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",2); |
|
|
|
|
jsonObject.put("operation",4); |
|
|
|
|
jsonObject.put("orderCodes",associationValues); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
jsonObject.put("allocationName",qrCode); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
}else if("3".equals(associationType)){ |
|
|
|
|
FindParamterDTO findParamterDTO = new FindParamterDTO(); |
|
|
|
|
findParamterDTO.setOrderPackageCodeList(associationValues); |
|
|
|
|
findParamterDTO.setWarehouseId(warehouseId); |
|
|
|
|
List<DistributionParcelListEntity> listEntityList = distributionParcelListClient.findListByOrderPackageCodeList(findParamterDTO); |
|
|
|
|
//把listEntityList通过conditions进行分组
|
|
|
|
|
Map<Integer, List<DistributionParcelListEntity>> map1 = listEntityList.stream().collect(Collectors.groupingBy(DistributionParcelListEntity::getConditions)); |
|
|
|
|
map1.keySet().forEach(conditions -> { |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = map1.get(conditions); |
|
|
|
|
//把parcelListEntityList中所有元素的orderPackageCodes放入一个List
|
|
|
|
|
List<String> orderPackageCodes = parcelListEntityList.stream().map(DistributionParcelListEntity::getOrderPackageCode).collect(Collectors.toList()); |
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",1); |
|
|
|
|
jsonObject.put("conditions",conditions); |
|
|
|
|
jsonObject.put("operation",4); |
|
|
|
|
jsonObject.put("orderPackageCodes",orderPackageCodes); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
}); |
|
|
|
|
}else if("4".equals(associationType)){ |
|
|
|
|
List<Long> stockListIds = new ArrayList<>(); |
|
|
|
|
updownGoodsEntities.forEach(updownGoodsEntity -> { |
|
|
|
|
String materialCode = updownGoodsEntity.getAssociationValue(); |
|
|
|
|
String incomingBatch = updownGoodsEntity.getIncomingBatch(); |
|
|
|
|
Long marketId = updownGoodsEntity.getMarketId(); |
|
|
|
|
|
|
|
|
|
DistributionStockListEntity stockListEntity = distributionStockListClient.getEntityByMarketIdAndMaterialCodeAndIncomingBatch(marketId, materialCode, incomingBatch, warehouseId); |
|
|
|
|
if(!Objects.isNull(stockListEntity)){ |
|
|
|
|
stockListIds.add(stockListEntity.getId()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",3); |
|
|
|
|
jsonObject.put("operation",4); |
|
|
|
|
jsonObject.put("stockListIds",stockListIds); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
jsonObject.put("allocationName",qrCode); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("################downAllocation: 下架库位存入广播失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//修改库位状态
|
|
|
|
|
basicdataGoodsAllocationClient.updateAllocationStatus(allocationId, "1"); |
|
|
|
|
|
|
|
|
@ -2166,6 +2604,7 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
|
|
|
|
|
//上架新的库位
|
|
|
|
|
upShelfPackage(upShelfPackageList, allocationId, warehouseId, remark + "上架"); |
|
|
|
|
|
|
|
|
|
//更新货位缓存
|
|
|
|
|
warehouseGoodsAllocationClient.updateAllocationCache(allocationId.toString()); |
|
|
|
|
return Resp.scanSuccess("移库成功", "移库成功"); |
|
|
|
@ -2519,20 +2958,22 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
BasicdataTrayEntity trayEntity = warehouseTaryAllocationService.getTrayByAllocationId(allocationId); |
|
|
|
|
if (Objects.isNull(trayEntity)) { |
|
|
|
|
//没有托盘就直接修改库位数据
|
|
|
|
|
//修改绑定数据的库位信息到新库位
|
|
|
|
|
changeUpdownGoodsToNewAllocation(list, targetAllocationId, updownTypeEntity); |
|
|
|
|
|
|
|
|
|
//下架原库位的所有货物
|
|
|
|
|
downAllocation(allocationId, warehouseId); |
|
|
|
|
|
|
|
|
|
for (WarehouseUpdownGoodsEntity updownGoodsEntity : list) { |
|
|
|
|
String associationType = updownGoodsEntity.getAssociationType(); |
|
|
|
|
String associationValue = updownGoodsEntity.getAssociationValue(); |
|
|
|
|
if ("1".equals(associationType)) { |
|
|
|
|
updateZeroOrderGroundingStatus(associationValue, warehouseId); |
|
|
|
|
} else if ("3".equals(associationType)) { |
|
|
|
|
updatePackageGroundingStatus(associationValue, "20", warehouseId); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//修改绑定数据的库位信息到新库位
|
|
|
|
|
changeUpdownGoodsToNewAllocation(list, targetAllocationId, updownTypeEntity); |
|
|
|
|
|
|
|
|
|
// for (WarehouseUpdownGoodsEntity updownGoodsEntity : list) {
|
|
|
|
|
// String associationType = updownGoodsEntity.getAssociationType();
|
|
|
|
|
// String associationValue = updownGoodsEntity.getAssociationValue();
|
|
|
|
|
// if ("1".equals(associationType)) {
|
|
|
|
|
// updateZeroOrderGroundingStatus(associationValue, warehouseId);
|
|
|
|
|
// } else if ("3".equals(associationType)) {
|
|
|
|
|
// updatePackageGroundingStatus(associationValue, "20", warehouseId);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
} else { |
|
|
|
|
String trayCode = trayEntity.getPalletCode(); |
|
|
|
|
moveAllocationByTrayCode(trayCode, targetAllocationId, warehouseId); |
|
|
|
@ -2664,6 +3105,7 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
} |
|
|
|
|
String enableStatus = goodsAllocationEntity.getEnableStatus(); |
|
|
|
|
Long goodsShelfId = goodsAllocationEntity.getGoodsShelfId(); |
|
|
|
|
String qrCode = goodsAllocationEntity.getQrCode(); |
|
|
|
|
if ("2".equals(enableStatus)) { |
|
|
|
|
log.warn("##############changeUpdownGoodsToNewAllocation: 库位已被禁用 allocationId={}", allocationId); |
|
|
|
|
throw new CustomerException(403, "库位已被禁用"); |
|
|
|
@ -2721,6 +3163,81 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
basicdataGoodsAllocationClient.updateAllocationStatus(allocationId, "2"); |
|
|
|
|
|
|
|
|
|
saveUpdownGoodsLog(newList, "1", 0, "移库:整库移库上架", targetUpdownTypeEntity.getWarehouseId()); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
//把trayGoodsList通过associationType进行分组,associationType作为key的Map
|
|
|
|
|
Map<String, List<WarehouseUpdownGoodsEntity>> map = list.stream().collect(Collectors.groupingBy(WarehouseUpdownGoodsEntity::getAssociationType)); |
|
|
|
|
|
|
|
|
|
map.keySet().forEach(associationType -> { |
|
|
|
|
List<WarehouseUpdownGoodsEntity> updownGoodsEntities = map.get(associationType); |
|
|
|
|
//把trayGoodsEntities中所有元素的associationValue存入一个List集合
|
|
|
|
|
List<String> associationValues = updownGoodsEntities.stream().map(WarehouseUpdownGoodsEntity::getAssociationValue).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
if("1".equals(associationType)){ |
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",2); |
|
|
|
|
jsonObject.put("operation",3); |
|
|
|
|
jsonObject.put("orderCodes",associationValues); |
|
|
|
|
jsonObject.put("warehouseId",wid); |
|
|
|
|
jsonObject.put("allocationName",qrCode); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
}else if ("3".equals(associationType)){ |
|
|
|
|
FindParamterDTO findParamterDTO = new FindParamterDTO(); |
|
|
|
|
findParamterDTO.setOrderPackageCodeList(associationValues); |
|
|
|
|
findParamterDTO.setWarehouseId(wid); |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findListByOrderPackageCodeList(findParamterDTO); |
|
|
|
|
//把parcelListEntityList通过conditions进行分组,conditions作为key的Map
|
|
|
|
|
Map<Integer, List<DistributionParcelListEntity>> parcelListEntityMap = parcelListEntityList.stream().collect(Collectors.groupingBy(DistributionParcelListEntity::getConditions)); |
|
|
|
|
|
|
|
|
|
parcelListEntityMap.keySet().forEach(conditions -> { |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntities = parcelListEntityMap.get(conditions); |
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",1); |
|
|
|
|
jsonObject.put("operation",3); |
|
|
|
|
jsonObject.put("conditions",conditions); |
|
|
|
|
jsonObject.put("orderPackageCodes",associationValues); |
|
|
|
|
jsonObject.put("warehouseId",wid); |
|
|
|
|
jsonObject.put("allocationName",qrCode); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
}else if ("4".equals(associationType)){ |
|
|
|
|
List<Long> stockListIds = new ArrayList<>(); |
|
|
|
|
updownGoodsEntities.forEach(updownGoodsEntity -> { |
|
|
|
|
String materialCode = updownGoodsEntity.getAssociationValue(); |
|
|
|
|
String incomingBatch = updownGoodsEntity.getIncomingBatch(); |
|
|
|
|
Long marketId = updownGoodsEntity.getMarketId(); |
|
|
|
|
DistributionStockListEntity stockListEntity = distributionStockListClient.getEntityByMarketIdAndMaterialCodeAndIncomingBatch(marketId, incomingBatch, materialCode, wid); |
|
|
|
|
if(!Objects.isNull(stockListEntity)){ |
|
|
|
|
stockListIds.add(stockListEntity.getId()); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",3); |
|
|
|
|
jsonObject.put("operation",3); |
|
|
|
|
jsonObject.put("stockListIds",stockListIds); |
|
|
|
|
jsonObject.put("warehouseId",wid); |
|
|
|
|
jsonObject.put("allocationName",qrCode); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("###########saveTrayTypeByOrderPackageCode: 发送打托广播失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -2935,6 +3452,7 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
|
|
|
|
|
private R saveTrayGoodsToAllocation(WarehouseTrayTypeEntity trayTypeEntity, BasicdataGoodsAllocationEntity goodsAllocationEntity, BasicdataGoodsShelfEntity goodsShelfEntity, BasicdataGoodsAreaEntity goodsAreaEntity, Long warehouseId) { |
|
|
|
|
Long allocationId = goodsAllocationEntity.getId(); |
|
|
|
|
String qrCode = goodsAllocationEntity.getQrCode(); |
|
|
|
|
Long shelfId = goodsShelfEntity.getId(); |
|
|
|
|
Long areaId = goodsAreaEntity.getId(); |
|
|
|
|
QueryWrapper<WarehouseUpdownTypeEntity> updownTypeQueryWrapper = new QueryWrapper<>(); |
|
|
|
@ -2955,16 +3473,16 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
//把托盘绑定关系转成货位绑定关系
|
|
|
|
|
changeTrayGoodsToUpdownGoodsAndLog(trayGoodsList, updownTypeEntity); |
|
|
|
|
|
|
|
|
|
for (WarehouseTrayGoodsEntity trayGoodsEntity : trayGoodsList) { |
|
|
|
|
String associationType = trayGoodsEntity.getAssociationType(); |
|
|
|
|
if ("3".equals(associationType)) { |
|
|
|
|
String orderPackageCode = trayGoodsEntity.getAssociationValue(); |
|
|
|
|
updatePackageGroundingStatus(orderPackageCode, "20", warehouseId); |
|
|
|
|
} else if ("1".equals(associationType)) { |
|
|
|
|
String orderCode = trayGoodsEntity.getAssociationValue(); |
|
|
|
|
updateZeroOrderGroundingStatus(orderCode, warehouseId); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// for (WarehouseTrayGoodsEntity trayGoodsEntity : trayGoodsList) {
|
|
|
|
|
// String associationType = trayGoodsEntity.getAssociationType();
|
|
|
|
|
// if ("3".equals(associationType)) {
|
|
|
|
|
// String orderPackageCode = trayGoodsEntity.getAssociationValue();
|
|
|
|
|
// updatePackageGroundingStatus(orderPackageCode, "20", warehouseId);
|
|
|
|
|
// } else if ("1".equals(associationType)) {
|
|
|
|
|
// String orderCode = trayGoodsEntity.getAssociationValue();
|
|
|
|
|
// updateZeroOrderGroundingStatus(orderCode, warehouseId);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
//绑定托盘与库位关系
|
|
|
|
|
WarehouseTaryAllocationEntity taryAllocationEntity = new WarehouseTaryAllocationEntity(); |
|
|
|
@ -2985,6 +3503,83 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
Integer stockNum = trayTypeEntity.getStockNum(); |
|
|
|
|
Integer totalNum = trayTypeEntity.getTotalNum(); |
|
|
|
|
Integer total = stockNum + totalNum; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
//把trayGoodsList通过associationType进行分组,associationType作为key的Map
|
|
|
|
|
Map<String, List<WarehouseTrayGoodsEntity>> map = trayGoodsList.stream().collect(Collectors.groupingBy(WarehouseTrayGoodsEntity::getAssociationType)); |
|
|
|
|
|
|
|
|
|
map.keySet().forEach(associationType -> { |
|
|
|
|
List<WarehouseTrayGoodsEntity> trayGoodsEntities = map.get(associationType); |
|
|
|
|
//把trayGoodsEntities中所有元素的associationValue存入一个List集合
|
|
|
|
|
List<String> associationValues = trayGoodsEntities.stream().map(WarehouseTrayGoodsEntity::getAssociationValue).collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
|
if("1".equals(associationType)){ |
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",2); |
|
|
|
|
jsonObject.put("operation",3); |
|
|
|
|
jsonObject.put("orderCodes",associationValues); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
jsonObject.put("allocationName",qrCode); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
}else if ("3".equals(associationType)){ |
|
|
|
|
FindParamterDTO findParamterDTO = new FindParamterDTO(); |
|
|
|
|
findParamterDTO.setOrderPackageCodeList(associationValues); |
|
|
|
|
findParamterDTO.setWarehouseId(warehouseId); |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionParcelListClient.findListByOrderPackageCodeList(findParamterDTO); |
|
|
|
|
//把parcelListEntityList通过conditions进行分组,conditions作为key的Map
|
|
|
|
|
Map<Integer, List<DistributionParcelListEntity>> parcelListEntityMap = parcelListEntityList.stream().collect(Collectors.groupingBy(DistributionParcelListEntity::getConditions)); |
|
|
|
|
|
|
|
|
|
parcelListEntityMap.keySet().forEach(conditions -> { |
|
|
|
|
List<DistributionParcelListEntity> parcelListEntities = parcelListEntityMap.get(conditions); |
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",1); |
|
|
|
|
jsonObject.put("operation",3); |
|
|
|
|
jsonObject.put("conditions",conditions); |
|
|
|
|
jsonObject.put("orderPackageCodes",associationValues); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
jsonObject.put("allocationName",qrCode); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
}else if ("4".equals(associationType)){ |
|
|
|
|
List<Long> stockListIds = new ArrayList<>(); |
|
|
|
|
trayGoodsEntities.forEach(trayGoodsEntity -> { |
|
|
|
|
String materialCode = trayGoodsEntity.getAssociationValue(); |
|
|
|
|
String incomingBatch = trayGoodsEntity.getIncomingBatch(); |
|
|
|
|
Long marketId = trayGoodsEntity.getMarketId(); |
|
|
|
|
DistributionStockListEntity stockListEntity = distributionStockListClient.getEntityByMarketIdAndMaterialCodeAndIncomingBatch(marketId, incomingBatch, materialCode, warehouseId); |
|
|
|
|
if(!Objects.isNull(stockListEntity)){ |
|
|
|
|
stockListIds.add(stockListEntity.getId()); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
JSONObject jsonObject = new JSONObject(); |
|
|
|
|
jsonObject.put("dataType",3); |
|
|
|
|
jsonObject.put("operation",3); |
|
|
|
|
jsonObject.put("stockListIds",stockListIds); |
|
|
|
|
jsonObject.put("warehouseId",warehouseId); |
|
|
|
|
jsonObject.put("allocationName",qrCode); |
|
|
|
|
|
|
|
|
|
FanoutMsg fanoutMsg = FanoutMsg.builder().exchange(FanoutConstants.warehouse.ALLOCATION.EXCHANGE).msg(jsonObject.toJSONString()).build(); |
|
|
|
|
|
|
|
|
|
sendFanoutService.sendFanoutMsg(fanoutMsg); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.warn("###########saveTrayTypeByOrderPackageCode: 发送打托广播失败"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return Resp.scanSuccess("上架成功", "整托上架成功" + total + "件"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3098,7 +3693,7 @@ public class WarehouseUpdownTypeServiceImpl extends BaseServiceImpl<WarehouseUpd
|
|
|
|
|
//货物和库位绑定
|
|
|
|
|
warehouseUpdownGoodsService.bindingAllocationAndPackageList(updownTypeEntity, parcelListEntities, "1", 0, remrk); |
|
|
|
|
|
|
|
|
|
distributionParcelListClient.updateList(parcelListEntities); |
|
|
|
|
// distributionParcelListClient.updateList(parcelListEntities);
|
|
|
|
|
|
|
|
|
|
//修改上架方式上的数据
|
|
|
|
|
updateUpdownTypeNum(updownTypeEntity); |
|
|
|
|