|
|
|
@ -5,6 +5,7 @@ import cn.hutool.core.util.ObjectUtil;
|
|
|
|
|
import cn.hutool.json.JSONObject; |
|
|
|
|
import cn.hutool.json.JSONUtil; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
|
|
|
|
import com.logpm.distribution.feign.IDistributionParcelListClient; |
|
|
|
|
import com.logpm.statistics.entity.*; |
|
|
|
|
import com.logpm.statistics.service.*; |
|
|
|
|
import com.logpm.statistics.vo.StatisticsPackageFeeInfoVO; |
|
|
|
@ -32,6 +33,7 @@ import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
import java.util.*; |
|
|
|
|
import java.util.concurrent.atomic.AtomicReference; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
@Slf4j |
|
|
|
@ -50,6 +52,7 @@ public class WaybillCheckListener {
|
|
|
|
|
private final IStatisticsWarehousePackageService warehousePackageService; |
|
|
|
|
private final IStatisticsDistributionPackageService distributionPackageService; |
|
|
|
|
private final IStatisticsBalanceOrderInfoService balanceOrderInfoService; |
|
|
|
|
private final IDistributionParcelListClient distributionParcelListClient; |
|
|
|
|
|
|
|
|
|
@RabbitListener(bindings = @QueueBinding( |
|
|
|
|
value = @Queue(name = FanoutConstants.trunkline.CHECKWAYBILL.QUEUE.CHECKWAYBILL_INCOMINGDATA), |
|
|
|
@ -526,10 +529,18 @@ public class WaybillCheckListener {
|
|
|
|
|
List<StatisticsTrunklinePackageEntity> trunklinePackageEntities = new ArrayList<>(); |
|
|
|
|
List<StatisticsWarehousePackageEntity> warehousePackageEntities = new ArrayList<>(); |
|
|
|
|
List<StatisticsDistributionPackageEntity> distributionPackageEntities = new ArrayList<>(); |
|
|
|
|
List<StatisticsOrderInfoEntity> updateSignList = new ArrayList<>(); |
|
|
|
|
orderInfoEntities.forEach(orderInfoEntity -> { |
|
|
|
|
Long orderId = orderInfoEntity.getId(); |
|
|
|
|
String orderCode = orderInfoEntity.getOrderCode(); |
|
|
|
|
List<TrunklineAdvanceDetailEntity> advanceDetailList = advanceDetailGroupByOrderCode.get(orderCode); |
|
|
|
|
//把advanceDetailList中所有orderPackageCode放入一个List
|
|
|
|
|
List<String> orderPackageCodeList = advanceDetailList.stream().map(TrunklineAdvanceDetailEntity::getOrderPackageCode).collect(Collectors.toList()); |
|
|
|
|
//查询包件是否签收
|
|
|
|
|
List<String> signPackages = distributionParcelListClient.findSignOrderPackageCodes(orderPackageCodeList); |
|
|
|
|
|
|
|
|
|
AtomicReference<Integer> signNum = new AtomicReference<>(0); |
|
|
|
|
|
|
|
|
|
advanceDetailList.forEach(advanceDetailEntity -> { |
|
|
|
|
Long incomeCategoryId = advanceDetailEntity.getIncomeCategoryId(); |
|
|
|
|
String orderPackageCode = advanceDetailEntity.getOrderPackageCode(); |
|
|
|
@ -712,6 +723,11 @@ public class WaybillCheckListener {
|
|
|
|
|
distributionPackageEntity.setDeliveryCrossingFee(BigDecimal.ZERO); |
|
|
|
|
distributionPackageEntity.setSignNum(0); |
|
|
|
|
distributionPackageEntity.setIsSign(0); |
|
|
|
|
if(signPackages.contains(orderPackageCode)){ |
|
|
|
|
distributionPackageEntity.setSignNum(1); |
|
|
|
|
distributionPackageEntity.setIsSign(1); |
|
|
|
|
signNum.set(signNum.get() + 1); |
|
|
|
|
} |
|
|
|
|
distributionPackageEntity.setBrandId(brandId); |
|
|
|
|
distributionPackageEntity.setConsigneeId(consigneeId); |
|
|
|
|
distributionPackageEntity.setDeliveryLoadingFee(handlingPrice.multiply(BigDecimal.ONE)); |
|
|
|
@ -769,6 +785,23 @@ public class WaybillCheckListener {
|
|
|
|
|
|
|
|
|
|
distributionPackageEntities.add(distributionPackageEntity); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
StatisticsOrderInfoEntity updateEntity = new StatisticsOrderInfoEntity(); |
|
|
|
|
updateEntity.setId(orderInfoEntity.getId()); |
|
|
|
|
int size = advanceDetailList.size(); |
|
|
|
|
Integer sn = signNum.get(); |
|
|
|
|
if(sn == 0){ |
|
|
|
|
updateEntity.setSignStatus(0); |
|
|
|
|
}else{ |
|
|
|
|
if(sn != size){ |
|
|
|
|
updateEntity.setSignStatus(1); |
|
|
|
|
}else{ |
|
|
|
|
updateEntity.setSignStatus(2); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
updateSignList.add(updateEntity); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
if (CollUtil.isNotEmpty(trunklinePackageEntities)) { |
|
|
|
|
trunklinePackageService.saveBatch(trunklinePackageEntities); |
|
|
|
@ -780,6 +813,10 @@ public class WaybillCheckListener {
|
|
|
|
|
distributionPackageService.saveBatch(distributionPackageEntities); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(CollUtil.isNotEmpty(updateSignList)){ |
|
|
|
|
statisticsOrderInfoService.updateBatchById(updateSignList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
log.warn("#############dealwithPackageOrder: 保存订单数据失败 waybillNo={}", waybillNo); |
|
|
|
|
} |
|
|
|
|