|
|
|
@ -48,6 +48,7 @@ import com.logpm.warehouse.feign.IWarehouseUpdownTypeClient;
|
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.apache.commons.lang.StringUtils; |
|
|
|
|
import org.jetbrains.annotations.NotNull; |
|
|
|
|
import org.springblade.common.constant.DictBizConstant; |
|
|
|
|
import org.springblade.common.constant.DistributionTypeConstant; |
|
|
|
|
import org.springblade.common.constant.Inventory.InventoryLoadingStatusConstant; |
|
|
|
@ -169,8 +170,8 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<BasicdataClientUserEntity> basicdataClientUserEntityListByUserIds = basicdataClientClient.getBasicdataClientUserEntityListByUserId(AuthUtil.getUserId()); |
|
|
|
|
List clientIds =null; |
|
|
|
|
if(Func.isNotEmpty(basicdataClientUserEntityListByUserIds)){ |
|
|
|
|
List clientIds = null; |
|
|
|
|
if (Func.isNotEmpty(basicdataClientUserEntityListByUserIds)) { |
|
|
|
|
clientIds = basicdataClientUserEntityListByUserIds.stream().map(BasicdataClientUserEntity::getClientId).collect(Collectors.toList()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -198,6 +199,330 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
return page.setRecords(distributionSignforVOS); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public R getNumberDetail(Long signingId, Integer type) { |
|
|
|
|
DistributionSignforEntity byId = this.getById(signingId); |
|
|
|
|
//订制品
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntityList = distributionReservationMapper.selectPackageListByReservationId(byId.getReservationId()); |
|
|
|
|
//库存品
|
|
|
|
|
List<DisStockListDetailEntity> disStockListDetailEntities = distributionReservationMapper.selectInventoryListByReservation(byId.getReservationId()); |
|
|
|
|
//零担
|
|
|
|
|
List<DistributionParcelNumberDTO> distributionParcelNumberDTOS = distributionReservationMapper.selectZeroPackageListByReservationId(byId.getReservationId()); |
|
|
|
|
List<DistributionNumberDetailDTO> detailDTOS = new ArrayList<>(); |
|
|
|
|
if (Func.isNotEmpty(byId)){ |
|
|
|
|
switch (type) { |
|
|
|
|
case 1: |
|
|
|
|
//配送件数
|
|
|
|
|
//订制品
|
|
|
|
|
if (Func.isNotEmpty(parcelListEntityList)){ |
|
|
|
|
List<DistributionNumberDetailDTO> packageNumberDetail = handleNumberDetailPackage(parcelListEntityList); |
|
|
|
|
if (Func.isNotEmpty(packageNumberDetail)){ |
|
|
|
|
detailDTOS.addAll(packageNumberDetail); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//库存品
|
|
|
|
|
if (Func.isNotEmpty(disStockListDetailEntities)){ |
|
|
|
|
List<DistributionNumberDetailDTO> inventoryNumberDetail = handleNumberDetailInventory(disStockListDetailEntities); |
|
|
|
|
if (Func.isNotEmpty(inventoryNumberDetail)){ |
|
|
|
|
detailDTOS.addAll(inventoryNumberDetail); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//零担
|
|
|
|
|
break; |
|
|
|
|
case 2: |
|
|
|
|
if (Func.isNotEmpty(parcelListEntityList)){ |
|
|
|
|
List<DistributionNumberDetailDTO> packageNumberDetail = deliveryLoadingPackageNumberDetail(parcelListEntityList); |
|
|
|
|
if (Func.isNotEmpty(packageNumberDetail)){ |
|
|
|
|
detailDTOS.addAll(packageNumberDetail); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (Func.isNotEmpty(disStockListDetailEntities)){ |
|
|
|
|
List<DistributionNumberDetailDTO> inventoryNumberDetail= deliveryLoadingInventoryNumberDetail(disStockListDetailEntities); |
|
|
|
|
if (Func.isNotEmpty(inventoryNumberDetail)){ |
|
|
|
|
detailDTOS.addAll(inventoryNumberDetail); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//装车件数
|
|
|
|
|
break; |
|
|
|
|
case 3: |
|
|
|
|
//未装车数量
|
|
|
|
|
if (Func.isNotEmpty(parcelListEntityList)){ |
|
|
|
|
List<DistributionNumberDetailDTO> packageNumberDetail = deliveryUnloadingPackageNumberDetail(parcelListEntityList); |
|
|
|
|
if (Func.isNotEmpty(packageNumberDetail)){ |
|
|
|
|
detailDTOS.addAll(packageNumberDetail); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (Func.isNotEmpty(disStockListDetailEntities)){ |
|
|
|
|
List<DistributionNumberDetailDTO> inventoryNumberDetail= deliveryUnLoadingInventoryNumberDetail(disStockListDetailEntities); |
|
|
|
|
if (Func.isNotEmpty(inventoryNumberDetail)){ |
|
|
|
|
detailDTOS.addAll(inventoryNumberDetail); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case 4: |
|
|
|
|
if (Func.isNotEmpty(parcelListEntityList)){ |
|
|
|
|
List<DistributionNumberDetailDTO> packageNumberDetail = deliverySigningPackageNumberDetail(parcelListEntityList); |
|
|
|
|
if (Func.isNotEmpty(packageNumberDetail)){ |
|
|
|
|
detailDTOS.addAll(packageNumberDetail); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (Func.isNotEmpty(disStockListDetailEntities)){ |
|
|
|
|
List<DistributionNumberDetailDTO> inventoryNumberDetail= deliverySigningInventoryNumberDetail(disStockListDetailEntities); |
|
|
|
|
if (Func.isNotEmpty(inventoryNumberDetail)){ |
|
|
|
|
detailDTOS.addAll(inventoryNumberDetail); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//签收数量
|
|
|
|
|
break; |
|
|
|
|
case 5: |
|
|
|
|
//未签收件数
|
|
|
|
|
if (Func.isNotEmpty(parcelListEntityList)){ |
|
|
|
|
List<DistributionNumberDetailDTO> packageNumberDetail = deliveryUnsigningPackageNumberDetail(parcelListEntityList); |
|
|
|
|
if (Func.isNotEmpty(packageNumberDetail)){ |
|
|
|
|
detailDTOS.addAll(packageNumberDetail); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (Func.isNotEmpty(disStockListDetailEntities)){ |
|
|
|
|
List<DistributionNumberDetailDTO> inventoryNumberDetail= deliveryUnsigningInventoryNumberDetail(disStockListDetailEntities); |
|
|
|
|
if (Func.isNotEmpty(inventoryNumberDetail)){ |
|
|
|
|
detailDTOS.addAll(inventoryNumberDetail); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
return R.data(detailDTOS); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private List<DistributionNumberDetailDTO> deliveryUnsigningInventoryNumberDetail(List<DisStockListDetailEntity> disStockListDetailEntities) { |
|
|
|
|
List<DisStockListDetailEntity> unsignInventoryList = disStockListDetailEntities.stream().filter(p -> p.getStockSignfoStatus().equals(InventorySigningStatusConstant.yiqianshou.getValue())).collect(Collectors.toList()); |
|
|
|
|
if (Func.isEmpty(unsignInventoryList)){ |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
List<DistributionNumberDetailDTO> detailDTOS = handleNumberDetailInventory(unsignInventoryList); |
|
|
|
|
return detailDTOS; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 未签收包件详情 |
|
|
|
|
* @param parcelListEntityList |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private List<DistributionNumberDetailDTO> deliveryUnsigningPackageNumberDetail(List<DistributionParcelListEntity> parcelListEntityList) { |
|
|
|
|
List<DistributionParcelListEntity> unsignPackageList = parcelListEntityList.stream().filter(p -> !p.getOrderPackageStatus().equals(OrderPackageStatusConstant.yiqianshou.getValue())).collect(Collectors.toList()); |
|
|
|
|
if (Func.isEmpty(unsignPackageList)){ |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
List<DistributionNumberDetailDTO> detailDTOS = handleNumberDetailPackage(unsignPackageList); |
|
|
|
|
return detailDTOS; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 处理签收库存品包件详情 |
|
|
|
|
* @param disStockListDetailEntities |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private List<DistributionNumberDetailDTO> deliverySigningInventoryNumberDetail(List<DisStockListDetailEntity> disStockListDetailEntities) { |
|
|
|
|
List<DisStockListDetailEntity> signingInventoryList = disStockListDetailEntities.stream().filter(p -> p.getStockSignfoStatus().equals(InventorySigningStatusConstant.yiqianshou.getValue())).collect(Collectors.toList()); |
|
|
|
|
if (Func.isEmpty(signingInventoryList)){ |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
List<DistributionNumberDetailDTO> detailDTOS = handleNumberDetailInventory(signingInventoryList); |
|
|
|
|
return detailDTOS; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 处理签收包件详情 |
|
|
|
|
* @param parcelListEntityList |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private List<DistributionNumberDetailDTO> deliverySigningPackageNumberDetail(List<DistributionParcelListEntity> parcelListEntityList) { |
|
|
|
|
List<DistributionParcelListEntity> signingPackageList = parcelListEntityList.stream().filter(p -> p.getOrderPackageStatus().equals(OrderPackageStatusConstant.yiqianshou.getValue())).collect(Collectors.toList()); |
|
|
|
|
if (Func.isEmpty(signingPackageList)){ |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
List<DistributionNumberDetailDTO> detailDTOS = handleNumberDetailPackage(signingPackageList); |
|
|
|
|
return detailDTOS; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 未装车库存品详情列表 |
|
|
|
|
* @param disStockListDetailEntities |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private List<DistributionNumberDetailDTO> deliveryUnLoadingInventoryNumberDetail(List<DisStockListDetailEntity> disStockListDetailEntities) { |
|
|
|
|
List<DisStockListDetailEntity> unloadingInventoryList = disStockListDetailEntities.stream().filter(p -> p.getStockLockingStatus().equals(OrderPackageLoadingStatusConstant.weizhuancghe.getValue())).collect(Collectors.toList()); |
|
|
|
|
if (Func.isEmpty(unloadingInventoryList)){ |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
List<DistributionNumberDetailDTO> detailDTOS = handleNumberDetailInventory(unloadingInventoryList); |
|
|
|
|
return detailDTOS; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 未装车包件列表 |
|
|
|
|
* @param parcelListEntityList |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private List<DistributionNumberDetailDTO> deliveryUnloadingPackageNumberDetail(List<DistributionParcelListEntity> parcelListEntityList) { |
|
|
|
|
List<DistributionParcelListEntity> unLoadingPackageList = parcelListEntityList.stream().filter(p -> p.getOrderPackageLoadingStatus().equals(OrderPackageLoadingStatusConstant.weizhuancghe.getValue())).collect(Collectors.toList()); |
|
|
|
|
if (Func.isEmpty(unLoadingPackageList)){ |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
List<DistributionNumberDetailDTO> detailDTOS = handleNumberDetailPackage(unLoadingPackageList); |
|
|
|
|
return detailDTOS; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 装车库存品详情 |
|
|
|
|
* @param disStockListDetailEntities |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private List<DistributionNumberDetailDTO> deliveryLoadingInventoryNumberDetail(List<DisStockListDetailEntity> disStockListDetailEntities) { |
|
|
|
|
List<DisStockListDetailEntity> inventoryLoadingList = disStockListDetailEntities.stream().filter(p -> p.getStockLockingStatus().equals(OrderPackageLoadingStatusConstant.yizhuangche.getValue())).collect(Collectors.toList()); |
|
|
|
|
if (Func.isEmpty(inventoryLoadingList)){ |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
List<DistributionNumberDetailDTO> detailDTOS = handleNumberDetailInventory(inventoryLoadingList); |
|
|
|
|
return detailDTOS; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 装车包件详情 |
|
|
|
|
* @param parcelListEntityList |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private List<DistributionNumberDetailDTO> deliveryLoadingPackageNumberDetail(List<DistributionParcelListEntity> parcelListEntityList) { |
|
|
|
|
List<DistributionParcelListEntity> loadingPackageList = parcelListEntityList.stream().filter(p -> p.getOrderPackageLoadingStatus().equals(OrderPackageLoadingStatusConstant.yizhuangche.getValue())).collect(Collectors.toList()); |
|
|
|
|
if (Func.isEmpty(loadingPackageList)){ |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
List<DistributionNumberDetailDTO> detailDTOS = handleNumberDetailPackage(loadingPackageList); |
|
|
|
|
return detailDTOS; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 处理包件详情 |
|
|
|
|
* @param loadingPackageList |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@NotNull |
|
|
|
|
private List<DistributionNumberDetailDTO> handleNumberDetailPackage(List<DistributionParcelListEntity> loadingPackageList) { |
|
|
|
|
List<DistributionNumberDetailDTO> detailDTOS = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
loadingPackageList.stream().forEach(p->{ |
|
|
|
|
DistributionNumberDetailDTO distributionNumberDetailDTO = new DistributionNumberDetailDTO(); |
|
|
|
|
distributionNumberDetailDTO.setServiceNumber(p.getServiceNumber()); |
|
|
|
|
distributionNumberDetailDTO.setWaybillNumber(p.getWaybillNumber()); |
|
|
|
|
distributionNumberDetailDTO.setConditions(p.getConditions()); |
|
|
|
|
distributionNumberDetailDTO.setConditionsName("定制品"); |
|
|
|
|
distributionNumberDetailDTO.setOrderCode(p.getOrderCode()); |
|
|
|
|
distributionNumberDetailDTO.setDescriptionGoods(p.getMaterialName()); |
|
|
|
|
distributionNumberDetailDTO.setOrderPackageCode(p.getOrderPackageCode()); |
|
|
|
|
distributionNumberDetailDTO.setMarketName(p.getMallName()); |
|
|
|
|
//查询装车
|
|
|
|
|
DistributionLoadscanEntity loadscanEntity = distributionLoadscanService.getOne(Wrappers.<DistributionLoadscanEntity>query().lambda() |
|
|
|
|
.eq(DistributionLoadscanEntity::getPackageId, p.getId()) |
|
|
|
|
.ne(DistributionLoadscanEntity::getScanStatus, LoadingStatusConstant.quxiao.getValue()) |
|
|
|
|
); |
|
|
|
|
//装车
|
|
|
|
|
if (Func.isNotEmpty(loadscanEntity)){ |
|
|
|
|
distributionNumberDetailDTO.setLoadingTime(loadscanEntity.getScanTime()); |
|
|
|
|
distributionNumberDetailDTO.setLoadingStatusName(OrderPackageLoadingStatusConstant.yizhuangche.getName()); |
|
|
|
|
//签收
|
|
|
|
|
if ( loadscanEntity.getSignforState().equals(LoadScanSigningStatusConstant.yiqianshou.getValue())){ |
|
|
|
|
distributionNumberDetailDTO.setSigningTime(loadscanEntity.getSigningTime()); |
|
|
|
|
distributionNumberDetailDTO.setSigningStatusName(OrderPackageStatusConstant.yiqianshou.getName()); |
|
|
|
|
} |
|
|
|
|
}else { |
|
|
|
|
distributionNumberDetailDTO.setLoadingStatusName(OrderPackageLoadingStatusConstant.weizhuancghe.getName()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (p.getOrderPackageStockupStatus().equals(OrderPackageStockupStatusConstant.yibeihu.getValue())){ |
|
|
|
|
//查询备货
|
|
|
|
|
DistributionStockEntity distributionStockEntity = distributionStockMapper.selectOne(Wrappers.<DistributionStockEntity>query().lambda() |
|
|
|
|
.eq(DistributionStockEntity::getParcelListId, p.getId()) |
|
|
|
|
); |
|
|
|
|
if (Func.isNotEmpty(distributionStockEntity)){ |
|
|
|
|
distributionNumberDetailDTO.setStockupTime(distributionStockEntity.getCreateTime()); |
|
|
|
|
distributionNumberDetailDTO.setStockupStatusName(OrderPackageStockupStatusConstant.yibeihu.getName()); |
|
|
|
|
} |
|
|
|
|
}else { |
|
|
|
|
distributionNumberDetailDTO.setStockupStatusName(OrderPackageStockupStatusConstant.daibeihuo.getName()); |
|
|
|
|
} |
|
|
|
|
detailDTOS.add(distributionNumberDetailDTO); |
|
|
|
|
}); |
|
|
|
|
return detailDTOS; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 处理库存品详情 |
|
|
|
|
* @param disStockListDetailEntities |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@NotNull |
|
|
|
|
private List<DistributionNumberDetailDTO> handleNumberDetailInventory(List<DisStockListDetailEntity> disStockListDetailEntities) { |
|
|
|
|
List<DistributionNumberDetailDTO> detailDTOS = new ArrayList<>(); |
|
|
|
|
disStockListDetailEntities.forEach(p->{ |
|
|
|
|
DistributionNumberDetailDTO distributionNumberDetailDTO = new DistributionNumberDetailDTO(); |
|
|
|
|
DistributionStockListEntity stockListEntity = distributionStockListService.getById(p.getStockListId()); |
|
|
|
|
if (Func.isNotEmpty(stockListEntity)){ |
|
|
|
|
distributionNumberDetailDTO.setCargoNumber(stockListEntity.getCargoNumber()); |
|
|
|
|
distributionNumberDetailDTO.setMarketName(stockListEntity.getMarketName()); |
|
|
|
|
distributionNumberDetailDTO.setDescriptionGoods(stockListEntity.getDescriptionGoods()); |
|
|
|
|
distributionNumberDetailDTO.setOrderCode(stockListEntity.getOrderCode()); |
|
|
|
|
distributionNumberDetailDTO.setServiceNumber(stockListEntity.getServiceNumber()); |
|
|
|
|
if (p.getStockLockingStatus().equals(OrderPackageLoadingStatusConstant.yizhuangche.getValue())){ |
|
|
|
|
//查询库存品装车信息
|
|
|
|
|
DistributionLoadscaninvnEntity one = distributionLoadscaninvnService.getOne(Wrappers.<DistributionLoadscaninvnEntity>query().lambda() |
|
|
|
|
.eq(DistributionLoadscaninvnEntity::getInventoryId, p.getStockListId()) |
|
|
|
|
.eq(DistributionLoadscaninvnEntity::getInventoryPackageId, p.getId()) |
|
|
|
|
.ne(DistributionLoadscaninvnEntity::getScanStatus, LoadingStatusConstant.quxiao.getValue()) |
|
|
|
|
); |
|
|
|
|
if (Func.isNotEmpty(one)){ |
|
|
|
|
distributionNumberDetailDTO.setLoadingTime(one.getScanTime()); |
|
|
|
|
distributionNumberDetailDTO.setLoadingStatusName(OrderPackageLoadingStatusConstant.yizhuangche.getName()); |
|
|
|
|
if (one.getSignforState().equals(LoadScanSigningStatusConstant.yiqianshou.getValue())){ |
|
|
|
|
distributionNumberDetailDTO.setSigningTime(one.getSigningTime()); |
|
|
|
|
distributionNumberDetailDTO.setSigningStatusName(OrderPackageStatusConstant.yiqianshou.getName()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}else { |
|
|
|
|
distributionNumberDetailDTO.setLoadingStatusName(OrderPackageLoadingStatusConstant.weizhuancghe.getName()); |
|
|
|
|
} |
|
|
|
|
if (p.getStockPackageCode() != null){ |
|
|
|
|
//存在备货记录
|
|
|
|
|
DistributionStockEntity distributionStockEntity = distributionStockMapper.selectOne(Wrappers.<DistributionStockEntity>query().lambda() |
|
|
|
|
.eq(DistributionStockEntity::getReservationId, p.getReservationId()) |
|
|
|
|
.eq(DistributionStockEntity::getStockListId, p.getStockListId()) |
|
|
|
|
.eq(DistributionStockEntity::getCoding, p.getStockPackageCode()) |
|
|
|
|
); |
|
|
|
|
if (Func.isNotEmpty(distributionStockEntity)){ |
|
|
|
|
distributionNumberDetailDTO.setStockupTime(distributionStockEntity.getCreateTime()); |
|
|
|
|
distributionNumberDetailDTO.setStockupStatusName(OrderPackageStockupStatusConstant.yibeihu.getName()); |
|
|
|
|
} |
|
|
|
|
}else { |
|
|
|
|
distributionNumberDetailDTO.setStockupStatusName(OrderPackageStockupStatusConstant.daibeihuo.getName()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (Func.isNotEmpty(distributionNumberDetailDTO)){ |
|
|
|
|
distributionNumberDetailDTO.setConditionsName("库存品"); |
|
|
|
|
detailDTOS.add(distributionNumberDetailDTO); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
return detailDTOS; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public List<DistributionSignforExcel> exportDistributionSignfor(Map<String, Object> distributionSignfor) { |
|
|
|
|
|
|
|
|
@ -288,7 +613,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
@Override |
|
|
|
|
public DistributionSignforsnmbVO getNubTotal(DistributionSignforDTO distributionSignfor) { |
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = basicdataWarehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if (Func.isNotEmpty(myCurrentWarehouse)){ |
|
|
|
|
if (Func.isNotEmpty(myCurrentWarehouse)) { |
|
|
|
|
distributionSignfor.setWarehouseId(myCurrentWarehouse.getId()); |
|
|
|
|
} |
|
|
|
|
//转换创建时间
|
|
|
|
@ -323,11 +648,11 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
.eq(DisStockListDetailEntity::getStockPackageCode, distrilbutionloadingscanDTO.getBarcode()) |
|
|
|
|
.ne(DisStockListDetailEntity::getStockPackageStatus, ReservationPackageStatusConstant.quxiao.getValue()) |
|
|
|
|
); |
|
|
|
|
if (Func.isNotEmpty(list)){ |
|
|
|
|
if (Func.isNotEmpty(list)) { |
|
|
|
|
//满足条件此码必定为库存品
|
|
|
|
|
//判断该库存品是否属于当前客户
|
|
|
|
|
List<DisStockListDetailEntity> collect = list.stream().filter(l -> l.getReservationId().equals(distrilbutionloadingscanDTO.getReservationId())).collect(Collectors.toList()); |
|
|
|
|
if (Func.isNotEmpty(collect)){ |
|
|
|
|
if (Func.isNotEmpty(collect)) { |
|
|
|
|
return Resp.scanFail("请在库存品页面扫描此码", "请在库存品页面扫描此码"); |
|
|
|
|
} |
|
|
|
|
return Resp.scanFail("此码不是订制品", "此码不是订制品"); |
|
|
|
@ -425,11 +750,11 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
//更新装车包件数和签收包件数
|
|
|
|
|
Integer j = distributionSignforMapper.updateSignforByReservationId(distributionLoadscanEntity.getDeliveryId(), distributionLoadscanEntity.getReservationId(), distributionLoadscanEntity.getPackageNub()); |
|
|
|
|
//更新签收人
|
|
|
|
|
Integer m = distributionSignforMapper.updateSignUser(distributionLoadscanEntity.getDeliveryId(), distributionLoadscanEntity.getReservationId(),AuthUtil.getUser()); |
|
|
|
|
Integer m = distributionSignforMapper.updateSignUser(distributionLoadscanEntity.getDeliveryId(), distributionLoadscanEntity.getReservationId(), AuthUtil.getUser()); |
|
|
|
|
//扣减订单的在库数量
|
|
|
|
|
Integer k = distributionStockArticleMapper.deductionHandQuantity(distributionLoadscanEntity.getOrderId(), distributionLoadscanEntity.getLoadedNub()); |
|
|
|
|
warehouseUpdownTypeClient.downPackageOrDelTray(collect.get(0).getOrderPackageCode(), myCurrentWarehouse.getId()); |
|
|
|
|
distributionAsyncService.checkSignStatus(distributionLoadscanEntity.getPackageId(),distributionLoadscanEntity.getReservationId(),distributionLoadscanEntity.getDeliveryId()); |
|
|
|
|
distributionAsyncService.checkSignStatus(distributionLoadscanEntity.getPackageId(), distributionLoadscanEntity.getReservationId(), distributionLoadscanEntity.getDeliveryId()); |
|
|
|
|
} |
|
|
|
|
//TODO 这里就需要一个异步的包件状态维护方法
|
|
|
|
|
} else if (Func.isEmpty(collect)) { |
|
|
|
@ -439,7 +764,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
.eq(DistributionParcelListEntity::getOrderPackageCode, distrilbutionloadingscanDTO.getBarcode()) |
|
|
|
|
.eq(DistributionParcelListEntity::getWarehouseId, myCurrentWarehouse.getId()) |
|
|
|
|
); |
|
|
|
|
if (Func.isNotEmpty(one) && one.getConditions() == 2){ |
|
|
|
|
if (Func.isNotEmpty(one) && one.getConditions() == 2) { |
|
|
|
|
log.error("#####################此包件不是定制品", one.getConditions()); |
|
|
|
|
return Resp.scanFail("此包件不是定制品", "此包件不是定制品"); |
|
|
|
|
} |
|
|
|
@ -578,9 +903,9 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
.ne(DistributionReservationStockarticleEntity::getStockArticleStatus, ReservationOrderStatusConstant.quxiao.getValue()) |
|
|
|
|
); |
|
|
|
|
distributionStockArticleVO.setReservationNum(reservationStockarticleEntity.getReservationNum()); |
|
|
|
|
Integer loadingNum = distributionLoadscanMapper.selectOrderLoadingNumByReservationIdAndDeliveryIdAndOrderId(signforEntity.getReservationId(),signforEntity.getDeliveryId(),distributionStockArticleVO.getId()); |
|
|
|
|
Integer loadingNum = distributionLoadscanMapper.selectOrderLoadingNumByReservationIdAndDeliveryIdAndOrderId(signforEntity.getReservationId(), signforEntity.getDeliveryId(), distributionStockArticleVO.getId()); |
|
|
|
|
distributionStockArticleVO.setLoadingNumber(loadingNum); |
|
|
|
|
Integer signingNum = distributionLoadscanMapper.selectOrderSigningNumByReservationIdAndDeliveryIdAndOrderId(signforEntity.getReservationId(),signforEntity.getDeliveryId(),distributionStockArticleVO.getId()); |
|
|
|
|
Integer signingNum = distributionLoadscanMapper.selectOrderSigningNumByReservationIdAndDeliveryIdAndOrderId(signforEntity.getReservationId(), signforEntity.getDeliveryId(), distributionStockArticleVO.getId()); |
|
|
|
|
distributionStockArticleVO.setSigningNumber(signingNum); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -991,9 +1316,9 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
|
|
|
|
|
//判断扫码是否是包件
|
|
|
|
|
List<DistributionParcelListEntity> parcelListEntities = distributionReservationMapper.selectPackageListByReservationId(distrilbutionloadingscanDTO.getReservationId()); |
|
|
|
|
if (Func.isNotEmpty(parcelListEntities)){ |
|
|
|
|
if (Func.isNotEmpty(parcelListEntities)) { |
|
|
|
|
boolean isHave = parcelListEntities.stream().map(DistributionParcelListEntity::getOrderPackageCode).anyMatch(c -> c.contains(distrilbutionloadingscanDTO.getBarcode())); |
|
|
|
|
if (isHave){ |
|
|
|
|
if (isHave) { |
|
|
|
|
return Resp.scanFail("请在订制品页面扫描此码", "请在订制品页面扫描此码"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -1086,7 +1411,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
//更新签收人
|
|
|
|
|
Integer i = distributionSignforMapper.updateSignUser(distributionLoadscaninvnEntity.getDeliveryId(), distributionLoadscaninvnEntity.getReservationId(), AuthUtil.getUser()); |
|
|
|
|
//扣减库存
|
|
|
|
|
distributionStockListMapper.deductionQuantityStock(distributionLoadscaninvnEntity.getInventoryId(),distributionLoadscaninvnEntity.getLoadedNub()); |
|
|
|
|
distributionStockListMapper.deductionQuantityStock(distributionLoadscaninvnEntity.getInventoryId(), distributionLoadscaninvnEntity.getLoadedNub()); |
|
|
|
|
// //扣减库存
|
|
|
|
|
// DistributionStockListEntity stockListEntity = distributionStockListService.getById(inventory.get(0).getStockListId());
|
|
|
|
|
// stockListEntity.setQuantityOccupied(stockListEntity.getQuantityOccupied() - distributionLoadscaninvnEntity.getPackageNub());
|
|
|
|
@ -1277,7 +1602,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
List<DistributionAppDeliveryListVO> distributionAppDeliveryListVOS = new ArrayList<>(); |
|
|
|
|
R<String> value = dictBizClient.getValue("role_class", "delivery_driver_new"); |
|
|
|
|
|
|
|
|
|
log.info(">>>>>> 获取配置的司机角色 {}",value.getData()); |
|
|
|
|
log.info(">>>>>> 获取配置的司机角色 {}", value.getData()); |
|
|
|
|
|
|
|
|
|
// 得到配置的多个配送角色
|
|
|
|
|
String[] split = value.getData().split(","); |
|
|
|
@ -1286,8 +1611,8 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
for (String s : split) { |
|
|
|
|
String[] roleIds = roleId.split(","); |
|
|
|
|
for (String id : roleIds) { |
|
|
|
|
if(id.equals(s)){ |
|
|
|
|
log.info(">>>>> 匹配司机 角色 用户 :{}",user.getUserName()); |
|
|
|
|
if (id.equals(s)) { |
|
|
|
|
log.info(">>>>> 匹配司机 角色 用户 :{}", user.getUserName()); |
|
|
|
|
isDriver = true; |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
@ -1569,7 +1894,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
.ne(DistributionLoadscaninvnEntity::getScanStatus, LoadingStatusConstant.quxiao.getValue()) |
|
|
|
|
); |
|
|
|
|
if (Func.isNotEmpty(loadscaninvnEntity)) { |
|
|
|
|
if (!loadscaninvnEntity.getSignforState().equals(LoadScanSigningStatusConstant.yiqianshou.getValue())){ |
|
|
|
|
if (!loadscaninvnEntity.getSignforState().equals(LoadScanSigningStatusConstant.yiqianshou.getValue())) { |
|
|
|
|
//存在库存品装车数据,这里进行签收状态修改
|
|
|
|
|
loadscaninvnEntity.setSignforState(LoadScanSigningStatusConstant.yiqianshou.getValue()); |
|
|
|
|
loadscaninvnEntity.setReceivedQuantity(detailEntity.getNum()); |
|
|
|
@ -1584,9 +1909,9 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
Integer j = distributionSignforMapper.updatesignforByinvn(loadscaninvnEntity.getDeliveryId(), loadscaninvnEntity.getReservationId(), loadscaninvnEntity.getPackageNub()); |
|
|
|
|
//更新签收人
|
|
|
|
|
Integer m = distributionSignforMapper.updateSignUser(loadscaninvnEntity.getDeliveryId(), loadscaninvnEntity.getReservationId(), AuthUtil.getUser()); |
|
|
|
|
distributionAsyncService.checkSignStatus(null,loadscaninvnEntity.getReservationId(),loadscaninvnEntity.getDeliveryId()); |
|
|
|
|
distributionAsyncService.checkSignStatus(null, loadscaninvnEntity.getReservationId(), loadscaninvnEntity.getDeliveryId()); |
|
|
|
|
} |
|
|
|
|
}else { |
|
|
|
|
} else { |
|
|
|
|
//不存在装车数据 这里需要进行装车数据的补录
|
|
|
|
|
detailEntity.setStockLockingStatus(InventoryLoadingStatusConstant.yizhuangche.getValue()); |
|
|
|
|
detailEntity.setStockSignfoStatus(InventorySigningStatusConstant.yiqianshou.getValue()); |
|
|
|
@ -1647,7 +1972,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
stockListEntity.setQuantityStock(stockListEntity.getQuantityStock() - newLoadscaninvnEntity.getPackageNub()); |
|
|
|
|
stockListEntity.setOutboundQuantity(stockListEntity.getOutboundQuantity() + newLoadscaninvnEntity.getPackageNub()); |
|
|
|
|
distributionStockListService.updateById(stockListEntity); |
|
|
|
|
distributionAsyncService.checkSignStatus(null,newLoadscaninvnEntity.getReservationId(),newLoadscaninvnEntity.getDeliveryId()); |
|
|
|
|
distributionAsyncService.checkSignStatus(null, newLoadscaninvnEntity.getReservationId(), newLoadscaninvnEntity.getDeliveryId()); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1827,7 +2152,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
distributionLoadscanEntity.setMsg("司机一键签收数据补录"); |
|
|
|
|
} |
|
|
|
|
distributionLoadscanService.updateById(distributionLoadscanEntity); |
|
|
|
|
distributionAsyncService.checkSignStatus(distributionLoadscanEntity.getPackageId(),distributionLoadscanEntity.getReservationId(),distributionLoadscanEntity.getDeliveryId()); |
|
|
|
|
distributionAsyncService.checkSignStatus(distributionLoadscanEntity.getPackageId(), distributionLoadscanEntity.getReservationId(), distributionLoadscanEntity.getDeliveryId()); |
|
|
|
|
//更新签收人
|
|
|
|
|
Integer m = distributionSignforMapper.updateSignUser(distributionLoadscanEntity.getDeliveryId(), distributionLoadscanEntity.getReservationId(), AuthUtil.getUser()); |
|
|
|
|
//维护签收数量
|
|
|
|
@ -1882,7 +2207,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
loadscanEntity.setMsg("司机一键签收数据补录"); |
|
|
|
|
} |
|
|
|
|
distributionLoadscanService.save(loadscanEntity); |
|
|
|
|
distributionAsyncService.checkSignStatus(loadscanEntity.getPackageId(),loadscanEntity.getReservationId(),loadscanEntity.getDeliveryId()); |
|
|
|
|
distributionAsyncService.checkSignStatus(loadscanEntity.getPackageId(), loadscanEntity.getReservationId(), loadscanEntity.getDeliveryId()); |
|
|
|
|
|
|
|
|
|
Integer i = distributionDeliveryListMapper.updateloadingTimeById(distributionDeliveryListEntity.getId()); |
|
|
|
|
//更新签收表的签收数量和装车数量
|
|
|
|
@ -1906,6 +2231,8 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<Long> packageIds = new ArrayList<>(); |
|
|
|
|
if (Func.isNotEmpty(parcelListEntityList)) { |
|
|
|
|
for (DistributionParcelListEntity parcelListEntity : parcelListEntityList) { |
|
|
|
|
//查询是否进行装车
|
|
|
|
@ -1970,7 +2297,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
Integer m = distributionSignforMapper.updateSignUser(loadscanEntity.getDeliveryId(), loadscanEntity.getReservationId(), AuthUtil.getUser()); |
|
|
|
|
|
|
|
|
|
distributionAsyncService.checkStockArticleSignStatus(parcelListEntity); |
|
|
|
|
log.info("一件签收包件下架解托>>>>>>>>>>>>>>>parcelListEntity.getOrderPackageCode():{}",parcelListEntity.getOrderPackageCode()); |
|
|
|
|
log.info("一件签收包件下架解托>>>>>>>>>>>>>>>parcelListEntity.getOrderPackageCode():{}", parcelListEntity.getOrderPackageCode()); |
|
|
|
|
warehouseUpdownTypeClient.downPackageOrDelTray(parcelListEntity.getOrderPackageCode(), myCurrentWarehouse.getId()); |
|
|
|
|
} else { |
|
|
|
|
//存在装车数据
|
|
|
|
@ -1995,13 +2322,15 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
Integer j = distributionSignforMapper.updateSignforNum(loadscanEntities.getDeliveryId(), loadscanEntities.getReservationId(), loadscanEntities.getPackageNub()); |
|
|
|
|
//更新签收人
|
|
|
|
|
Integer m = distributionSignforMapper.updateSignUser(loadscanEntities.getDeliveryId(), loadscanEntities.getReservationId(), AuthUtil.getUser()); |
|
|
|
|
distributionAsyncService.checkSignStatus(loadscanEntities.getPackageId(),loadscanEntities.getReservationId(),loadscanEntities.getDeliveryId()); |
|
|
|
|
log.info("一件签收包件解托>>>>>>>>>>>>>>>parcelListEntity.getOrderPackageCode():{}",parcelListEntity.getOrderPackageCode()); |
|
|
|
|
warehouseUpdownTypeClient.downPackageOrDelTray(parcelListEntity.getOrderPackageCode(), myCurrentWarehouse.getId()); |
|
|
|
|
|
|
|
|
|
distributionAsyncService.checkSignStatus(loadscanEntities.getPackageId(), loadscanEntities.getReservationId(), loadscanEntities.getDeliveryId()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
distributionParcelListService.updateById(parcelListEntity); |
|
|
|
|
|
|
|
|
|
packageIds.add(parcelListEntity.getId()); |
|
|
|
|
} |
|
|
|
|
if (Func.isNotEmpty(packageIds)){ |
|
|
|
|
|
|
|
|
|
distributionAsyncService.handlPakcage(packageIds,myCurrentWarehouse.getId()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -2114,9 +2443,9 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
//维护配送任务
|
|
|
|
|
distributionAsyncService.checkDeliverySignStatusByReservation(distributionSignforEntity.getDeliveryId()); |
|
|
|
|
distributionDeliveryListEntity.setDeliveryListLoadingStatus(ReservationLoadingStatusConstant.yizhuangche.getValue()); |
|
|
|
|
if (distributionSignfor.getIsClerk()){ |
|
|
|
|
if (distributionSignfor.getIsClerk()) { |
|
|
|
|
distributionDeliveryListEntity.setDeliveryStatus(DeliveryStatusConstant.peisongzhong.getValue()); |
|
|
|
|
}else { |
|
|
|
|
} else { |
|
|
|
|
distributionDeliveryListEntity.setDeliveryStatus(DeliveryStatusConstant.yiwancheng.getValue()); |
|
|
|
|
} |
|
|
|
|
distributionDeliveryListMapper.updateById(distributionDeliveryListEntity); |
|
|
|
@ -2129,8 +2458,8 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
.set(distributionSignfor.getIsClerk(), DistributionSignforEntity::getSigningTime, simpleDateFormat.format(new Date())) |
|
|
|
|
.set(!distributionSignfor.getIsClerk(), DistributionSignforEntity::getSigningTime, simpleDateFormat.format(new Date())) |
|
|
|
|
.set(distributionSignfor.getIsClerk() && StringUtils.isNotBlank(distributionSignfor.getClerkSignRemarks()), DistributionSignforEntity::getClerkSignRemarks, distributionSignfor.getClerkSignRemarks()) |
|
|
|
|
.set(distributionSignfor.getIsClerk() , DistributionSignforEntity::getExamineUserId, user.getUserId()) |
|
|
|
|
.set(distributionSignfor.getIsClerk() , DistributionSignforEntity::getExamineUserName, user.getNickName()) |
|
|
|
|
.set(distributionSignfor.getIsClerk(), DistributionSignforEntity::getExamineUserId, user.getUserId()) |
|
|
|
|
.set(distributionSignfor.getIsClerk(), DistributionSignforEntity::getExamineUserName, user.getNickName()) |
|
|
|
|
.set(!distributionSignfor.getIsClerk() && StringUtils.isNotBlank(distributionSignfor.getDriverRemarks()), DistributionSignforEntity::getDriverRemarks, distributionSignfor.getDriverRemarks()) |
|
|
|
|
.set(!distributionSignfor.getIsClerk(), DistributionSignforEntity::getDriverSigning, 2) |
|
|
|
|
.set(!distributionSignfor.getIsClerk(), DistributionSignforEntity::getSjsigningTime, simpleDateFormat.format(new Date())); |
|
|
|
@ -2422,22 +2751,22 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
distributionReservationStocklistVOS.forEach(i -> { |
|
|
|
|
if (Func.isNotEmpty(i)) { |
|
|
|
|
List<DisStockListDetailEntity> list = disStockListDetailService.list(Wrappers.<DisStockListDetailEntity>query().lambda().eq(DisStockListDetailEntity::getReservationId, i.getReservationId()).eq(DisStockListDetailEntity::getStockListId, i.getStocklistId())); |
|
|
|
|
if (Func.isNotEmpty(list)){ |
|
|
|
|
if (Func.isNotEmpty(list)) { |
|
|
|
|
boolean loadingFlag = list.stream().allMatch(l -> l.getStockLockingStatus().equals(OrderPackageLoadingStatusConstant.yizhuangche.getValue())); |
|
|
|
|
i.setLoadingStatusName(ReservationInventoryLoadingStatusConstant.bufenzhuangche.getName()); |
|
|
|
|
if (loadingFlag){ |
|
|
|
|
if (loadingFlag) { |
|
|
|
|
//全部都装车
|
|
|
|
|
i.setLoadingStatusName(ReservationInventoryLoadingStatusConstant.yizhuangche.getName()); |
|
|
|
|
}else { |
|
|
|
|
} else { |
|
|
|
|
//全部未装车
|
|
|
|
|
i.setLoadingStatusName(ReservationInventoryLoadingStatusConstant.weizhuangche.getName()); |
|
|
|
|
} |
|
|
|
|
boolean signingFlag = list.stream().allMatch(l -> l.getStockSignfoStatus().equals(OrderPackageLoadingStatusConstant.yizhuangche.getValue())); |
|
|
|
|
i.setSigningStatusName(ReservationInventorySigningStatusConstant.bufenqianshou.getName()); |
|
|
|
|
if (signingFlag){ |
|
|
|
|
if (signingFlag) { |
|
|
|
|
//全部签收
|
|
|
|
|
i.setSigningStatusName(ReservationInventorySigningStatusConstant.yiqianshou.getName()); |
|
|
|
|
}else { |
|
|
|
|
} else { |
|
|
|
|
//全部未签收
|
|
|
|
|
i.setSigningStatusName(ReservationInventorySigningStatusConstant.weiqianshou.getName()); |
|
|
|
|
} |
|
|
|
@ -2787,7 +3116,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
return Resp.scanFail("请签收扫描", "请签收扫描!!"); |
|
|
|
|
} |
|
|
|
|
StringBuilder str = new StringBuilder(); |
|
|
|
|
str.append("计划" + (reservationEntity.getReservationNum()+reservationEntity.getReservationStockListNum()) + "件"); |
|
|
|
|
str.append("计划" + (reservationEntity.getReservationNum() + reservationEntity.getReservationStockListNum()) + "件"); |
|
|
|
|
AtomicInteger signingTotalNum = new AtomicInteger(); |
|
|
|
|
if (Func.isNotEmpty(packageNum)) { |
|
|
|
|
//统计签收数量
|
|
|
|
@ -2904,7 +3233,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
parcelNumberEntity.setSigninQuantity(signinQuantity.add(signingNum).intValue()); |
|
|
|
|
distributionLoadscanService.updateById(loadscanEntityList); |
|
|
|
|
distributionParcelNumberService.updateById(parcelNumberEntity); |
|
|
|
|
distributionAsyncService.checkSignStatus(loadscanEntityList.getPackageId(),loadscanEntityList.getReservationId(),loadscanEntityList.getDeliveryId()); |
|
|
|
|
distributionAsyncService.checkSignStatus(loadscanEntityList.getPackageId(), loadscanEntityList.getReservationId(), loadscanEntityList.getDeliveryId()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -2938,7 +3267,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
signforEntity.setReceivedQuantity(signingNumber.subtract(receivedQuantity).add(signingNum).intValue()); |
|
|
|
|
distributionSignforMapper.updateById(signforEntity); |
|
|
|
|
distributionLoadscanService.updateById(loadscanEntityList); |
|
|
|
|
distributionAsyncService.checkSignStatus(loadscanEntityList.getPackageId(),loadscanEntityList.getReservationId(),loadscanEntityList.getDeliveryId()); |
|
|
|
|
distributionAsyncService.checkSignStatus(loadscanEntityList.getPackageId(), loadscanEntityList.getReservationId(), loadscanEntityList.getDeliveryId()); |
|
|
|
|
|
|
|
|
|
distributionParcelNumberService.updateById(parcelNumberEntity); |
|
|
|
|
} |
|
|
|
@ -2992,7 +3321,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
loadscanEntity.setSigningUser(AuthUtil.getUser().getNickName()); |
|
|
|
|
loadscanEntity.setSigningUserId(AuthUtil.getUser().getUserId()); |
|
|
|
|
distributionLoadscanService.save(loadscanEntity); |
|
|
|
|
distributionAsyncService.checkSignStatus(loadscanEntity.getPackageId(),loadscanEntity.getReservationId(),loadscanEntity.getDeliveryId()); |
|
|
|
|
distributionAsyncService.checkSignStatus(loadscanEntity.getPackageId(), loadscanEntity.getReservationId(), loadscanEntity.getDeliveryId()); |
|
|
|
|
//进行签收数量的修改
|
|
|
|
|
Integer i = distributionDeliveryListMapper.updateloadingTimeById(distrilbutionloadingscanDTO.getDeliveryId()); |
|
|
|
|
//更新装车包件数和签收包件数
|
|
|
|
@ -3024,8 +3353,8 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
Date date = new Date(); |
|
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
|
|
|
|
distributionSignfor.setSigningTime(sdf.format(date)); |
|
|
|
|
boolean isSuccess =this.updatePicture(distributionSignfor); |
|
|
|
|
if(isSuccess){ |
|
|
|
|
boolean isSuccess = this.updatePicture(distributionSignfor); |
|
|
|
|
if (isSuccess) { |
|
|
|
|
this.updateById(distributionSignfor); |
|
|
|
|
// 创建异步队列推送老系统的的签收信息 构建请求参数
|
|
|
|
|
buildArgsToPushMq(distributionSignfor); |
|
|
|
@ -3038,6 +3367,7 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 构建文员签收审核的参数 |
|
|
|
|
* |
|
|
|
|
* @param distributionSignfor |
|
|
|
|
*/ |
|
|
|
|
public void buildArgsToPushMq(DistributionSignforDTO distributionSignfor) { |
|
|
|
@ -3047,12 +3377,12 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
mapState.put("messageData", distributionSignfor); |
|
|
|
|
mapState.put("createTime", new Date().getTime()); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
log.info(">>>>>>>>>>>>>>>>>>> 推送老系统 的签收数据 {} ",mapState); |
|
|
|
|
try { |
|
|
|
|
log.info(">>>>>>>>>>>>>>>>>>> 推送老系统 的签收数据 {} ", mapState); |
|
|
|
|
rabbitTemplate.convertAndSend(RabbitConstant.CLERK_CHECK_PUSH_DATA_EXCHANGE, RabbitConstant.CLERK_CHECK_PUSH_DATA_ROUTING, mapState); |
|
|
|
|
|
|
|
|
|
}catch (Exception customerException){ |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 消息推送失败~ 请联系管理员! {}",customerException.getMessage()); |
|
|
|
|
} catch (Exception customerException) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 消息推送失败~ 请联系管理员! {}", customerException.getMessage()); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3113,39 +3443,39 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void handlePicture(String ids, HttpServletResponse res) { |
|
|
|
|
log.info(">>>>>> handlePicture {}",1); |
|
|
|
|
if (Func.isEmpty(ids)){ |
|
|
|
|
log.error("#########ids字段缺失:{}",ids); |
|
|
|
|
log.info(">>>>>> handlePicture {}", 1); |
|
|
|
|
if (Func.isEmpty(ids)) { |
|
|
|
|
log.error("#########ids字段缺失:{}", ids); |
|
|
|
|
} |
|
|
|
|
List<Long> signIds = Func.toLongList(",", ids); |
|
|
|
|
List<String> reservationCodes= new ArrayList<>(); |
|
|
|
|
log.info(">>>>>> handlePicture {}",2); |
|
|
|
|
List<String> reservationCodes = new ArrayList<>(); |
|
|
|
|
log.info(">>>>>> handlePicture {}", 2); |
|
|
|
|
|
|
|
|
|
List<DistributionSignforEntity> distributionSignforEntities = this.listByIds(signIds); |
|
|
|
|
log.info(">>>>>> handlePicture {}",3); |
|
|
|
|
log.info(">>>>>> handlePicture {}", 3); |
|
|
|
|
|
|
|
|
|
if (Func.isNotEmpty(distributionSignforEntities)) { |
|
|
|
|
for (DistributionSignforEntity distributionSignforEntity : distributionSignforEntities) { |
|
|
|
|
log.info(">>>>>> handlePicture {},{}",3,1); |
|
|
|
|
log.info(">>>>>> handlePicture {},{}", 3, 1); |
|
|
|
|
|
|
|
|
|
DistributionReservationEntity distributionReservationEntity = distributionReservationMapper.selectById(distributionSignforEntity.getReservationId()); |
|
|
|
|
log.info(">>>>>> handlePicture {},{}",3,2); |
|
|
|
|
log.info(">>>>>> handlePicture {},{}", 3, 2); |
|
|
|
|
|
|
|
|
|
List<DistributionSignPrintVO> printEntities = baseMapper.selectSignImgsUrl(distributionSignforEntity.getReservationId()); |
|
|
|
|
log.info(">>>>>> handlePicture {},{}",3,3); |
|
|
|
|
log.info(">>>>>> handlePicture {},{}", 3, 3); |
|
|
|
|
|
|
|
|
|
if (Func.isNotEmpty(printEntities)){ |
|
|
|
|
if (Func.isNotEmpty(printEntities)) { |
|
|
|
|
//进行分组
|
|
|
|
|
Map<String, List<DistributionSignPrintVO>> signingPictureGroup = printEntities.stream().collect(Collectors.groupingBy(DistributionSignPrintVO::getType)); |
|
|
|
|
log.info(">>>>>> handlePicture {},{}",3,4); |
|
|
|
|
log.info(">>>>>> handlePicture {},{}", 3, 4); |
|
|
|
|
//进行图片
|
|
|
|
|
signingPictureGroup.forEach((k,v)->{ |
|
|
|
|
log.info(">>>>>> handlePicture {},{}",3,5); |
|
|
|
|
signingPictureGroup.forEach((k, v) -> { |
|
|
|
|
log.info(">>>>>> handlePicture {},{}", 3, 5); |
|
|
|
|
//这个方法会根据
|
|
|
|
|
List<String> urls = v.stream().map(DistributionSignPrintVO::getUrlRoute).collect(Collectors.toList()); |
|
|
|
|
log.info(">>>>>> handlePicture {},{}",3,6); |
|
|
|
|
log.info(">>>>>> handlePicture {},{}", 3, 6); |
|
|
|
|
FileUtil.handleSignPictureZip(urls, k, distributionReservationEntity.getReservationCode(), distributionReservationEntity.getConsignee()); |
|
|
|
|
log.info(">>>>>> handlePicture {},{}",3,7); |
|
|
|
|
log.info(">>>>>> handlePicture {},{}", 3, 7); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
//拼接ReservationCode
|
|
|
|
@ -3154,35 +3484,35 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
log.info(">>>>>> handlePicture {}",5); |
|
|
|
|
log.info(">>>>>> handlePicture {}", 5); |
|
|
|
|
|
|
|
|
|
//将指定的文件进行压缩
|
|
|
|
|
String fileName = FileUtil.reservationPictureFileToZip(String.join(",",reservationCodes)); |
|
|
|
|
log.info(">>>>>> handlePicture {}",6); |
|
|
|
|
String fileName = FileUtil.reservationPictureFileToZip(String.join(",", reservationCodes)); |
|
|
|
|
log.info(">>>>>> handlePicture {}", 6); |
|
|
|
|
|
|
|
|
|
//获得压缩后的文件进行前端下载数据推送
|
|
|
|
|
File file = FileUtil.getZipFile(fileName); |
|
|
|
|
|
|
|
|
|
log.info(">>>>>> handlePicture {}",7); |
|
|
|
|
if (Func.isNotEmpty(file)){ |
|
|
|
|
log.info(">>>>>> handlePicture {}", 7); |
|
|
|
|
if (Func.isNotEmpty(file)) { |
|
|
|
|
byte[] buffer = new byte[512]; |
|
|
|
|
FileInputStream fis = null; |
|
|
|
|
BufferedInputStream bis = null; |
|
|
|
|
try { |
|
|
|
|
ServletOutputStream os = res.getOutputStream(); |
|
|
|
|
fis = new FileInputStream(file); |
|
|
|
|
bis = new BufferedInputStream(fis); |
|
|
|
|
ServletOutputStream os = res.getOutputStream(); |
|
|
|
|
fis = new FileInputStream(file); |
|
|
|
|
bis = new BufferedInputStream(fis); |
|
|
|
|
// res.setHeader("Content-Length", ""+file.listFiles().length);
|
|
|
|
|
// res.setContentType("application/zip;charset=UTF-8");
|
|
|
|
|
// res.setHeader("Content-Disposition","签收图片打包");
|
|
|
|
|
int i = bis.read(buffer); |
|
|
|
|
while (i >= 0) { |
|
|
|
|
os.write(buffer, 0, i); |
|
|
|
|
i = bis.read(buffer); |
|
|
|
|
} |
|
|
|
|
int i = bis.read(buffer); |
|
|
|
|
while (i >= 0) { |
|
|
|
|
os.write(buffer, 0, i); |
|
|
|
|
i = bis.read(buffer); |
|
|
|
|
} |
|
|
|
|
} catch (IOException e) { |
|
|
|
|
log.error("文件下载失败 {}",e.getMessage()); |
|
|
|
|
}finally { |
|
|
|
|
log.error("文件下载失败 {}", e.getMessage()); |
|
|
|
|
} finally { |
|
|
|
|
if (bis != null) { |
|
|
|
|
try { |
|
|
|
|
bis.close(); |
|
|
|
@ -3201,6 +3531,5 @@ public class DistributionSignforServiceImpl extends BaseServiceImpl<Distribution
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|