|
|
|
@ -6479,6 +6479,90 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
return baseMapper.getDistributionSignforInventoryList(id); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R loadingAbnormalPackageListTurnDown(String ids) { |
|
|
|
|
//异常驳回进行异常信息的删除,对于装车记录的清理,对于已装车和签收的数量扣减
|
|
|
|
|
String method = "####################异常驳回loadingAbnormalPackageListTurnDown"; |
|
|
|
|
if (Func.isEmpty(ids)){ |
|
|
|
|
log.error(method+"ids参数缺失:{}",ids); |
|
|
|
|
} |
|
|
|
|
List<Long> list = Func.toLongList(ids); |
|
|
|
|
List<DistributionLoadscanAbnormalEntity> abnormalEntities = distributionLoadscanAbnormalService.listByIds(list); |
|
|
|
|
|
|
|
|
|
int loadingNum = 0; |
|
|
|
|
int signforNum = 0; |
|
|
|
|
List<Long> packageIdList = new ArrayList<>(); |
|
|
|
|
List<Long> orderIds = new ArrayList<>(); |
|
|
|
|
Long reservationId = null; |
|
|
|
|
Long deliveryId = null; |
|
|
|
|
if (!abnormalEntities.isEmpty()) { |
|
|
|
|
List<Long> rIds = abnormalEntities.stream().map(DistributionLoadscanAbnormalEntity::getReservationId).distinct().collect(Collectors.toList()); |
|
|
|
|
List<Long> dIds = abnormalEntities.stream().map(DistributionLoadscanAbnormalEntity::getDeliveryListId).distinct().collect(Collectors.toList()); |
|
|
|
|
List<Long> packageIds = abnormalEntities.stream().map(DistributionLoadscanAbnormalEntity::getPackageId).distinct().collect(Collectors.toList()); |
|
|
|
|
if (rIds.size()>1){ |
|
|
|
|
log.error(method+"查询出多个reservatyionId:{}",rIds); |
|
|
|
|
return R.fail("数据错误,请联系管理员"); |
|
|
|
|
} |
|
|
|
|
if (dIds.size()>1){ |
|
|
|
|
log.error(method+"查询出多个deliveryId:{}",dIds); |
|
|
|
|
return R.fail("数据错误,请联系管理员"); |
|
|
|
|
} |
|
|
|
|
reservationId = rIds.get(0); |
|
|
|
|
deliveryId = dIds.get(0); |
|
|
|
|
List<DistributionLoadscanEntity> loadscanEntityList = distributionLoadscanService.list(Wrappers.<DistributionLoadscanEntity>query().lambda() |
|
|
|
|
.in(DistributionLoadscanEntity::getPackageId, packageIds) |
|
|
|
|
.eq(DistributionLoadscanEntity::getReservationId, reservationId) |
|
|
|
|
.eq(DistributionLoadscanEntity::getDeliveryId, deliveryId) |
|
|
|
|
.ne(DistributionLoadscanEntity::getScanStatus, LoadingStatusConstant.quxiao.getValue()) |
|
|
|
|
); |
|
|
|
|
List<DistributionLoadscanAbnormalEntity> updateList = new ArrayList<>(); |
|
|
|
|
if (!loadscanEntityList.isEmpty()) { |
|
|
|
|
Map<Long, DistributionLoadscanEntity> loadscanMap = loadscanEntityList.stream().collect(Collectors.toMap(DistributionLoadscanEntity::getPackageId, Function.identity(), (k, v) -> k)); |
|
|
|
|
//存在异常列表
|
|
|
|
|
//进行异常列表的清理
|
|
|
|
|
for (DistributionLoadscanAbnormalEntity abnormalEntity : abnormalEntities) { |
|
|
|
|
abnormalEntity.setAuditingStatus(3); |
|
|
|
|
abnormalEntity.setAuditingUser(AuthUtil.getNickName()); |
|
|
|
|
abnormalEntity.setAuditingTime(new Date()); |
|
|
|
|
abnormalEntity.setIsDeleted(1); |
|
|
|
|
updateList.add(abnormalEntity); |
|
|
|
|
//收集需要进行维护的包件
|
|
|
|
|
packageIdList.add(abnormalEntity.getPackageId()); |
|
|
|
|
//查询是否进行签收
|
|
|
|
|
// 统计需要进行扣减的签收数量
|
|
|
|
|
if (Func.isNotEmpty(loadscanMap.get(abnormalEntity.getPackageId()))){ |
|
|
|
|
//获取装车记录
|
|
|
|
|
DistributionLoadscanEntity distributionLoadscanEntity = loadscanMap.get(abnormalEntity.getPackageId()); |
|
|
|
|
orderIds.add(distributionLoadscanEntity.getOrderId()); |
|
|
|
|
if (distributionLoadscanEntity.getSignforState().equals(LoadScanSigningStatusConstant.yiqianshou.getValue())){ |
|
|
|
|
signforNum++; |
|
|
|
|
} |
|
|
|
|
}else { |
|
|
|
|
//异常驳回无装车记录
|
|
|
|
|
log.error(method+"异常驳回无装车记录"); |
|
|
|
|
throw new RuntimeException("异常驳货列表存在无装车信息"); |
|
|
|
|
} |
|
|
|
|
loadingNum++; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//进行装车记录的统计
|
|
|
|
|
} |
|
|
|
|
//扣减装车和签收数
|
|
|
|
|
distributionSignforMapper.deductionLoadingAndSignforPacjageNum(reservationId,deliveryId,loadingNum,signforNum); |
|
|
|
|
//恢复包件数据
|
|
|
|
|
distributionParcelListService.update(Wrappers.<DistributionParcelListEntity>update().lambda() |
|
|
|
|
.in(DistributionParcelListEntity::getId,packageIdList) |
|
|
|
|
.set(DistributionParcelListEntity::getOrderPackageReservationStatus,OrderPackageReservationStatusConstant.daiyuyue.getValue()) |
|
|
|
|
.set(DistributionParcelListEntity::getOrderPackageLoadingStatus,OrderPackageLoadingStatusConstant.weizhuancghe.getValue()) |
|
|
|
|
.set(DistributionParcelListEntity::getOrderPackageStatus,OrderPackageStatusConstant.yiruku.getValue()) |
|
|
|
|
.set(DistributionParcelListEntity::getOrderPackageStockupStatus,OrderPackageStockupStatusConstant.daibeihuo.getValue()) |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
//维护相关的订单信息
|
|
|
|
|
distributionStockArticleService.maintenanceOrderInfoByIds(orderIds); |
|
|
|
|
return R.success("异常驳回成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void buildNameAndPhone(List<SignPushDataUnitDTO> pushOldPackageSigning) { |
|
|
|
|
for (SignPushDataUnitDTO signPushDataUnitDTO : pushOldPackageSigning) { |
|
|
|
|
User user = bladeRedis.get(RedisKeyConstant.USER_NAME_PHONE_KEY + signPushDataUnitDTO.getAdministratorsId()); |
|
|
|
|