@ -1,12 +1,17 @@
package com.logpm.trunkline.service.impl ;
import com.alibaba.fastjson.JSONObject ;
import com.logpm.basicdata.entity.BasicdataClientEntity ;
import com.logpm.basicdata.entity.BasicdataStoreBusinessEntity ;
import com.logpm.basicdata.feign.IBasicdataClientClient ;
import com.logpm.basicdata.feign.IBasicdataStoreBusinessClient ;
import com.logpm.trunkline.dto.InComingDTO ;
import com.logpm.trunkline.entity.TrunklineCarsLoadEntity ;
import com.logpm.trunkline.entity.TrunklineCarsLoadLineEntity ;
import com.logpm.trunkline.entity.TrunklineWaybillTrackEntity ;
import com.logpm.trunkline.service.* ;
import com.logpm.trunkline.vo.LoadScanWaybillVO ;
import com.logpm.trunkline.vo.TrunklineAdvanceDetailVO ;
import com.logpm.warehouse.entity.WarehouseWayBillDetail ;
import com.logpm.warehouse.entity.WarehouseWaybillEntity ;
import com.logpm.warehouse.feign.IWarehouseWaybillClient ;
@ -23,9 +28,11 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy ;
import org.springframework.stereotype.Service ;
import java.util.Date ;
import java.util.List ;
import java.util.Objects ;
import java.math.BigDecimal ;
import java.math.RoundingMode ;
import java.util.* ;
import java.util.concurrent.atomic.AtomicInteger ;
import java.util.stream.Collectors ;
@Service
@Slf4j
@ -47,6 +54,12 @@ public class OpenOrderAsyncServiceImpl implements IOpenOrderAsyncService {
private IInComingService inComingService ;
@Autowired
private ISendFanoutService sendFanoutService ;
@Autowired
private ITrunklineAdvanceDetailService advanceDetailService ;
@Autowired
private IBasicdataClientClient basicdataClientClient ;
@Autowired
private IBasicdataStoreBusinessClient basicdataStoreBusinessClient ;
@LogpmAsync ( "asyncExecutor" )
@Override
@ -303,11 +316,220 @@ public class OpenOrderAsyncServiceImpl implements IOpenOrderAsyncService {
@LogpmAsync ( "asyncExecutor" )
@Override
public void sendOpenWaybillFanout ( WarehouseWaybillEntity waybillEntity , List < WarehouseWayBillDetail > details ) {
public void sendOpenWaybillFanout ( WarehouseWaybillEntity waybillEntity , List < WarehouseWayBillDetail > details , List < Long > advanceIds ) {
Integer waybillType = waybillEntity . getWaybillType ( ) ;
String waybillNo = waybillEntity . getWaybillNo ( ) ;
JSONObject jsonObject = new JSONObject ( ) ;
jsonObject . put ( "waybillNo" , waybillEntity . getWaybillNo ( ) ) ;
jsonObject . put ( "waybillType" , waybillEntity . getWaybillType ( ) ) ;
jsonObject . put ( "warehouseId" , waybillEntity . getDepartureWarehouseId ( ) ) ;
jsonObject . put ( "warehouseName" , waybillEntity . getDepartureWarehouseName ( ) ) ;
jsonObject . put ( "waybillId" , waybillEntity . getId ( ) ) ;
jsonObject . put ( "waybillNo" , waybillNo ) ;
jsonObject . put ( "waybillType" , waybillType ) ;
Long consigneeId = waybillEntity . getConsigneeId ( ) ;
BasicdataClientEntity basicdataClientEntity = basicdataClientClient . getMallById ( consigneeId ) ;
if ( Objects . isNull ( basicdataClientEntity ) ) {
jsonObject . put ( "typeService" , "1" ) ;
} else {
BasicdataStoreBusinessEntity storeBusinessEntity = basicdataStoreBusinessClient . findByClientIdAndTypeService ( consigneeId , 3 ) ;
if ( Objects . isNull ( storeBusinessEntity ) ) {
jsonObject . put ( "typeService" , "1" ) ;
} else {
jsonObject . put ( "typeService" , storeBusinessEntity . getMold ( ) ) ;
}
}
Integer totalCount = waybillEntity . getTotalCount ( ) ;
BigDecimal pickupFee = waybillEntity . getPickupFee ( ) ;
BigDecimal pickupPrice = pickupFee . divide ( new BigDecimal ( totalCount ) , 2 , RoundingMode . HALF_UP ) ;
BigDecimal installFee = waybillEntity . getInstallFee ( ) ;
BigDecimal installPrice = installFee . divide ( new BigDecimal ( totalCount ) , 2 , RoundingMode . HALF_UP ) ;
BigDecimal insuranceFee = waybillEntity . getInsuranceFee ( ) ;
BigDecimal insurancePrice = insuranceFee . divide ( new BigDecimal ( totalCount ) , 2 , RoundingMode . HALF_UP ) ;
BigDecimal claimingValue = waybillEntity . getClaimingValue ( ) ;
BigDecimal claimingPrice = claimingValue . divide ( new BigDecimal ( totalCount ) , 2 , RoundingMode . HALF_UP ) ;
BigDecimal otherFee = waybillEntity . getOtherFee ( ) ;
BigDecimal otherPrice = otherFee . divide ( new BigDecimal ( totalCount ) , 2 , RoundingMode . HALF_UP ) ;
BigDecimal rebate = waybillEntity . getRebate ( ) ;
BigDecimal rebatePrice = rebate . divide ( new BigDecimal ( totalCount ) , 2 , RoundingMode . HALF_UP ) ;
BigDecimal thirdOperationFee = waybillEntity . getThirdOperationFee ( ) ;
BigDecimal thirdOperationPrice = thirdOperationFee . divide ( new BigDecimal ( totalCount ) , 2 , RoundingMode . HALF_UP ) ;
BigDecimal xPay = waybillEntity . getXPay ( ) ;
BigDecimal xPayPrice = xPay . divide ( new BigDecimal ( totalCount ) , 2 , RoundingMode . HALF_UP ) ;
BigDecimal dPay = waybillEntity . getDPay ( ) ;
BigDecimal dPayPrice = dPay . divide ( new BigDecimal ( totalCount ) , 2 , RoundingMode . HALF_UP ) ;
BigDecimal hPay = waybillEntity . getHPay ( ) ;
BigDecimal hPayPrice = hPay . divide ( new BigDecimal ( totalCount ) , 2 , RoundingMode . HALF_UP ) ;
BigDecimal yPay = waybillEntity . getYPay ( ) ;
BigDecimal yPayPrice = yPay . divide ( new BigDecimal ( totalCount ) , 2 , RoundingMode . HALF_UP ) ;
//把details转化成不分组以productName为key的map
Map < String , WarehouseWayBillDetail > detailsMap = details . stream ( )
. collect ( Collectors . toMap ( WarehouseWayBillDetail : : getProductName , detail - > detail , ( a , b ) - > a ) ) ;
if ( waybillType . equals ( 1 ) ) {
//订制品
List < TrunklineAdvanceDetailVO > list = advanceDetailService . findAdvanceDetailVoByAdvanceIds ( advanceIds ) ;
//把list按goodsName分组,并统计一个count,转成一个map
// Map<String, Integer> countMap = list.stream()
// .collect(Collectors.toMap(TrunklineAdvanceDetailVO::getGoodsName, TrunklineAdvanceDetailVO::getQuantity, Integer::sum));
// countMap.keySet().forEach(goodsName -> {
// WarehouseWayBillDetail warehouseWayBillDetail = detailsMap.get(goodsName);
//
//
//
// });
List < JSONObject > jsonList = new ArrayList < > ( ) ;
list . forEach ( advanceDetailVO - > {
JSONObject json = new JSONObject ( ) ;
BigDecimal openPrice = BigDecimal . ZERO ;
json . put ( "orderPackageCode" , advanceDetailVO . getOrderPackageCode ( ) ) ;
json . put ( "orderCode" , advanceDetailVO . getOrderCode ( ) ) ;
json . put ( "productName" , advanceDetailVO . getFirstPackName ( ) ) ;
json . put ( "totalNum" , advanceDetailVO . getQuantity ( ) ) ;
json . put ( "totalWeight" , advanceDetailVO . getWeight ( ) ) ;
json . put ( "totalVolume" , advanceDetailVO . getVolume ( ) ) ;
String goodsName = advanceDetailVO . getGoodsName ( ) ;
WarehouseWayBillDetail warehouseWayBillDetail = detailsMap . get ( goodsName ) ;
if ( ! Objects . isNull ( warehouseWayBillDetail ) ) {
Integer num = warehouseWayBillDetail . getNum ( ) ;
if ( num > 0 ) {
json . put ( "freightFee" , warehouseWayBillDetail . getPrice ( ) ) ;
openPrice = openPrice . add ( warehouseWayBillDetail . getPrice ( ) ) ;
json . put ( "deliveryFee" , warehouseWayBillDetail . getDeliveryPrice ( ) ) ;
json . put ( "deliveryServiceFee" , warehouseWayBillDetail . getDeliveryPrice ( ) ) ;
openPrice = openPrice . add ( warehouseWayBillDetail . getDeliveryPrice ( ) ) ;
warehouseWayBillDetail . setNum ( num - 1 ) ;
detailsMap . put ( goodsName , warehouseWayBillDetail ) ;
}
}
json . put ( "warehouseServiceFee" , BigDecimal . ZERO ) ;
json . put ( "warehouseFee" , BigDecimal . ZERO ) ;
json . put ( "warehouseManageFee" , BigDecimal . ZERO ) ;
json . put ( "warehouseSortingFee" , BigDecimal . ZERO ) ;
json . put ( "warehouseOperatingFee" , BigDecimal . ZERO ) ;
json . put ( "pickupFee" , pickupPrice ) ;
openPrice = openPrice . add ( pickupPrice ) ;
json . put ( "deliveryLoadingFee" , BigDecimal . ZERO ) ;
json . put ( "deliverySortingFee" , BigDecimal . ZERO ) ;
json . put ( "deliveryUpfloorFee" , BigDecimal . ZERO ) ;
json . put ( "deliveryMoveFee" , BigDecimal . ZERO ) ;
json . put ( "deliveryDistance" , BigDecimal . ZERO ) ;
json . put ( "deliveryCrossingFee" , BigDecimal . ZERO ) ;
json . put ( "installFee" , installPrice ) ;
json . put ( "quotationFee" , insurancePrice ) ;
json . put ( "claimingValue" , claimingPrice ) ;
json . put ( "otherFee" , otherPrice ) ;
json . put ( "returnFee" , rebatePrice ) ;
json . put ( "thirdOprationFee" , thirdOperationPrice ) ;
json . put ( "xPay" , xPayPrice ) ;
json . put ( "dPay" , dPayPrice ) ;
json . put ( "hPay" , hPayPrice ) ;
json . put ( "yPay" , yPayPrice ) ;
openPrice = openPrice . add ( installPrice ) . add ( insurancePrice ) . add ( claimingPrice ) . add ( otherPrice ) . add ( rebatePrice ) . add ( thirdOperationPrice ) . add ( xPayPrice ) . add ( dPayPrice ) . add ( hPayPrice ) . add ( yPayPrice ) ;
json . put ( "openPrice" , openPrice ) ;
jsonList . add ( json ) ;
} ) ;
AtomicInteger atomicOtherNum = new AtomicInteger ( ) ;
List < BigDecimal > otherTotalPriceList = new ArrayList < > ( ) ;
List < BigDecimal > otherTotalDeliveryPriceList = new ArrayList < > ( ) ;
detailsMap . values ( ) . forEach ( warehouseWayBillDetail - > {
if ( warehouseWayBillDetail ! = null & & warehouseWayBillDetail . getNum ( ) > 0 ) {
Integer num = warehouseWayBillDetail . getNum ( ) ;
atomicOtherNum . addAndGet ( num ) ;
// 使用 BigDecimal 的 add 方法来正确累加总价,确保精度
otherTotalPriceList . add ( warehouseWayBillDetail . getPrice ( ) . multiply ( new BigDecimal ( num ) ) ) ;
otherTotalDeliveryPriceList . add ( warehouseWayBillDetail . getDeliveryPrice ( ) . multiply ( new BigDecimal ( num ) ) ) ;
}
} ) ;
int otherNum = atomicOtherNum . get ( ) ;
//otherTotalPriceList元素求和
BigDecimal otherTotalPrice = otherTotalPriceList . stream ( ) . reduce ( BigDecimal . ZERO , BigDecimal : : add ) ;
BigDecimal p = otherTotalPrice . divide ( new BigDecimal ( otherNum ) , 2 , RoundingMode . HALF_UP ) ;
BigDecimal otherTotalDeliveryPrice = otherTotalDeliveryPriceList . stream ( ) . reduce ( BigDecimal . ZERO , BigDecimal : : add ) ;
BigDecimal dp = otherTotalDeliveryPrice . divide ( new BigDecimal ( otherNum ) , 2 , RoundingMode . HALF_UP ) ;
jsonList . forEach ( json - > {
BigDecimal op = json . getBigDecimal ( "openPrice" ) ;
BigDecimal freightFee = json . getBigDecimal ( "freightFee" ) ;
if ( Objects . isNull ( freightFee ) ) {
json . put ( "freightFee" , p ) ;
op = op . add ( p ) ;
}
BigDecimal deliveryFee = json . getBigDecimal ( "deliveryFee" ) ;
if ( Objects . isNull ( deliveryFee ) ) {
json . put ( "deliveryFee" , dp ) ;
json . put ( "deliveryServiceFee" , dp ) ;
op = op . add ( dp ) ;
}
json . put ( "openPrice" , op ) ;
} ) ;
jsonObject . put ( "orderPackageCodes" , jsonList ) ;
} else if ( waybillType . equals ( 2 ) ) {
//零担
List < JSONObject > jsonList = new ArrayList < > ( ) ;
details . forEach ( detail - > {
Integer num = detail . getNum ( ) ;
JSONObject json = new JSONObject ( ) ;
BigDecimal openPrice = BigDecimal . ZERO ;
json . put ( "orderPackageCode" , detail . getProductName ( ) ) ;
json . put ( "orderCode" , waybillNo ) ;
json . put ( "productName" , detail . getProductName ( ) ) ;
json . put ( "totalNum" , num ) ;
json . put ( "totalWeight" , detail . getWeight ( ) ) ;
json . put ( "totalVolume" , detail . getVolume ( ) ) ;
json . put ( "freightFee" , detail . getSubtotalFreight ( ) ) ;
openPrice = openPrice . add ( detail . getSubtotalFreight ( ) ) ;
json . put ( "deliveryFee" , detail . getSubtotalDeliveryFee ( ) ) ;
openPrice = openPrice . add ( detail . getSubtotalDeliveryFee ( ) ) ;
json . put ( "warehouseServiceFee" , BigDecimal . ZERO ) ;
json . put ( "warehouseFee" , BigDecimal . ZERO ) ;
json . put ( "warehouseManageFee" , BigDecimal . ZERO ) ;
json . put ( "warehouseSortingFee" , BigDecimal . ZERO ) ;
json . put ( "warehouseOperatingFee" , BigDecimal . ZERO ) ;
json . put ( "pickupFee" , pickupPrice . multiply ( new BigDecimal ( num ) ) ) ;
openPrice = openPrice . add ( pickupPrice . multiply ( new BigDecimal ( num ) ) ) ;
json . put ( "deliveryLoadingFee" , BigDecimal . ZERO ) ;
json . put ( "deliverySortingFee" , BigDecimal . ZERO ) ;
json . put ( "deliveryUpfloorFee" , BigDecimal . ZERO ) ;
json . put ( "deliveryMoveFee" , BigDecimal . ZERO ) ;
json . put ( "deliveryDistance" , BigDecimal . ZERO ) ;
json . put ( "deliveryCrossingFee" , BigDecimal . ZERO ) ;
json . put ( "installFee" , installPrice ) ;
openPrice = openPrice . add ( installPrice . multiply ( new BigDecimal ( num ) ) ) ;
json . put ( "quotationFee" , insurancePrice ) ;
openPrice = openPrice . add ( insurancePrice . multiply ( new BigDecimal ( num ) ) ) ;
json . put ( "claimingValue" , claimingPrice ) ;
openPrice = openPrice . add ( claimingPrice . multiply ( new BigDecimal ( num ) ) ) ;
json . put ( "otherFee" , otherPrice ) ;
openPrice = openPrice . add ( otherPrice . multiply ( new BigDecimal ( num ) ) ) ;
json . put ( "returnFee" , rebatePrice ) ;
openPrice = openPrice . add ( rebatePrice . multiply ( new BigDecimal ( num ) ) ) ;
json . put ( "thirdOprationFee" , thirdOperationPrice ) ;
openPrice = openPrice . add ( thirdOperationPrice . multiply ( new BigDecimal ( num ) ) ) ;
json . put ( "xPay" , xPayPrice ) ;
openPrice = openPrice . add ( xPayPrice . multiply ( new BigDecimal ( num ) ) ) ;
json . put ( "dPay" , dPayPrice ) ;
openPrice = openPrice . add ( dPayPrice . multiply ( new BigDecimal ( num ) ) ) ;
json . put ( "hPay" , hPayPrice ) ;
openPrice = openPrice . add ( hPayPrice . multiply ( new BigDecimal ( num ) ) ) ;
json . put ( "yPay" , yPayPrice ) ;
openPrice = openPrice . add ( yPayPrice . multiply ( new BigDecimal ( num ) ) ) ;
json . put ( "openPrice" , openPrice ) ;
jsonList . add ( json ) ;
} ) ;
jsonObject . put ( "orderPackageCodes" , jsonList ) ;
}
FanoutMsg build = FanoutMsg . builder ( ) . msg ( jsonObject . toJSONString ( ) )
. exchange ( FanoutConstants . trunkline . OPENWAYBILL . EXCHANGE ) . build ( ) ;