|
|
|
@ -56,42 +56,47 @@ public class WaybillCheckListener {
|
|
|
|
|
)) |
|
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
|
public void checkWaybillIncomingData(String msg) { |
|
|
|
|
log.info("#########checkWaybillIncomingData: 运单审核处理收入结算数据 msg={}",msg); |
|
|
|
|
log.info("#########checkWaybillIncomingData: 运单审核处理收入结算数据 msg={}", msg); |
|
|
|
|
JSONObject jsonObject = JSONUtil.parseObj(msg); |
|
|
|
|
Long waybillId = jsonObject.getLong("waybillId"); |
|
|
|
|
|
|
|
|
|
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient.findByWaybillId(waybillId); |
|
|
|
|
if(Objects.isNull(waybillEntity)){ |
|
|
|
|
log.warn("###########checkWaybillIncomingData: 运单信息不存在 waybillId={}",waybillId); |
|
|
|
|
if (Objects.isNull(waybillEntity)) { |
|
|
|
|
log.warn("###########checkWaybillIncomingData: 运单信息不存在 waybillId={}", waybillId); |
|
|
|
|
throw new CustomerException(405, "运单信息不存在"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Integer waybillType = waybillEntity.getWaybillType(); |
|
|
|
|
String payWay = waybillEntity.getPayWay(); |
|
|
|
|
if(waybillType.equals(1)){ |
|
|
|
|
if (waybillType.equals(1)) { |
|
|
|
|
//订制品(包含有数据库存品)
|
|
|
|
|
dealwithPackageOrder(waybillEntity); |
|
|
|
|
|
|
|
|
|
}else if(waybillType.equals(2)){ |
|
|
|
|
} else if (waybillType.equals(2)) { |
|
|
|
|
//零担
|
|
|
|
|
dealwithZeroOrder(waybillEntity); |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
log.warn("###############checkWaybillIncomingData: 运单类型不正确 waybillId={} waybillType={}",waybillId,waybillType); |
|
|
|
|
} else { |
|
|
|
|
log.warn("###############checkWaybillIncomingData: 运单类型不正确 waybillId={} waybillType={}", waybillId, waybillType); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(payWay.equals("1")||payWay.equals("2")){ |
|
|
|
|
if (payWay.equals("1") || payWay.equals("2")) { |
|
|
|
|
//如果是现付和到付需要直接生成结算单
|
|
|
|
|
createBalanceOrder(waybillEntity); |
|
|
|
|
} |
|
|
|
|
log.info("#########checkWaybillIncomingData: 运单审核处理收入结算数据 结束 waybillId={}",waybillId); |
|
|
|
|
log.info("#########checkWaybillIncomingData: 运单审核处理收入结算数据 结束 waybillId={}", waybillId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void createBalanceOrder(WarehouseWaybillEntity waybillEntity) { |
|
|
|
|
String waybillNo = waybillEntity.getWaybillNo(); |
|
|
|
|
log.info("####################createBalanceOrder: 创建现付到付的结算单 waybillNo={}",waybillNo); |
|
|
|
|
log.info("####################createBalanceOrder: 创建现付到付的结算单 waybillNo={}", waybillNo); |
|
|
|
|
Long waybillId = waybillEntity.getId(); |
|
|
|
|
|
|
|
|
|
WarehouseWaybillEntity byWaybill = warehouseWaybillClient.findByWaybillId(waybillId); |
|
|
|
|
if (Objects.isNull(byWaybill)) { |
|
|
|
|
log.error("############createBalanceOrder: 运单不存在 waybillId={}", waybillId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// List<WarehouseWayBillDetail> wayBillDetailList = warehouseWaybillDetailClient.findByWaybillId(waybillId);
|
|
|
|
|
//把wayBillDetailList中所有productName用逗号拼起来
|
|
|
|
|
// String productTypeNum = wayBillDetailList.stream().map(t->t.getProductName()+"("+t.getNum()+")").collect(Collectors.joining(","));
|
|
|
|
@ -103,7 +108,7 @@ public class WaybillCheckListener {
|
|
|
|
|
|
|
|
|
|
StatisticsPackageFeeInfoVO trunklinePackageFeeVO = statisticsOrderInfoService.findPackageListByOrderIds(orderInfoIdsList); |
|
|
|
|
|
|
|
|
|
String balanceOrderCode = "JSD"+System.currentTimeMillis(); |
|
|
|
|
String balanceOrderCode = "JSD" + System.currentTimeMillis(); |
|
|
|
|
|
|
|
|
|
BigDecimal freightPrice = trunklinePackageFeeVO.getFreightPrice(); |
|
|
|
|
BigDecimal pickupPrice = trunklinePackageFeeVO.getPickupPrice(); |
|
|
|
@ -154,8 +159,11 @@ public class WaybillCheckListener {
|
|
|
|
|
balanceOrderInfoEntity.setAbnormalBalanceStatus(0); |
|
|
|
|
balanceOrderInfoEntity.setAbnormalBalanceFee(BigDecimal.ZERO); |
|
|
|
|
|
|
|
|
|
balanceOrderInfoEntity.setDestinationWarehouseId(byWaybill.getDestinationWarehouseId()); |
|
|
|
|
balanceOrderInfoEntity.setDestinationWarehouseName(byWaybill.getDestinationWarehouseName()); |
|
|
|
|
|
|
|
|
|
boolean saveFlag = balanceOrderInfoService.save(balanceOrderInfoEntity); |
|
|
|
|
if(saveFlag){ |
|
|
|
|
if (saveFlag) { |
|
|
|
|
Long balanceOrderId = balanceOrderInfoEntity.getId(); |
|
|
|
|
List<StatisticsOrderInfoEntity> updateOrderInfoList = new ArrayList<>(); |
|
|
|
|
orderInfoEntityList.forEach(orderInfoEntity -> { |
|
|
|
@ -171,7 +179,7 @@ public class WaybillCheckListener {
|
|
|
|
|
updateEntity.setConfirmBalanceUserName(AuthUtil.getNickName()); |
|
|
|
|
updateOrderInfoList.add(updateEntity); |
|
|
|
|
}); |
|
|
|
|
if(CollUtil.isNotEmpty(updateOrderInfoList)){ |
|
|
|
|
if (CollUtil.isNotEmpty(updateOrderInfoList)) { |
|
|
|
|
statisticsOrderInfoService.updateBatchById(updateOrderInfoList); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -179,7 +187,7 @@ public class WaybillCheckListener {
|
|
|
|
|
|
|
|
|
|
private void dealwithZeroOrder(WarehouseWaybillEntity waybillEntity) { |
|
|
|
|
String waybillNo = waybillEntity.getWaybillNo(); |
|
|
|
|
log.info("############dealwithZeroOrder: 处理零担信息 waybillNo={}",waybillNo); |
|
|
|
|
log.info("############dealwithZeroOrder: 处理零担信息 waybillNo={}", waybillNo); |
|
|
|
|
Long waybillId = waybillEntity.getId(); |
|
|
|
|
String brand = waybillEntity.getBrand(); |
|
|
|
|
Long brandId = waybillEntity.getBrandId(); |
|
|
|
@ -193,12 +201,12 @@ public class WaybillCheckListener {
|
|
|
|
|
String destinationWarehouseName = waybillEntity.getDestinationWarehouseName(); |
|
|
|
|
|
|
|
|
|
// BigDecimal pickupFee = Objects.isNull(waybillEntity.getPickupFee())?BigDecimal.ZERO:waybillEntity.getPickupFee();
|
|
|
|
|
BigDecimal warehouseManagementFee = Objects.isNull(waybillEntity.getWarehouseManagementFee())?BigDecimal.ZERO:waybillEntity.getWarehouseManagementFee(); |
|
|
|
|
BigDecimal warehouseFee = Objects.isNull(waybillEntity.getStorageFee())?BigDecimal.ZERO:waybillEntity.getStorageFee(); |
|
|
|
|
BigDecimal handlingFee = Objects.isNull(waybillEntity.getHandlingFee())?BigDecimal.ZERO:waybillEntity.getHandlingFee(); |
|
|
|
|
BigDecimal insuranceFee = Objects.isNull(waybillEntity.getInsuranceFee())?BigDecimal.ZERO:waybillEntity.getInsuranceFee(); |
|
|
|
|
BigDecimal otherFee = Objects.isNull(waybillEntity.getOtherFee())?BigDecimal.ZERO:waybillEntity.getOtherFee(); |
|
|
|
|
BigDecimal thirdOperationFee = Objects.isNull(waybillEntity.getThirdOperationFee())?BigDecimal.ZERO:waybillEntity.getThirdOperationFee(); |
|
|
|
|
BigDecimal warehouseManagementFee = Objects.isNull(waybillEntity.getWarehouseManagementFee()) ? BigDecimal.ZERO : waybillEntity.getWarehouseManagementFee(); |
|
|
|
|
BigDecimal warehouseFee = Objects.isNull(waybillEntity.getStorageFee()) ? BigDecimal.ZERO : waybillEntity.getStorageFee(); |
|
|
|
|
BigDecimal handlingFee = Objects.isNull(waybillEntity.getHandlingFee()) ? BigDecimal.ZERO : waybillEntity.getHandlingFee(); |
|
|
|
|
BigDecimal insuranceFee = Objects.isNull(waybillEntity.getInsuranceFee()) ? BigDecimal.ZERO : waybillEntity.getInsuranceFee(); |
|
|
|
|
BigDecimal otherFee = Objects.isNull(waybillEntity.getOtherFee()) ? BigDecimal.ZERO : waybillEntity.getOtherFee(); |
|
|
|
|
BigDecimal thirdOperationFee = Objects.isNull(waybillEntity.getThirdOperationFee()) ? BigDecimal.ZERO : waybillEntity.getThirdOperationFee(); |
|
|
|
|
Integer totalCount = waybillEntity.getTotalCount(); |
|
|
|
|
|
|
|
|
|
// BigDecimal pickupPrice = pickupFee.divide(new BigDecimal(totalCount), 2, BigDecimal.ROUND_HALF_UP);
|
|
|
|
@ -235,7 +243,7 @@ public class WaybillCheckListener {
|
|
|
|
|
orderInfoEntities.add(orderInfoEntity); |
|
|
|
|
|
|
|
|
|
boolean b = statisticsOrderInfoService.saveBatch(orderInfoEntities); |
|
|
|
|
if(b){ |
|
|
|
|
if (b) { |
|
|
|
|
|
|
|
|
|
Long orderId = orderInfoEntity.getId(); |
|
|
|
|
|
|
|
|
@ -244,7 +252,7 @@ public class WaybillCheckListener {
|
|
|
|
|
List<StatisticsDistributionPackageEntity> distributionPackageEntities = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wayBillDetailList.forEach(wayBillDetail->{ |
|
|
|
|
wayBillDetailList.forEach(wayBillDetail -> { |
|
|
|
|
Long productId = wayBillDetail.getProductId(); |
|
|
|
|
String productName = wayBillDetail.getProductName(); |
|
|
|
|
Integer num = wayBillDetail.getNum(); |
|
|
|
@ -258,8 +266,8 @@ public class WaybillCheckListener {
|
|
|
|
|
trunklinePackageEntity.setWaybillNo(waybillNo); |
|
|
|
|
trunklinePackageEntity.setOrderCode(waybillNo); |
|
|
|
|
trunklinePackageEntity.setNum(num); |
|
|
|
|
trunklinePackageEntity.setWeight(Objects.isNull(weight)?BigDecimal.ZERO:weight); |
|
|
|
|
trunklinePackageEntity.setVolume(Objects.isNull(volume)?BigDecimal.ZERO:volume); |
|
|
|
|
trunklinePackageEntity.setWeight(Objects.isNull(weight) ? BigDecimal.ZERO : weight); |
|
|
|
|
trunklinePackageEntity.setVolume(Objects.isNull(volume) ? BigDecimal.ZERO : volume); |
|
|
|
|
trunklinePackageEntity.setGoodsType(2); |
|
|
|
|
trunklinePackageEntity.setOrderInfoId(orderId); |
|
|
|
|
trunklinePackageEntity.setProductId(productId); |
|
|
|
@ -279,29 +287,29 @@ public class WaybillCheckListener {
|
|
|
|
|
Integer systemWarehouseChargeType = wayBillDetail.getSystemWarehouseChargeType(); |
|
|
|
|
Integer systemDeliveryChargeType = wayBillDetail.getSystemDeliveryChargeType(); |
|
|
|
|
|
|
|
|
|
if(systemChargeType == 1){ |
|
|
|
|
if (systemChargeType == 1) { |
|
|
|
|
trunklinePackageEntity.setSystemFreightPrice(systemFreightPrice.multiply(new BigDecimal(num))); |
|
|
|
|
}else if(systemChargeType == 2){ |
|
|
|
|
} else if (systemChargeType == 2) { |
|
|
|
|
trunklinePackageEntity.setSystemFreightPrice(systemFreightPrice.multiply(trunklinePackageEntity.getWeight())); |
|
|
|
|
}else if (systemChargeType == 3){ |
|
|
|
|
} else if (systemChargeType == 3) { |
|
|
|
|
trunklinePackageEntity.setSystemFreightPrice(systemFreightPrice.multiply(trunklinePackageEntity.getVolume())); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(chargeType == 1){ |
|
|
|
|
if (chargeType == 1) { |
|
|
|
|
trunklinePackageEntity.setFreightPrice(price.multiply(new BigDecimal(num))); |
|
|
|
|
}else if(chargeType == 2){ |
|
|
|
|
} else if (chargeType == 2) { |
|
|
|
|
trunklinePackageEntity.setFreightPrice(price.multiply(trunklinePackageEntity.getWeight())); |
|
|
|
|
}else if (chargeType == 3){ |
|
|
|
|
} else if (chargeType == 3) { |
|
|
|
|
trunklinePackageEntity.setFreightPrice(price.multiply(trunklinePackageEntity.getVolume())); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(systemPickupChargeType == 1){ |
|
|
|
|
if (systemPickupChargeType == 1) { |
|
|
|
|
trunklinePackageEntity.setSystemPickupPrice(systemPickupPrice.multiply(new BigDecimal(num))); |
|
|
|
|
trunklinePackageEntity.setPickupPrice(systemPickupPrice.multiply(new BigDecimal(num))); |
|
|
|
|
}else if(systemPickupChargeType == 2){ |
|
|
|
|
} else if (systemPickupChargeType == 2) { |
|
|
|
|
trunklinePackageEntity.setSystemPickupPrice(systemPickupPrice.multiply(trunklinePackageEntity.getWeight())); |
|
|
|
|
trunklinePackageEntity.setPickupPrice(systemPickupPrice.multiply(trunklinePackageEntity.getWeight())); |
|
|
|
|
}else if (systemPickupChargeType == 3){ |
|
|
|
|
} else if (systemPickupChargeType == 3) { |
|
|
|
|
trunklinePackageEntity.setSystemPickupPrice(systemPickupPrice.multiply(trunklinePackageEntity.getVolume())); |
|
|
|
|
trunklinePackageEntity.setPickupPrice(systemPickupPrice.multiply(trunklinePackageEntity.getVolume())); |
|
|
|
|
} |
|
|
|
@ -367,8 +375,8 @@ public class WaybillCheckListener {
|
|
|
|
|
distributionPackageEntity.setWaybillNo(waybillNo); |
|
|
|
|
distributionPackageEntity.setOrderCode(waybillNo); |
|
|
|
|
distributionPackageEntity.setNum(num); |
|
|
|
|
distributionPackageEntity.setWeight(Objects.isNull(weight)?BigDecimal.ZERO:weight); |
|
|
|
|
distributionPackageEntity.setVolume(Objects.isNull(volume)?BigDecimal.ZERO:volume); |
|
|
|
|
distributionPackageEntity.setWeight(Objects.isNull(weight) ? BigDecimal.ZERO : weight); |
|
|
|
|
distributionPackageEntity.setVolume(Objects.isNull(volume) ? BigDecimal.ZERO : volume); |
|
|
|
|
distributionPackageEntity.setGoodsType(2); |
|
|
|
|
distributionPackageEntity.setOrderInfoId(orderId); |
|
|
|
|
distributionPackageEntity.setDeliveryLoadingFee(handlingPrice.multiply(new BigDecimal(num))); |
|
|
|
@ -384,11 +392,11 @@ public class WaybillCheckListener {
|
|
|
|
|
BigDecimal systemDeliveryPrice = wayBillDetail.getDeliveryPrice(); |
|
|
|
|
distributionPackageEntity.setSystemDeliveryFee(systemDeliveryPrice); |
|
|
|
|
|
|
|
|
|
if(systemDeliveryChargeType == 1){ |
|
|
|
|
if (systemDeliveryChargeType == 1) { |
|
|
|
|
distributionPackageEntity.setSystemDeliveryFee(systemDeliveryPrice.multiply(new BigDecimal(num))); |
|
|
|
|
}else if(systemDeliveryChargeType == 2){ |
|
|
|
|
} else if (systemDeliveryChargeType == 2) { |
|
|
|
|
distributionPackageEntity.setSystemDeliveryFee(systemDeliveryPrice.multiply(weight)); |
|
|
|
|
}else if (systemDeliveryChargeType == 3){ |
|
|
|
|
} else if (systemDeliveryChargeType == 3) { |
|
|
|
|
distributionPackageEntity.setSystemDeliveryFee(systemDeliveryPrice.multiply(volume)); |
|
|
|
|
} |
|
|
|
|
distributionPackageEntity.setDeliveryFee(BigDecimal.ZERO); |
|
|
|
@ -396,7 +404,7 @@ public class WaybillCheckListener {
|
|
|
|
|
BigDecimal systemDeliveryFeeTotal = distributionPackageEntity.getSystemDeliveryFee(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(payWay.equals("1") || payWay.equals("2")){ |
|
|
|
|
if (payWay.equals("1") || payWay.equals("2")) { |
|
|
|
|
distributionPackageEntity.setDeliveryFee(systemDeliveryFeeTotal); |
|
|
|
|
} |
|
|
|
|
BigDecimal deliveryFeeTotal = distributionPackageEntity.getDeliveryFee(); |
|
|
|
@ -412,24 +420,24 @@ public class WaybillCheckListener {
|
|
|
|
|
distributionPackageEntities.add(distributionPackageEntity); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
if(CollUtil.isNotEmpty(trunklinePackageEntities)){ |
|
|
|
|
if (CollUtil.isNotEmpty(trunklinePackageEntities)) { |
|
|
|
|
trunklinePackageService.saveBatch(trunklinePackageEntities); |
|
|
|
|
} |
|
|
|
|
if(CollUtil.isNotEmpty(warehousePackageEntities)){ |
|
|
|
|
if (CollUtil.isNotEmpty(warehousePackageEntities)) { |
|
|
|
|
warehousePackageService.saveBatch(warehousePackageEntities); |
|
|
|
|
} |
|
|
|
|
if(CollUtil.isNotEmpty(distributionPackageEntities)){ |
|
|
|
|
if (CollUtil.isNotEmpty(distributionPackageEntities)) { |
|
|
|
|
distributionPackageService.saveBatch(distributionPackageEntities); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
log.warn("#############dealwithPackageOrder: 保存订单数据失败 waybillNo={}",waybillNo); |
|
|
|
|
} else { |
|
|
|
|
log.warn("#############dealwithPackageOrder: 保存订单数据失败 waybillNo={}", waybillNo); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void dealwithPackageOrder(WarehouseWaybillEntity waybillEntity) { |
|
|
|
|
String waybillNo = waybillEntity.getWaybillNo(); |
|
|
|
|
log.info("############dealwithPackageOrder: 处理订制品包件信息 waybillNo={}",waybillNo); |
|
|
|
|
log.info("############dealwithPackageOrder: 处理订制品包件信息 waybillNo={}", waybillNo); |
|
|
|
|
Long waybillId = waybillEntity.getId(); |
|
|
|
|
String brand = waybillEntity.getBrand(); |
|
|
|
|
Long brandId = waybillEntity.getBrandId(); |
|
|
|
@ -444,12 +452,12 @@ public class WaybillCheckListener {
|
|
|
|
|
|
|
|
|
|
//单价计算
|
|
|
|
|
// BigDecimal pickupFee = Objects.isNull(waybillEntity.getPickupFee())?BigDecimal.ZERO:waybillEntity.getPickupFee();
|
|
|
|
|
BigDecimal warehouseManagementFee = Objects.isNull(waybillEntity.getWarehouseManagementFee())?BigDecimal.ZERO:waybillEntity.getWarehouseManagementFee(); |
|
|
|
|
BigDecimal warehouseFee = Objects.isNull(waybillEntity.getStorageFee())?BigDecimal.ZERO:waybillEntity.getStorageFee(); |
|
|
|
|
BigDecimal handlingFee = Objects.isNull(waybillEntity.getHandlingFee())?BigDecimal.ZERO:waybillEntity.getHandlingFee(); |
|
|
|
|
BigDecimal insuranceFee = Objects.isNull(waybillEntity.getInsuranceFee())?BigDecimal.ZERO:waybillEntity.getInsuranceFee(); |
|
|
|
|
BigDecimal otherFee = Objects.isNull(waybillEntity.getOtherFee())?BigDecimal.ZERO:waybillEntity.getOtherFee(); |
|
|
|
|
BigDecimal thirdOperationFee = Objects.isNull(waybillEntity.getThirdOperationFee())?BigDecimal.ZERO:waybillEntity.getThirdOperationFee(); |
|
|
|
|
BigDecimal warehouseManagementFee = Objects.isNull(waybillEntity.getWarehouseManagementFee()) ? BigDecimal.ZERO : waybillEntity.getWarehouseManagementFee(); |
|
|
|
|
BigDecimal warehouseFee = Objects.isNull(waybillEntity.getStorageFee()) ? BigDecimal.ZERO : waybillEntity.getStorageFee(); |
|
|
|
|
BigDecimal handlingFee = Objects.isNull(waybillEntity.getHandlingFee()) ? BigDecimal.ZERO : waybillEntity.getHandlingFee(); |
|
|
|
|
BigDecimal insuranceFee = Objects.isNull(waybillEntity.getInsuranceFee()) ? BigDecimal.ZERO : waybillEntity.getInsuranceFee(); |
|
|
|
|
BigDecimal otherFee = Objects.isNull(waybillEntity.getOtherFee()) ? BigDecimal.ZERO : waybillEntity.getOtherFee(); |
|
|
|
|
BigDecimal thirdOperationFee = Objects.isNull(waybillEntity.getThirdOperationFee()) ? BigDecimal.ZERO : waybillEntity.getThirdOperationFee(); |
|
|
|
|
Integer totalCount = waybillEntity.getTotalCount(); |
|
|
|
|
|
|
|
|
|
// BigDecimal pickupPrice = pickupFee.divide(new BigDecimal(totalCount), 2, BigDecimal.ROUND_HALF_UP);
|
|
|
|
@ -461,9 +469,8 @@ public class WaybillCheckListener {
|
|
|
|
|
BigDecimal thirdOperationPrice = thirdOperationFee.divide(new BigDecimal(totalCount), 2, BigDecimal.ROUND_HALF_UP); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//查询运单下所有的订单
|
|
|
|
|
List<TrunklineAdvanceEntity> advanceEntities =trunklineAdvanceClient.findListByWaybillNo(waybillNo); |
|
|
|
|
List<TrunklineAdvanceEntity> advanceEntities = trunklineAdvanceClient.findListByWaybillNo(waybillNo); |
|
|
|
|
//查询包件信息
|
|
|
|
|
List<TrunklineAdvanceDetailEntity> advanceDetailEntities = trunklineAdvanceDetailClient.findListByWaybillId(waybillId); |
|
|
|
|
//查询运单明细
|
|
|
|
@ -476,7 +483,7 @@ public class WaybillCheckListener {
|
|
|
|
|
//保存订单信息
|
|
|
|
|
List<StatisticsOrderInfoEntity> orderInfoEntities = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
advanceEntities.forEach(advanceEntity->{ |
|
|
|
|
advanceEntities.forEach(advanceEntity -> { |
|
|
|
|
StatisticsOrderInfoEntity orderInfoEntity = new StatisticsOrderInfoEntity(); |
|
|
|
|
orderInfoEntity.setOrderCode(advanceEntity.getOrderCode()); |
|
|
|
|
orderInfoEntity.setWaybillId(waybillId); |
|
|
|
@ -498,7 +505,7 @@ public class WaybillCheckListener {
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
boolean b = statisticsOrderInfoService.saveBatch(orderInfoEntities); |
|
|
|
|
if(b){ |
|
|
|
|
if (b) { |
|
|
|
|
Map<String, List<TrunklineAdvanceDetailEntity>> advanceDetailGroupByOrderCode = |
|
|
|
|
advanceDetailEntities.stream() |
|
|
|
|
.collect(Collectors.groupingBy(TrunklineAdvanceDetailEntity::getOrderCode)); |
|
|
|
@ -506,11 +513,11 @@ public class WaybillCheckListener {
|
|
|
|
|
List<StatisticsTrunklinePackageEntity> trunklinePackageEntities = new ArrayList<>(); |
|
|
|
|
List<StatisticsWarehousePackageEntity> warehousePackageEntities = new ArrayList<>(); |
|
|
|
|
List<StatisticsDistributionPackageEntity> distributionPackageEntities = new ArrayList<>(); |
|
|
|
|
orderInfoEntities.forEach(orderInfoEntity->{ |
|
|
|
|
orderInfoEntities.forEach(orderInfoEntity -> { |
|
|
|
|
Long orderId = orderInfoEntity.getId(); |
|
|
|
|
String orderCode = orderInfoEntity.getOrderCode(); |
|
|
|
|
List<TrunklineAdvanceDetailEntity> advanceDetailList = advanceDetailGroupByOrderCode.get(orderCode); |
|
|
|
|
advanceDetailList.forEach(advanceDetailEntity->{ |
|
|
|
|
advanceDetailList.forEach(advanceDetailEntity -> { |
|
|
|
|
Long incomeCategoryId = advanceDetailEntity.getIncomeCategoryId(); |
|
|
|
|
String orderPackageCode = advanceDetailEntity.getOrderPackageCode(); |
|
|
|
|
Integer quantity = advanceDetailEntity.getQuantity(); |
|
|
|
@ -536,7 +543,7 @@ public class WaybillCheckListener {
|
|
|
|
|
trunklinePackageEntity.setOtherPrice(otherPrice.multiply(BigDecimal.ONE)); |
|
|
|
|
trunklinePackageEntity.setThirdOperationPrice(thirdOperationPrice.multiply(BigDecimal.ONE)); |
|
|
|
|
|
|
|
|
|
if(!Objects.isNull(warehouseWayBillDetail)){ |
|
|
|
|
if (!Objects.isNull(warehouseWayBillDetail)) { |
|
|
|
|
trunklinePackageEntity.setProductId(incomeCategoryId); |
|
|
|
|
trunklinePackageEntity.setProductName(warehouseWayBillDetail.getProductName()); |
|
|
|
|
|
|
|
|
@ -556,8 +563,8 @@ public class WaybillCheckListener {
|
|
|
|
|
BigDecimal packageWeight = productTotalWeight.divide(new BigDecimal(num), 2, BigDecimal.ROUND_HALF_UP);//平摊到包件的质量
|
|
|
|
|
BigDecimal packageVolume = productTotalVolume.divide(new BigDecimal(num), 2, BigDecimal.ROUND_HALF_UP);//平摊到包件的体积
|
|
|
|
|
|
|
|
|
|
trunklinePackageEntity.setWeight(Objects.isNull(packageWeight)?BigDecimal.ZERO:packageWeight); |
|
|
|
|
trunklinePackageEntity.setVolume(Objects.isNull(packageVolume)?BigDecimal.ZERO:packageVolume); |
|
|
|
|
trunklinePackageEntity.setWeight(Objects.isNull(packageWeight) ? BigDecimal.ZERO : packageWeight); |
|
|
|
|
trunklinePackageEntity.setVolume(Objects.isNull(packageVolume) ? BigDecimal.ZERO : packageVolume); |
|
|
|
|
|
|
|
|
|
BigDecimal systemFreightPrice = warehouseWayBillDetail.getFreightPrice();//系统运费单价
|
|
|
|
|
BigDecimal price = warehouseWayBillDetail.getPrice();//实际运费单价
|
|
|
|
@ -566,36 +573,36 @@ public class WaybillCheckListener {
|
|
|
|
|
//如果系统运费计算方式是按件,则用系统的运费单价乘以包件数量
|
|
|
|
|
//如果系统运费计算方式是按方,则用系统的运费单价乘以包件体积
|
|
|
|
|
//如果系统运费计算方式是按重量,则用系统的运费单价乘以包件重量
|
|
|
|
|
if(systemChargeType == 1){ |
|
|
|
|
if (systemChargeType == 1) { |
|
|
|
|
trunklinePackageEntity.setSystemFreightPrice(systemFreightPrice.multiply(BigDecimal.ONE)); |
|
|
|
|
}else if(systemChargeType == 2){ |
|
|
|
|
} else if (systemChargeType == 2) { |
|
|
|
|
trunklinePackageEntity.setSystemFreightPrice(systemFreightPrice.multiply(packageVolume)); |
|
|
|
|
}else if (systemChargeType == 3){ |
|
|
|
|
} else if (systemChargeType == 3) { |
|
|
|
|
trunklinePackageEntity.setSystemFreightPrice(systemFreightPrice.multiply(packageWeight)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//实际包件的运费
|
|
|
|
|
if(chargeType == 1){ |
|
|
|
|
if (chargeType == 1) { |
|
|
|
|
trunklinePackageEntity.setFreightPrice(price.multiply(BigDecimal.ONE)); |
|
|
|
|
}else if(chargeType == 2){ |
|
|
|
|
} else if (chargeType == 2) { |
|
|
|
|
trunklinePackageEntity.setFreightPrice(price.multiply(packageVolume)); |
|
|
|
|
}else if (chargeType == 3){ |
|
|
|
|
} else if (chargeType == 3) { |
|
|
|
|
trunklinePackageEntity.setFreightPrice(price.multiply(packageWeight)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//提货包件单价
|
|
|
|
|
if(systemPickupChargeType == 1){ |
|
|
|
|
if (systemPickupChargeType == 1) { |
|
|
|
|
trunklinePackageEntity.setSystemPickupPrice(systemPickupPrice.multiply(BigDecimal.ONE)); |
|
|
|
|
trunklinePackageEntity.setPickupPrice(systemPickupPrice.multiply(BigDecimal.ONE)); |
|
|
|
|
}else if(systemPickupChargeType == 2){ |
|
|
|
|
} else if (systemPickupChargeType == 2) { |
|
|
|
|
trunklinePackageEntity.setSystemPickupPrice(systemPickupPrice.multiply(packageVolume)); |
|
|
|
|
trunklinePackageEntity.setPickupPrice(systemPickupPrice.multiply(packageVolume)); |
|
|
|
|
}else if (systemPickupChargeType == 3){ |
|
|
|
|
} else if (systemPickupChargeType == 3) { |
|
|
|
|
trunklinePackageEntity.setSystemPickupPrice(systemPickupPrice.multiply(packageWeight)); |
|
|
|
|
trunklinePackageEntity.setPickupPrice(systemPickupPrice.multiply(packageWeight)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trunklinePackageEntity.setFreightChargeType(1); |
|
|
|
@ -643,7 +650,7 @@ public class WaybillCheckListener {
|
|
|
|
|
warehousePackageEntity.setBrandId(brandId); |
|
|
|
|
warehousePackageEntity.setConsigneeId(consigneeId); |
|
|
|
|
warehousePackageEntity.setChargeType(1); |
|
|
|
|
if(!Objects.isNull(warehouseWayBillDetail)){ |
|
|
|
|
if (!Objects.isNull(warehouseWayBillDetail)) { |
|
|
|
|
Integer systemWarehouseChargeType = warehouseWayBillDetail.getSystemWarehouseChargeType(); |
|
|
|
|
warehousePackageEntity.setChargeType(systemWarehouseChargeType); |
|
|
|
|
|
|
|
|
@ -678,8 +685,8 @@ public class WaybillCheckListener {
|
|
|
|
|
distributionPackageEntity.setOrderCode(orderCode); |
|
|
|
|
distributionPackageEntity.setOrderPackageCode(orderPackageCode); |
|
|
|
|
distributionPackageEntity.setNum(quantity); |
|
|
|
|
distributionPackageEntity.setWeight(Objects.isNull(weight)?BigDecimal.ZERO:weight); |
|
|
|
|
distributionPackageEntity.setVolume(Objects.isNull(volume)?BigDecimal.ZERO:volume); |
|
|
|
|
distributionPackageEntity.setWeight(Objects.isNull(weight) ? BigDecimal.ZERO : weight); |
|
|
|
|
distributionPackageEntity.setVolume(Objects.isNull(volume) ? BigDecimal.ZERO : volume); |
|
|
|
|
distributionPackageEntity.setGoodsType(1); |
|
|
|
|
distributionPackageEntity.setOrderInfoId(orderId); |
|
|
|
|
distributionPackageEntity.setDeliveryLoadingFee(handlingPrice.multiply(BigDecimal.ONE)); |
|
|
|
@ -694,7 +701,7 @@ public class WaybillCheckListener {
|
|
|
|
|
distributionPackageEntity.setConsigneeId(consigneeId); |
|
|
|
|
distributionPackageEntity.setDeliveryLoadingFee(handlingPrice.multiply(BigDecimal.ONE)); |
|
|
|
|
|
|
|
|
|
if(!Objects.isNull(warehouseWayBillDetail)){ |
|
|
|
|
if (!Objects.isNull(warehouseWayBillDetail)) { |
|
|
|
|
|
|
|
|
|
Integer systemDeliveryChargeType = warehouseWayBillDetail.getSystemDeliveryChargeType(); |
|
|
|
|
BigDecimal productTotalWeight = warehouseWayBillDetail.getWeight(); |
|
|
|
@ -712,23 +719,23 @@ public class WaybillCheckListener {
|
|
|
|
|
|
|
|
|
|
BigDecimal systemDeliveryPrice = warehouseWayBillDetail.getDeliveryPrice(); |
|
|
|
|
|
|
|
|
|
if(systemDeliveryChargeType == 1){ |
|
|
|
|
if (systemDeliveryChargeType == 1) { |
|
|
|
|
distributionPackageEntity.setSystemDeliveryFee(systemDeliveryPrice.multiply(BigDecimal.ONE)); |
|
|
|
|
}else if(systemDeliveryChargeType == 2){ |
|
|
|
|
} else if (systemDeliveryChargeType == 2) { |
|
|
|
|
distributionPackageEntity.setSystemDeliveryFee(systemDeliveryPrice.multiply(packageVolume)); |
|
|
|
|
}else if(systemDeliveryChargeType == 3){ |
|
|
|
|
} else if (systemDeliveryChargeType == 3) { |
|
|
|
|
distributionPackageEntity.setSystemDeliveryFee(systemDeliveryPrice.multiply(packageWeight)); |
|
|
|
|
} |
|
|
|
|
distributionPackageEntity.setDeliveryFee(BigDecimal.ZERO); |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
distributionPackageEntity.setSystemDeliveryChargeType(1); |
|
|
|
|
distributionPackageEntity.setDeliveryChargeType(1); |
|
|
|
|
distributionPackageEntity.setSystemDeliveryFee(BigDecimal.ZERO); |
|
|
|
|
distributionPackageEntity.setDeliveryFee(BigDecimal.ZERO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(payWay.equals("1") || payWay.equals("2")){ |
|
|
|
|
if (payWay.equals("1") || payWay.equals("2")) { |
|
|
|
|
distributionPackageEntity.setDeliveryFee(distributionPackageEntity.getSystemDeliveryFee()); |
|
|
|
|
} |
|
|
|
|
BigDecimal deliveryFeeTotal = distributionPackageEntity.getDeliveryFee(); |
|
|
|
@ -746,18 +753,18 @@ public class WaybillCheckListener {
|
|
|
|
|
distributionPackageEntities.add(distributionPackageEntity); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
if(CollUtil.isNotEmpty(trunklinePackageEntities)){ |
|
|
|
|
if (CollUtil.isNotEmpty(trunklinePackageEntities)) { |
|
|
|
|
trunklinePackageService.saveBatch(trunklinePackageEntities); |
|
|
|
|
} |
|
|
|
|
if(CollUtil.isNotEmpty(warehousePackageEntities)){ |
|
|
|
|
if (CollUtil.isNotEmpty(warehousePackageEntities)) { |
|
|
|
|
warehousePackageService.saveBatch(warehousePackageEntities); |
|
|
|
|
} |
|
|
|
|
if(CollUtil.isNotEmpty(distributionPackageEntities)){ |
|
|
|
|
if (CollUtil.isNotEmpty(distributionPackageEntities)) { |
|
|
|
|
distributionPackageService.saveBatch(distributionPackageEntities); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
log.warn("#############dealwithPackageOrder: 保存订单数据失败 waybillNo={}",waybillNo); |
|
|
|
|
} else { |
|
|
|
|
log.warn("#############dealwithPackageOrder: 保存订单数据失败 waybillNo={}", waybillNo); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|