@ -3369,7 +3369,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
// carsLoadEntity.setLoadStatus("40");
// carsLoadEntity.setArriveTime(date);
// updateById(carsLoadEntity);
baseMapper . updateArriveTime ( loadId , "40" , date , null ) ;
baseMapper . updateArriveTime ( loadId , "40" , date , warehouseId ) ;
try {
trunklineCarsLoadLogService . saveLog ( carsLoadEntity , carsLoadLineEntity , CarsLoadLogTypeConstant . END_ARRIVE_CARS_LOAD . getValue ( ) ) ;
List < String > orderPackageCodes = trunklineCarsLoadScanService . findPackageListByLoadId ( loadId ) ;
@ -5542,6 +5542,91 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
return R . success ( "滞留成功" ) ;
}
@Override
public void saveCostShareRecord ( Long loadId ) {
TrunklineCarsLoadEntity carsLoadEntity = baseMapper . selectById ( loadId ) ;
List < TrunklineCarsLoadScanEntity > scanEntities = trunklineCarsLoadScanService . findListByLoadIdOrderByCreateTimeAsc ( loadId ) ;
List < TrunklineCostShareRecordEntity > saveNewBetch = new ArrayList < > ( ) ;
List < TrunklineCostShareRecordEntity > updateList = new ArrayList < > ( ) ;
for ( TrunklineCarsLoadScanEntity scanEntity : scanEntities ) {
Integer type = scanEntity . getType ( ) ;
String waybillNo = scanEntity . getWaybillNo ( ) ;
String orderCode = scanEntity . getOrderCode ( ) ;
String scanCode = scanEntity . getScanCode ( ) ;
Integer num = scanEntity . getUnloadNum ( ) ;
Long fromWarehouseId = scanEntity . getFromWarehouseId ( ) ;
Long warehouseId = scanEntity . getWarehouseId ( ) ;
String warehouseName = scanEntity . getWarehouseName ( ) ;
Long finalNodeId = scanEntity . getFinalNodeId ( ) ;
Long unloadNodeId = scanEntity . getUnloadNodeId ( ) ;
String unloadNodeName = scanEntity . getUnloadNodeName ( ) ;
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleClient . findStockArticleByOrderCodeAndWarehouseId ( orderCode , fromWarehouseId ) ;
WarehouseWaybillEntity waybillEntity = warehouseWaybillClient . findByWaybillNo ( waybillNo ) ;
if ( Objects . isNull ( waybillEntity ) ) {
log . warn ( "##############saveCostShareRecord: 运单信息不存在 waybillNo={}" , waybillNo ) ;
continue ;
}
Long waybillId = waybillEntity . getId ( ) ;
Long departureWarehouseId = waybillEntity . getDepartureWarehouseId ( ) ;
String departureWarehouseName = waybillEntity . getDepartureWarehouseName ( ) ;
Long destinationWarehouseId = waybillEntity . getDestinationWarehouseId ( ) ;
String destinationWarehouseName = waybillEntity . getDestinationWarehouseName ( ) ;
TrunklineCostShareRecordEntity trunklineCostShareRecordEntity = null ;
if ( type . equals ( 1 ) ) {
trunklineCostShareRecordEntity = trunklineCostShareRecordService . findPackageDataByLoadIdAndCode ( scanCode , loadId , AuthUtil . getTenantId ( ) ) ;
}
if ( Objects . isNull ( trunklineCostShareRecordEntity ) ) {
trunklineCostShareRecordEntity = new TrunklineCostShareRecordEntity ( ) ;
trunklineCostShareRecordEntity . setLoadId ( loadId ) ;
trunklineCostShareRecordEntity . setCarsNo ( carsLoadEntity . getCarsNo ( ) ) ;
trunklineCostShareRecordEntity . setWaybillId ( waybillId ) ;
trunklineCostShareRecordEntity . setWaybillNo ( waybillNo ) ;
if ( ! Objects . isNull ( stockArticleEntity ) ) {
trunklineCostShareRecordEntity . setOrderId ( stockArticleEntity . getId ( ) ) ;
}
trunklineCostShareRecordEntity . setOrderCode ( orderCode ) ;
trunklineCostShareRecordEntity . setProductType ( type ) ;
trunklineCostShareRecordEntity . setProductCode ( scanCode ) ;
trunklineCostShareRecordEntity . setNum ( num ) ;
trunklineCostShareRecordEntity . setLoadingWarehouseId ( warehouseId ) ;
trunklineCostShareRecordEntity . setLoadingWarehouseName ( warehouseName ) ;
trunklineCostShareRecordEntity . setPlanUnloadWarehouseId ( finalNodeId ) ;
BasicdataWarehouseEntity finalWarehouse = basicdataWarehouseClient . getEntityWarehouseId ( finalNodeId ) ;
if ( ! Objects . isNull ( finalWarehouse ) ) {
trunklineCostShareRecordEntity . setPlanUnloadWarehouseName ( finalWarehouse . getName ( ) ) ;
}
trunklineCostShareRecordEntity . setRealUnloadWarehouseId ( unloadNodeId ) ;
trunklineCostShareRecordEntity . setRealUnloadWarehouseName ( unloadNodeName ) ;
trunklineCostShareRecordEntity . setWaybillStartWarehouseId ( departureWarehouseId ) ;
trunklineCostShareRecordEntity . setWaybillStartWarehouseName ( departureWarehouseName ) ;
trunklineCostShareRecordEntity . setWaybillEndWarehouseId ( destinationWarehouseId ) ;
trunklineCostShareRecordEntity . setWaybillEndWarehouseName ( destinationWarehouseName ) ;
saveNewBetch . add ( trunklineCostShareRecordEntity ) ;
} else {
trunklineCostShareRecordEntity . setRealUnloadWarehouseId ( scanEntity . getUnloadNodeId ( ) ) ;
trunklineCostShareRecordEntity . setRealUnloadWarehouseName ( scanEntity . getUnloadNodeName ( ) ) ;
updateList . add ( trunklineCostShareRecordEntity ) ;
}
}
if ( CollUtil . isNotEmpty ( saveNewBetch ) ) {
trunklineCostShareRecordService . saveBatch ( saveNewBetch ) ;
}
if ( CollUtil . isNotEmpty ( updateList ) ) {
trunklineCostShareRecordService . updateBatchById ( updateList ) ;
}
}
private void updateParcelListToWarehouse ( TrunklineAdvanceDetailEntity advanceDetailEntity , Long warehouseId , String status ) {
String orderPackageCode = advanceDetailEntity . getOrderPackageCode ( ) ;
String orderCode = advanceDetailEntity . getOrderCode ( ) ;
@ -5783,6 +5868,15 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
return R . fail ( 405 , "配载计划信息为空" ) ;
}
BigDecimal countTransportCost = carsLoadEntity . getCountTransportCost ( ) ;
Integer unloadNumber = carsLoadEntity . getUnloadNumber ( ) ;
BigDecimal freightPrice ;
if ( ! NumberUtil . equals ( unloadNumber , 0 ) ) {
freightPrice = countTransportCost . divide ( new BigDecimal ( unloadNumber ) , 2 , RoundingMode . HALF_UP ) ;
} else {
freightPrice = BigDecimal . ZERO ;
}
List < TrunklineCarsLoadLineEntity > loadLineList = trunklineCarsLoadLineService . findListByLoadId ( loadId ) ;
TrunklineCarsLoadVO trunklineCarsLoadVO = new TrunklineCarsLoadVO ( ) ;
@ -5791,164 +5885,387 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
trunklineCarsLoadVO . setCarsLoadLineList ( loadLineList ) ;
List < String > orderCodeString = new ArrayList < > ( ) ;
//所有车辆配载计划
List < TrunklineCarsOrderEntity > carsOrderList = trunklineCarsOrderService . findListByLoadId ( loadId ) ;
//把carsOrderList中所有waybillNo放入一个List
Set < String > planWaybillNoSet = carsOrderList . stream ( ) . map ( TrunklineCarsOrderEntity : : getWaybillNo ) . collect ( Collectors . toSet ( ) ) ;
//把carsOrderList通过waybillNo进行分组
Map < String , List < TrunklineCarsOrderEntity > > carsOrderMapByWaybillNo = carsOrderList . stream ( ) . filter ( item - > StringUtil . isNotBlank ( item . getWaybillNo ( ) ) ) . collect ( Collectors . groupingBy ( TrunklineCarsOrderEntity : : getWaybillNo ) ) ;
List < CarsLoadWaybillInfoVO > carsLoadWaybillInfoList = trunklineCarsOrderService . findWaybillOrderByloadId ( loadId ) ;
for ( CarsLoadWaybillInfoVO carsLoadWaybillInfoVO : carsLoadWaybillInfoList ) {
String waybillNo = carsLoadWaybillInfoVO . getWaybillNo ( ) ;
List < WarehouseWayBillDetail > wayBillDetails = warehouseWaybillDetailClient . findListByWaybillNo ( waybillNo ) ;
String openPrice = null ;
String productNames = null ;
for ( WarehouseWayBillDetail wayBillDetail : wayBillDetails ) {
String productName = wayBillDetail . getProductName ( ) ;
Integer num = wayBillDetail . getNum ( ) ;
BigDecimal price = wayBillDetail . getPrice ( ) ;
if ( StringUtil . isBlank ( openPrice ) ) {
openPrice = price . toPlainString ( ) ;
} else {
openPrice = openPrice + "," + price . toPlainString ( ) ;
}
if ( StringUtil . isBlank ( productNames ) ) {
productNames = productName + "(" + num + ")" ;
} else {
productNames = productNames + "," + productName + "(" + num + ")" ;
}
}
carsLoadWaybillInfoVO . setOpenPrice ( openPrice ) ;
carsLoadWaybillInfoVO . setGoodsName ( productNames ) ;
//所有车辆配载实际装车
List < TrunklineCarsLoadScanVO > loadScanList = trunklineCarsLoadScanService . findListAndPriceByLoadId ( loadId ) ;
//把carsOrderList中所有waybillNo放入一个List
Set < String > realWaybillNoSet = loadScanList . stream ( ) . filter ( item - > StringUtil . isNotBlank ( item . getWaybillNo ( ) ) ) . map ( TrunklineCarsLoadScanVO : : getWaybillNo ) . collect ( Collectors . toSet ( ) ) ;
//把loadScanList通过waybillNo分组
Map < String , List < TrunklineCarsLoadScanVO > > loadScanMapByWaybillNo = loadScanList . stream ( ) . filter ( item - > StringUtil . isNotBlank ( item . getWaybillNo ( ) ) ) . collect ( Collectors . groupingBy ( TrunklineCarsLoadScanVO : : getWaybillNo ) ) ;
// List<CarsLoadOrderInfoVO> carsLoadOrderInfoList = trunklineCarsOrderService.findCarsLoadOrderInfoList(loadId, waybillNo);
List < CarsLoadOrderInfoVO > carsLoadOrderInfoListPlan = trunklineCarsOrderService . findCarsLoadOrderInfoListPlan ( loadId , waybillNo ) ;
//提出loadScanList中运单号为空的记录
List < TrunklineCarsLoadScanVO > noWaybillLoadScanList = loadScanList . stream ( ) . filter ( item - > StringUtil . isBlank ( item . getWaybillNo ( ) ) ) . collect ( Collectors . toList ( ) ) ;
carsLoadOrderInfoListPlan . forEach ( carsLoadOrderInfoVO - > {
orderCodeString . add ( carsLoadOrderInfoVO . getOrderCode ( ) ) ;
carsLoadOrderInfoVO . setUnloadIncome ( carsLoadOrderInfoVO . getUnloadIncome ( ) . setScale ( 2 , BigDecimal . ROUND_HALF_UP ) ) ;
carsLoadOrderInfoVO . setOrderFreight ( carsLoadOrderInfoVO . getOrderFreight ( ) . setScale ( 2 , BigDecimal . ROUND_HALF_UP ) ) ;
} ) ;
//先把所有需要查询的运单信息查出来
Set < String > allWaybillNoSet = new HashSet < > ( ) ;
allWaybillNoSet . addAll ( planWaybillNoSet ) ;
allWaybillNoSet . addAll ( realWaybillNoSet ) ;
List < WarehouseWaybillVO > warehouseWaybillVOS = warehouseWaybillClient . findWaybillVOByWaybillNoSet ( allWaybillNoSet ) ;
//查询出所有运单下订单的品类信息
List < OrderGoodsInfoVO > orderGoodsInfoVOList = waybillPackageService . findOrderGoodsInfoList ( allWaybillNoSet ) ;
//把orderGoodsInfoVOList通过运单号进行分组
Map < String , List < OrderGoodsInfoVO > > orderGoodsInfoMapByWaybillNo = orderGoodsInfoVOList . stream ( ) . filter ( item - > StringUtil . isNotBlank ( item . getWaybillNo ( ) ) ) . collect ( Collectors . groupingBy ( OrderGoodsInfoVO : : getWaybillNo ) ) ;
carsLoadWaybillInfoVO . setCarsLoadOrderInfoList ( carsLoadOrderInfoListPlan ) ;
// carsLoadWaybillInfoVO.setCarsLoadOrderInfoListPlan(carsLoadOrderInfoListPlan);
List < CarsLoadWaybillInfoVO > carsLoadWaybillInfoVOList = new ArrayList < > ( ) ;
TrunklineCostShareRecordEntity costShareRecordEntity = trunklineCostShareRecordService . findTotalUnloadNumByLoadAndWaybillNo ( loadId , waybillNo ) ;
carsLoadWaybillInfoVO . setCostPiece ( costShareRecordEntity . getCostPiece ( ) ) ;
carsLoadWaybillInfoVO . setCostZhang ( costShareRecordEntity . getCostZhang ( ) ) ;
carsLoadWaybillInfoVO . setCostNum ( costShareRecordEntity . getNum ( ) ) ;
}
warehouseWaybillVOS . forEach ( item - > {
CarsLoadWaybillInfoVO carsLoadWaybillInfoVO = new CarsLoadWaybillInfoVO ( ) ;
BeanUtil . copy ( item , carsLoadWaybillInfoVO ) ;
String waybillNo = carsLoadWaybillInfoVO . getWaybillNo ( ) ;
Integer waybillNum = carsLoadWaybillInfoVO . getWaybillNum ( ) ;
String goodsName = carsLoadWaybillInfoVO . getGoodsName ( ) ;
String productPrice = carsLoadWaybillInfoVO . getProductPrice ( ) ;
String productNum = carsLoadWaybillInfoVO . getProductNum ( ) ;
String productVolume = carsLoadWaybillInfoVO . getProductVolume ( ) ;
String productWeight = carsLoadWaybillInfoVO . getProductWeight ( ) ;
String chargeTypes = carsLoadWaybillInfoVO . getChargeTypes ( ) ;
String [ ] nameArray = goodsName . split ( "," ) ;
String [ ] priceArray = productPrice . split ( "," ) ;
String [ ] numArray = productNum . split ( "," ) ;
String [ ] volumeArray = productVolume . split ( "," ) ;
String [ ] weightArray = productWeight . split ( "," ) ;
String [ ] chargeTypeArray = chargeTypes . split ( "," ) ;
List < OrderGoodsInfoVO > orderGoodsInfoVOList1 = orderGoodsInfoMapByWaybillNo . get ( waybillNo ) ;
//把orderGoodsInfoVOList1转化成以orderCode为key的map
Map < String , List < OrderGoodsInfoVO > > orderGoodsInfoMapByOrderCode = orderGoodsInfoVOList1 . stream ( ) . filter ( item1 - > StringUtil . isNotBlank ( item1 . getOrderCode ( ) ) ) . collect ( Collectors . groupingBy ( OrderGoodsInfoVO : : getOrderCode ) ) ;
//计算每个品类的单个价格 体积 重量
Map < String , String > priceMap = new HashMap < > ( ) ;
Map < String , String > volumeMap = new HashMap < > ( ) ;
Map < String , String > weightMap = new HashMap < > ( ) ;
Map < String , String > chargeTypeMap = new HashMap < > ( ) ;
for ( int i = 0 ; i < nameArray . length ; i + + ) {
priceMap . put ( nameArray [ i ] , priceArray [ i ] ) ;
String num = numArray [ i ] ;
String volume = volumeArray [ i ] ;
String weight = weightArray [ i ] ;
volumeMap . put ( nameArray [ i ] , new BigDecimal ( volume ) . divide ( new BigDecimal ( num ) , 8 , RoundingMode . HALF_UP ) . toPlainString ( ) ) ;
weightMap . put ( nameArray [ i ] , new BigDecimal ( weight ) . divide ( new BigDecimal ( num ) , 8 , RoundingMode . HALF_UP ) . toPlainString ( ) ) ;
chargeTypeMap . put ( nameArray [ i ] , chargeTypeArray [ i ] ) ;
}
List < CarsLoadOrderInfoVO > resulOrderList = new ArrayList < > ( ) ;
//查询异常的数据
List < CarsLoadScanAbnormalVO > carsLoadScanAbnormalList = trunklineCarsLoadScanService . findAbnormalData ( loadId ) ;
if ( ! carsLoadScanAbnormalList . isEmpty ( ) ) {
List < TrunklineCarsOrderEntity > carsOrderEntityList = carsOrderMapByWaybillNo . get ( waybillNo ) ; //计划订单列表
List < CarsLoadOrderInfoVO > carsLoadOrderInfoVOList = new ArrayList < > ( ) ;
if ( CollUtil . isNotEmpty ( carsOrderEntityList ) ) {
carsOrderEntityList . forEach ( carsOrderEntity - > {
Integer realNum = carsOrderEntity . getRealNum ( ) ;
String orderCode = carsOrderEntity . getOrderCode ( ) ;
List < OrderGoodsInfoVO > orderGoodsInfoVOList2 = orderGoodsInfoMapByOrderCode . get ( orderCode ) ;
CarsLoadOrderInfoVO carsLoadOrderInfoVO = new CarsLoadOrderInfoVO ( ) ;
carsLoadOrderInfoVO . setOrderCode ( orderCode ) ;
carsLoadOrderInfoVO . setWaybillNo ( waybillNo ) ;
carsLoadOrderInfoVO . setOrderNum ( carsOrderEntity . getTotalNum ( ) ) ;
carsLoadOrderInfoVO . setPlanNum ( carsOrderEntity . getPlanNum ( ) ) ;
carsLoadOrderInfoVO . setLoadingNum ( realNum ) ;
carsLoadOrderInfoVO . setUnloadNum ( carsOrderEntity . getUnloadNum ( ) ) ;
carsLoadOrderInfoVO . setSignNum ( carsOrderEntity . getSignNum ( ) ) ;
if ( CollUtil . isNotEmpty ( orderGoodsInfoVOList2 ) ) {
String goodsListStr = orderGoodsInfoVOList2 . stream ( ) . map ( t - > t . getOriginOrderGoodsName ( ) ) . collect ( Collectors . joining ( "," ) ) ;
String goodsNumListStr = orderGoodsInfoVOList2 . stream ( ) . map ( t - > t . getOriginOrderGoodsNum ( ) ) . collect ( Collectors . joining ( "," ) ) ;
carsLoadOrderInfoVO . setOriginOrderGoodsName ( goodsListStr ) ;
carsLoadOrderInfoVO . setOriginOrderGoodsNum ( goodsNumListStr ) ;
}
carsLoadOrderInfoVO . setOrderFreight ( freightPrice . multiply ( new BigDecimal ( realNum ) ) . setScale ( 2 , RoundingMode . HALF_UP ) ) ;
carsLoadOrderInfoVOList . add ( carsLoadOrderInfoVO ) ;
} ) ;
}
// 这里需要 排除掉前面有计划的 且已经加入了当前这个配载信息集合里面的数据
//把carsLoadOrderInfoVOList转化成以orderCode为key的Map
Map < String , CarsLoadOrderInfoVO > carsLoadOrderInfoVOMap = carsLoadOrderInfoVOList . stream ( ) . collect ( Collectors . toMap ( CarsLoadOrderInfoVO : : getOrderCode , Function . identity ( ) ) ) ;
List < TrunklineCarsLoadScanVO > trunklineCarsLoadScanEntities = loadScanMapByWaybillNo . get ( waybillNo ) ; //订单实际装车
if ( CollUtil . isNotEmpty ( trunklineCarsLoadScanEntities ) ) {
//把trunklineCarsLoadScanEntities通过orderCode分组
Map < String , List < TrunklineCarsLoadScanVO > > trunklineCarsLoadScanMapByOrderCode = trunklineCarsLoadScanEntities . stream ( ) . collect ( Collectors . groupingBy ( TrunklineCarsLoadScanVO : : getOrderCode ) ) ;
//把carsLoadScanAbnormalList过滤waybillNo等于--的数据后把waybillNo放入一个Set
Set < String > waybillNoSet = carsLoadScanAbnormalList . stream ( ) . filter ( carsLoadScanAbnormalVO - > ! "--" . equals ( carsLoadScanAbnormalVO . getWaybillNo ( ) ) )
. map ( CarsLoadScanAbnormalVO : : getWaybillNo )
. collect ( Collectors . toSet ( ) ) ;
trunklineCarsLoadScanMapByOrderCode . keySet ( ) . forEach ( orderCode - > {
List < WarehouseWaybillEntity > waybillEntityList = warehouseWaybillClient . findWaybillBilllByWaybillNos ( new ArrayList < > ( waybillNoSet ) ) ;
//把waybillEntityList转化成以waybillNo为key的map
Map < String , WarehouseWaybillEntity > waybillEntityMap = waybillEntityList . stream ( ) . collect ( Collectors . toMap ( WarehouseWaybillEntity : : getWaybillNo , Function . identity ( ) ) ) ;
//把carsLoadScanAbnormalList通过waybillNo分组
Map < String , List < CarsLoadScanAbnormalVO > > carsLoadScanAbnormalMap = carsLoadScanAbnormalList . stream ( ) . collect ( Collectors . groupingBy ( CarsLoadScanAbnormalVO : : getWaybillNo ) ) ;
carsLoadScanAbnormalMap . keySet ( ) . forEach ( waybillNo - > {
List < CarsLoadScanAbnormalVO > carsLoadScanAbnormalVOS = carsLoadScanAbnormalMap . get ( waybillNo ) ;
WarehouseWaybillEntity warehouseWaybillEntity = waybillEntityMap . get ( waybillNo ) ;
BigDecimal freightPrice = BigDecimal . ZERO ;
CarsLoadWaybillInfoVO carsLoadWaybillInfoVO = new CarsLoadWaybillInfoVO ( ) ;
carsLoadWaybillInfoVO . setWaybillNo ( waybillNo ) ;
if ( ! "--" . equals ( waybillNo ) ) {
if ( ! Objects . isNull ( warehouseWaybillEntity ) ) {
Integer totalCount = warehouseWaybillEntity . getTotalCount ( ) ;
carsLoadWaybillInfoVO . setCreateTime ( warehouseWaybillEntity . getCreateTime ( ) ) ;
carsLoadWaybillInfoVO . setDestination ( warehouseWaybillEntity . getDestination ( ) ) ;
carsLoadWaybillInfoVO . setDestinationWarehouseName ( warehouseWaybillEntity . getDestinationWarehouseName ( ) ) ;
carsLoadWaybillInfoVO . setShipper ( warehouseWaybillEntity . getShipper ( ) ) ;
carsLoadWaybillInfoVO . setShipperName ( warehouseWaybillEntity . getShipperName ( ) ) ;
carsLoadWaybillInfoVO . setConsignee ( warehouseWaybillEntity . getConsignee ( ) ) ;
carsLoadWaybillInfoVO . setConsigneeName ( warehouseWaybillEntity . getConsigneeName ( ) ) ;
carsLoadWaybillInfoVO . setWaybillNum ( totalCount ) ;
carsLoadWaybillInfoVO . setWaybillType ( warehouseWaybillEntity . getWaybillType ( ) ) ;
carsLoadWaybillInfoVO . setWaybillId ( warehouseWaybillEntity . getId ( ) ) ;
carsLoadWaybillInfoVO . setRemark ( warehouseWaybillEntity . getRemark ( ) ) ;
BigDecimal totalFreight = warehouseWaybillEntity . getTotalFreight ( ) ;
BigDecimal deliveryFee = warehouseWaybillEntity . getDeliveryFee ( ) ;
BigDecimal pickupFee = warehouseWaybillEntity . getPickupFee ( ) ;
BigDecimal warehouseManagementFee = warehouseWaybillEntity . getWarehouseManagementFee ( ) ;
BigDecimal storageFee = warehouseWaybillEntity . getStorageFee ( ) ;
BigDecimal handlingFee = warehouseWaybillEntity . getHandlingFee ( ) ;
BigDecimal otherFee = warehouseWaybillEntity . getOtherFee ( ) ;
BigDecimal insuranceFee = warehouseWaybillEntity . getInsuranceFee ( ) ;
carsLoadWaybillInfoVO . setTotalFreight ( totalFreight ) ;
carsLoadWaybillInfoVO . setDeliveryFee ( deliveryFee ) ;
carsLoadWaybillInfoVO . setPickupFee ( pickupFee ) ;
carsLoadWaybillInfoVO . setWarehouseManagementFee ( warehouseManagementFee ) ;
carsLoadWaybillInfoVO . setStorageFee ( storageFee ) ;
carsLoadWaybillInfoVO . setHandlingFee ( handlingFee ) ;
carsLoadWaybillInfoVO . setOtherFee ( otherFee ) ;
carsLoadWaybillInfoVO . setInsuranceFee ( insuranceFee ) ;
carsLoadWaybillInfoVO . setOpenPrice ( totalFreight . divide ( new BigDecimal ( totalCount ) , 2 , RoundingMode . HALF_UP ) . toPlainString ( ) ) ;
carsLoadWaybillInfoVO . setTotalFee ( totalFreight . add ( deliveryFee ) . add ( pickupFee ) . add ( warehouseManagementFee ) . add ( storageFee ) . add ( handlingFee ) . add ( otherFee ) . add ( insuranceFee ) ) ;
TrunklineCostShareRecordEntity costShareRecordEntity = trunklineCostShareRecordService . findTotalUnloadNumByLoadAndWaybillNo ( loadId , waybillNo ) ;
carsLoadWaybillInfoVO . setCostPiece ( costShareRecordEntity . getCostPiece ( ) ) ;
carsLoadWaybillInfoVO . setCostZhang ( costShareRecordEntity . getCostZhang ( ) ) ;
carsLoadWaybillInfoVO . setCostNum ( costShareRecordEntity . getNum ( ) ) ;
freightPrice = totalFreight . divide ( BigDecimal . valueOf ( warehouseWaybillEntity . getTotalCount ( ) ) , 4 , RoundingMode . HALF_UP ) ;
}
}
List < TrunklineCarsLoadScanVO > trunklineCarsLoadScanListByOrderCode = trunklineCarsLoadScanMapByOrderCode . get ( orderCode ) ; //订单实际装车
//把trunklineCarsLoadScanListByOrderCode中所有元素num求和,num为空用0代替
Integer loadingNum = trunklineCarsLoadScanListByOrderCode . stream ( ) . filter ( t - > ! Objects . isNull ( t . getWarehouseId ( ) ) ) . map ( TrunklineCarsLoadScanVO : : getNum ) . reduce ( 0 , Integer : : sum ) ;
Integer unloadNum = trunklineCarsLoadScanListByOrderCode . stream ( ) . map ( TrunklineCarsLoadScanVO : : getUnloadNum ) . reduce ( 0 , Integer : : sum ) ;
Integer signNum = trunklineCarsLoadScanListByOrderCode . stream ( ) . filter ( t - > t . getScanStatus ( ) . equals ( "3" ) ) . map ( TrunklineCarsLoadScanVO : : getUnloadNum ) . reduce ( 0 , Integer : : sum ) ;
List < CarsLoadOrderInfoVO > carsLoadOrderInfoList = new ArrayList < > ( ) ;
BigDecimal finalFreightPrice = freightPrice ;
carsLoadScanAbnormalVOS . forEach ( carsLoadScanAbnormalVO - > {
CarsLoadOrderInfoVO carsLoadOrderInfoVO = new CarsLoadOrderInfoVO ( ) ;
carsLoadOrderInfoVO . setOrderCode ( carsLoadScanAbnormalVO . getOrderCode ( ) ) ;
if ( ! orderCodeString . contains ( carsLoadScanAbnormalVO . getOrderCode ( ) ) ) {
CarsLoadOrderInfoVO carsLoadOrderInfoVO = carsLoadOrderInfoVOMap . get ( orderCode ) ;
if ( Objects . isNull ( carsLoadOrderInfoVO ) ) {
carsLoadOrderInfoVO = new CarsLoadOrderInfoVO ( ) ;
carsLoadOrderInfoVO . setOrderCode ( orderCode ) ;
List < OrderGoodsInfoVO > orderGoodsInfoVOList2 = orderGoodsInfoMapByOrderCode . get ( orderCode ) ;
carsLoadOrderInfoVO . setWaybillNo ( waybillNo ) ;
carsLoadOrderInfoVO . setLoadingNum ( carsLoadScanAbnormalVO . getLoadingNum ( ) ) ;
carsLoadOrderInfoVO . setUnloadNum ( carsLoadScanAbnormalVO . getUnloadNum ( ) ) ;
BigDecimal unloadIncome = finalFreightPrice . multiply ( BigDecimal . valueOf ( carsLoadScanAbnormalVO . getUnloadNum ( ) ) ) ;
carsLoadOrderInfoVO . setUnloadIncome ( unloadIncome . setScale ( 2 , BigDecimal . ROUND_UP ) ) ;
carsLoadOrderInfoVO . setPlanNum ( 0 ) ;
String orderCode = carsLoadScanAbnormalVO . getOrderCode ( ) ;
if ( "--" . equals ( waybillNo ) | | "--" . equals ( orderCode ) ) {
carsLoadOrderInfoVO . setOrderNum ( 0 ) ;
carsLoadOrderInfoVO . setOrderFreight ( BigDecimal . ZERO . setScale ( 2 , BigDecimal . ROUND_UP ) ) ;
TrunklineWaybillOrderEntity trunklineWaybillOrder = trunklineWaybillOrderService . findEntityByWaybillNoAndOrderCode ( waybillNo , orderCode ) ;
if ( ! Objects . isNull ( trunklineWaybillOrder ) ) {
carsLoadOrderInfoVO . setOrderNum ( trunklineWaybillOrder . getTotalNumber ( ) ) ;
} else {
Integer num = trunklineWaybillOrderService . findTotalNumByWaybillAndOrderCode ( waybillNo , orderCode ) ;
carsLoadOrderInfoVO . setOrderNum ( num ) ;
carsLoadOrderInfoVO . setOrderFreight ( finalFreightPrice . multiply ( new BigDecimal ( num ) ) . setScale ( 2 , BigDecimal . ROUND_UP ) ) ;
Integer totalNumber = advanceService . findTotalNumByWaybillNoAndOrderCode ( waybillNo , orderCode ) ;
if ( Objects . isNull ( totalNumber ) ) {
carsLoadOrderInfoVO . setOrderNum ( 0 ) ;
} else {
carsLoadOrderInfoVO . setOrderNum ( totalNumber ) ;
}
}
carsLoadOrderInfoVO . setLoadingNum ( loadingNum ) ;
carsLoadOrderInfoVO . setUnloadNum ( unloadNum ) ;
carsLoadOrderInfoVO . setSignNum ( signNum ) ;
if ( CollUtil . isNotEmpty ( orderGoodsInfoVOList2 ) ) {
String goodsListStr = orderGoodsInfoVOList2 . stream ( ) . map ( t - > t . getOriginOrderGoodsName ( ) ) . collect ( Collectors . joining ( "," ) ) ;
String goodsNumListStr = orderGoodsInfoVOList2 . stream ( ) . map ( t - > t . getOriginOrderGoodsNum ( ) ) . collect ( Collectors . joining ( "," ) ) ;
carsLoadOrderInfoVO . setOriginOrderGoodsName ( goodsListStr ) ;
carsLoadOrderInfoVO . setOriginOrderGoodsNum ( goodsNumListStr ) ;
}
TrunklineCostShareRecordEntity orderCostShareRecordEntity = trunklineCostShareRecordService . findTotalUnloadNumByLoadAndWaybillNoAndOrderCode ( loadId , waybillNo , orderCode ) ;
carsLoadOrderInfoVO . setCostZhang ( orderCostShareRecordEntity . getCostZhang ( ) ) ;
carsLoadOrderInfoVO . setCostPiece ( orderCostShareRecordEntity . getCostPiece ( ) ) ;
// carsLoadOrderInfoVO.setWeight(BigDecimal.ZERO);
// carsLoadOrderInfoVO.setVolume(BigDecimal.ZERO);
carsLoadOrderInfoList . add ( carsLoadOrderInfoVO ) ;
carsLoadOrderInfoVO . setOrderFreight ( freightPrice . multiply ( new BigDecimal ( loadingNum ) ) . setScale ( 2 , RoundingMode . HALF_UP ) ) ;
} else {
carsLoadOrderInfoVO . setLoadingNum ( loadingNum ) ;
carsLoadOrderInfoVO . setUnloadNum ( unloadNum ) ;
carsLoadOrderInfoVO . setSignNum ( signNum ) ;
}
carsLoadOrderInfoVOMap . put ( orderCode , carsLoadOrderInfoVO ) ;
//把trunklineCarsLoadScanListByOrderCode通过type分组
Map < Integer , List < TrunklineCarsLoadScanVO > > trunklineCarsLoadScanMapByType = trunklineCarsLoadScanListByOrderCode . stream ( ) . collect ( Collectors . groupingBy ( TrunklineCarsLoadScanVO : : getType ) ) ;
AtomicReference < BigDecimal > totalIncomingParice = new AtomicReference < > ( BigDecimal . ZERO ) ;
AtomicReference < BigDecimal > totalVolume = new AtomicReference < > ( BigDecimal . ZERO ) ;
AtomicReference < BigDecimal > totalWeight = new AtomicReference < > ( BigDecimal . ZERO ) ;
Map < String , Integer > goodsByNum = new HashMap < > ( ) ;
Map < String , BigDecimal > goodsByVolume = new HashMap < > ( ) ;
Map < String , BigDecimal > goodsByWeight = new HashMap < > ( ) ;
trunklineCarsLoadScanMapByType . keySet ( ) . forEach ( type - > {
List < TrunklineCarsLoadScanVO > trunklineCarsLoadScanVOS = trunklineCarsLoadScanMapByType . get ( type ) ;
if ( NumberUtil . equals ( type , 1 ) ) {
//订制品
trunklineCarsLoadScanVOS . forEach ( trunklineCarsLoadScanVO - > {
String gn = trunklineCarsLoadScanVO . getGoodsName ( ) ;
Integer num = trunklineCarsLoadScanVO . getNum ( ) ;
Integer unloadNum1 = trunklineCarsLoadScanVO . getUnloadNum ( ) ;
if ( Objects . isNull ( unloadNum1 ) ) {
unloadNum1 = 0 ;
}
String price = priceMap . get ( gn ) ;
if ( StrUtil . isBlank ( price ) ) {
price = "0" ;
}
String oneVolume = volumeMap . get ( gn ) ;
if ( StrUtil . isBlank ( oneVolume ) ) {
oneVolume = "0" ;
}
String oneWeight = weightMap . get ( gn ) ;
if ( StrUtil . isBlank ( oneWeight ) ) {
oneWeight = "0" ;
}
String chargeType = chargeTypeMap . get ( gn ) ;
if ( StringUtil . isBlank ( chargeType ) ) {
chargeType = "1" ;
}
if ( "1" . equals ( chargeType ) ) {
totalIncomingParice . set ( totalIncomingParice . get ( ) . add ( new BigDecimal ( price ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ) ;
} else if ( "2" . equals ( chargeType ) ) {
totalIncomingParice . set ( totalIncomingParice . get ( ) . add ( new BigDecimal ( price ) . multiply ( new BigDecimal ( oneVolume ) ) ) ) ;
} else if ( "3" . equals ( chargeType ) ) {
totalIncomingParice . set ( totalIncomingParice . get ( ) . add ( new BigDecimal ( price ) . multiply ( new BigDecimal ( oneWeight ) ) ) ) ;
}
totalVolume . set ( totalVolume . get ( ) . add ( new BigDecimal ( oneVolume ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ) ;
totalWeight . set ( totalWeight . get ( ) . add ( new BigDecimal ( oneWeight ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ) ;
Integer n = goodsByNum . get ( gn ) ;
if ( Objects . isNull ( n ) ) {
goodsByNum . put ( gn , num ) ;
} else {
goodsByNum . put ( gn , n + num ) ;
}
BigDecimal v = goodsByVolume . get ( gn ) ;
if ( Objects . isNull ( v ) ) {
goodsByVolume . put ( gn , new BigDecimal ( oneVolume ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ;
} else {
goodsByVolume . put ( gn , v . add ( new BigDecimal ( oneVolume ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ) ;
}
BigDecimal w = goodsByWeight . get ( gn ) ;
if ( Objects . isNull ( w ) ) {
goodsByWeight . put ( gn , new BigDecimal ( oneWeight ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ;
} else {
goodsByWeight . put ( gn , w . add ( new BigDecimal ( oneWeight ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ) ;
}
} ) ;
} else if ( NumberUtil . equals ( type , 2 ) ) {
trunklineCarsLoadScanVOS . forEach ( trunklineCarsLoadScanVO - > {
// String scanCode = trunklineCarsLoadScanVO.getScanCode();
// Integer num = trunklineCarsLoadScanVO.getNum();
// Integer unloadNum1 = trunklineCarsLoadScanVO.getUnloadNum();
Long scanId = trunklineCarsLoadScanVO . getId ( ) ;
List < TrunklineScanZeroDetailVO > zeroDetailVOList = scanZeroDetailService . findListByCarsLoadScanId ( scanId ) ;
zeroDetailVOList . forEach ( zeroDetailVO - > {
Integer unloadNum1 = zeroDetailVO . getUnloadNum ( ) ;
String goodsName1 = zeroDetailVO . getGoodsName ( ) ;
if ( Objects . isNull ( unloadNum1 ) ) {
unloadNum1 = 0 ;
}
String price = priceMap . get ( goodsName1 ) ;
if ( StrUtil . isBlank ( price ) ) {
price = "0" ;
}
String oneVolume = volumeMap . get ( goodsName1 ) ;
if ( StrUtil . isBlank ( oneVolume ) ) {
oneVolume = "0" ;
}
String oneWeight = weightMap . get ( goodsName1 ) ;
if ( StrUtil . isBlank ( oneWeight ) ) {
oneWeight = "0" ;
}
String chargeType = chargeTypeMap . get ( goodsName1 ) ;
if ( StringUtil . isBlank ( chargeType ) ) {
chargeType = "1" ;
}
if ( "1" . equals ( chargeType ) ) {
totalIncomingParice . set ( totalIncomingParice . get ( ) . add ( new BigDecimal ( price ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ) ;
} else if ( "2" . equals ( chargeType ) ) {
totalIncomingParice . set ( totalIncomingParice . get ( ) . add ( new BigDecimal ( price ) . multiply ( new BigDecimal ( oneVolume ) ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ) ;
} else if ( "3" . equals ( chargeType ) ) {
totalIncomingParice . set ( totalIncomingParice . get ( ) . add ( new BigDecimal ( price ) . multiply ( new BigDecimal ( oneWeight ) ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ) ;
}
totalVolume . set ( totalVolume . get ( ) . add ( new BigDecimal ( oneVolume ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ) ;
totalWeight . set ( totalWeight . get ( ) . add ( new BigDecimal ( oneWeight ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ) ;
Integer n = goodsByNum . get ( goodsName1 ) ;
if ( Objects . isNull ( n ) ) {
goodsByNum . put ( goodsName1 , unloadNum1 ) ;
} else {
goodsByNum . put ( goodsName1 , n + unloadNum1 ) ;
}
BigDecimal v = goodsByVolume . get ( goodsName1 ) ;
if ( Objects . isNull ( v ) ) {
goodsByVolume . put ( goodsName1 , new BigDecimal ( oneVolume ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ;
} else {
goodsByVolume . put ( goodsName1 , v . add ( new BigDecimal ( oneVolume ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ) ;
}
BigDecimal w = goodsByWeight . get ( goodsName1 ) ;
if ( Objects . isNull ( w ) ) {
goodsByWeight . put ( goodsName1 , new BigDecimal ( oneWeight ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ;
} else {
goodsByWeight . put ( goodsName1 , w . add ( new BigDecimal ( oneWeight ) . multiply ( new BigDecimal ( unloadNum1 ) ) ) ) ;
}
} ) ;
} ) ;
}
} ) ;
List < String > orderGoodsNameList = new ArrayList < > ( ) ;
List < String > orderGoodsNumList = new ArrayList < > ( ) ;
List < String > orderGoodsVolumeList = new ArrayList < > ( ) ;
List < String > orderGoodsWeightList = new ArrayList < > ( ) ;
goodsByNum . keySet ( ) . forEach ( g - > {
orderGoodsNameList . add ( g ) ;
orderGoodsNumList . add ( goodsByNum . get ( g ) + "" ) ;
orderGoodsVolumeList . add ( goodsByVolume . get ( g ) . setScale ( 2 , BigDecimal . ROUND_HALF_UP ) . toPlainString ( ) ) ;
orderGoodsWeightList . add ( goodsByWeight . get ( g ) . setScale ( 2 , BigDecimal . ROUND_HALF_UP ) . toPlainString ( ) ) ;
} ) ;
carsLoadOrderInfoVO . setUnloadIncome ( totalIncomingParice . get ( ) . setScale ( 2 , BigDecimal . ROUND_HALF_UP ) ) ;
carsLoadOrderInfoVO . setWeight ( totalWeight . get ( ) . setScale ( 2 , BigDecimal . ROUND_HALF_UP ) ) ;
carsLoadOrderInfoVO . setVolume ( totalVolume . get ( ) . setScale ( 2 , BigDecimal . ROUND_HALF_UP ) ) ;
carsLoadOrderInfoVO . setOrderGoodsNum ( String . join ( "," , orderGoodsNumList ) ) ;
carsLoadOrderInfoVO . setOrderGoodsName ( String . join ( "," , orderGoodsNameList ) ) ;
carsLoadOrderInfoVO . setOrderGoodsVolume ( String . join ( "," , orderGoodsVolumeList ) ) ;
carsLoadOrderInfoVO . setOrderGoodsWeight ( String . join ( "," , orderGoodsWeightList ) ) ;
resulOrderList . add ( carsLoadOrderInfoVO ) ;
} ) ;
carsLoadWaybillInfoVO . setCarsLoadOrderInfoList ( carsLoadOrderInfoList ) ;
} else {
resulOrderList . addAll ( carsLoadOrderInfoVOList ) ;
}
carsLoadWaybillInfoList . add ( carsLoadWaybillInfoVO ) ;
} ) ;
TrunklineCostShareRecordEntity costShareRecordEntity = trunklineCostShareRecordService . findTotalUnloadNumByLoadAndWaybillNo ( loadId , waybillNo ) ;
carsLoadWaybillInfoVO . setCostPiece ( costShareRecordEntity . getCostPiece ( ) ) ;
carsLoadWaybillInfoVO . setCostZhang ( costShareRecordEntity . getCostZhang ( ) ) ;
carsLoadWaybillInfoVO . setCostNum ( costShareRecordEntity . getNum ( ) ) ;
carsLoadWaybillInfoVO . setCarsLoadOrderInfoList ( resulOrderList ) ;
carsLoadWaybillInfoVOList . add ( carsLoadWaybillInfoVO ) ;
} ) ;
//无系统编码的数据
CarsLoadWaybillInfoVO noWaybillNoCarsLoadWaybillInfoVO = new CarsLoadWaybillInfoVO ( ) ;
noWaybillNoCarsLoadWaybillInfoVO . setCheckStatus ( 0 ) ;
noWaybillNoCarsLoadWaybillInfoVO . setWaybillNum ( 0 ) ;
noWaybillNoCarsLoadWaybillInfoVO . setTotalVolume ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setTotalWeight ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setWaybillType ( 1 ) ;
noWaybillNoCarsLoadWaybillInfoVO . setTotalFreight ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setDeliveryFee ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setPickupFee ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setWarehouseManagementFee ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setStorageFee ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setSortingFee ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setHandlingFee ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setOtherFee ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setInsuranceFee ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setTotalFee ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setCostPiece ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setCostZhang ( BigDecimal . ZERO ) ;
noWaybillNoCarsLoadWaybillInfoVO . setCostNum ( 0 ) ;
}
List < CarsLoadOrderInfoVO > noWaybillOrderList = new ArrayList < > ( ) ;
//把noWaybillLoadScanList通过orderCode分组
Map < String , List < TrunklineCarsLoadScanVO > > noWaybillNoTrunklineCarsLoadScanMapByOrderCode = noWaybillLoadScanList . stream ( ) . collect ( Collectors . groupingBy ( TrunklineCarsLoadScanVO : : getOrderCode ) ) ;
noWaybillNoTrunklineCarsLoadScanMapByOrderCode . keySet ( ) . forEach ( orderCode - > {
List < TrunklineCarsLoadScanVO > trunklineCarsLoadScanVOS = noWaybillNoTrunklineCarsLoadScanMapByOrderCode . get ( orderCode ) ;
//把trunklineCarsLoadScanVOS中所有元素的num加起来,如果num为空则用0代替
Integer loadingNum = trunklineCarsLoadScanVOS . stream ( ) . filter ( t - > ! Objects . isNull ( t . getWarehouseId ( ) ) ) . map ( TrunklineCarsLoadScanVO : : getNum ) . reduce ( 0 , Integer : : sum ) ;
Integer unloadNum = trunklineCarsLoadScanVOS . stream ( ) . map ( TrunklineCarsLoadScanVO : : getUnloadNum ) . reduce ( 0 , Integer : : sum ) ;
Integer signNum = trunklineCarsLoadScanVOS . stream ( ) . filter ( t - > t . getScanStatus ( ) . equals ( "3" ) ) . map ( TrunklineCarsLoadScanVO : : getUnloadNum ) . reduce ( 0 , Integer : : sum ) ;
CarsLoadOrderInfoVO carsLoadOrderInfoVO = new CarsLoadOrderInfoVO ( ) ;
carsLoadOrderInfoVO . setOrderCode ( orderCode ) ;
carsLoadOrderInfoVO . setOrderNum ( 0 ) ;
carsLoadOrderInfoVO . setPlanNum ( 0 ) ;
carsLoadOrderInfoVO . setLoadingNum ( loadingNum ) ;
carsLoadOrderInfoVO . setUnloadNum ( unloadNum ) ;
carsLoadOrderInfoVO . setSignNum ( signNum ) ;
carsLoadOrderInfoVO . setUnloadIncome ( BigDecimal . ZERO ) ;
carsLoadOrderInfoVO . setCostPiece ( BigDecimal . ZERO ) ;
carsLoadOrderInfoVO . setCostPiece ( BigDecimal . ZERO ) ;
carsLoadOrderInfoVO . setWeight ( BigDecimal . ZERO ) ;
carsLoadOrderInfoVO . setVolume ( BigDecimal . ZERO ) ;
carsLoadOrderInfoVO . setIncome ( BigDecimal . ZERO ) ;
carsLoadOrderInfoVO . setOrderFreight ( freightPrice . multiply ( new BigDecimal ( unloadNum ) ) ) ;
noWaybillOrderList . add ( carsLoadOrderInfoVO ) ;
} ) ;
noWaybillNoCarsLoadWaybillInfoVO . setCarsLoadOrderInfoList ( noWaybillOrderList ) ;
//对元素中的waybillNo进行倒序排序
carsLoadWaybillInfoList . sort ( Comparator . comparing ( CarsLoadWaybillInfoVO : : getWaybillNo ) . reversed ( ) ) ;
carsLoadWaybillInfoVOList . sort ( Comparator . comparing ( CarsLoadWaybillInfoVO : : getWaybillNo ) . reversed ( ) ) ;
carsLoadWaybillInfoVOList . add ( noWaybillNoCarsLoadWaybillInfoVO ) ;
trunklineCarsLoadVO . setCarsLoadWaybillInfoList ( carsLoadWaybillInfoList ) ;
trunklineCarsLoadVO . setCarsLoadWaybillInfoList ( carsLoadWaybillInfoVO List ) ;
return R . data ( trunklineCarsLoadVO ) ;
}
@ -7085,11 +7402,11 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
return R . fail ( 405 , "当前网点已经卸车确认" ) ;
}
Long nowWarehouseId = carsLoadEntity . getNowWarehouseId ( ) ;
if ( ! warehouseId . equals ( nowWarehouseId ) ) {
log . warn ( "############batchUnload: 当前节点还未到车 loadId={} warehouseId={}" , loadId , warehouseId ) ;
return R . fail ( 405 , "当前节点还未到车" ) ;
}
// Long nowWarehouseId = carsLoadEntity.getNowWarehouseId();
// if (!warehouseId.equals(nowWarehouseId)) {
// log.warn( "############batchUnload: 当前节点还未到车 loadId={} warehouseId={}", loadId, warehouseId);
// return R.fail(405, "当前节点还未到车");
// }
BasicdataWarehouseEntity warehouseEntity = basicdataWarehouseClient . getEntityWarehouseId ( warehouseId ) ;
if ( Objects . isNull ( warehouseEntity ) ) {
@ -8906,8 +9223,8 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
return R . data ( ls ) ;
}
@Override
public R findLoadingListData ( LoadCarsDTO loadCarsDTO ) {
// @Override
public R findLoadingListData1 ( LoadCarsDTO loadCarsDTO ) {
Long loadId = loadCarsDTO . getLoadId ( ) ;
Long warehouseId = loadCarsDTO . getWarehouseId ( ) ;
@ -8990,6 +9307,146 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
}
}
@Override
public R findLoadingListData ( LoadCarsDTO loadCarsDTO ) {
Long loadId = loadCarsDTO . getLoadId ( ) ;
Long warehouseId = loadCarsDTO . getWarehouseId ( ) ;
TrunklineCarsLoadEntity carsLoadEntity = getById ( loadId ) ;
if ( Objects . isNull ( carsLoadEntity ) ) {
log . warn ( "############findLoadingListData: 配载计划信息不存在 loadId={}" , loadId ) ;
return R . fail ( 405 , "配载计划信息不存在" ) ;
}
String carsNo = carsLoadEntity . getCarsNo ( ) ;
TrunklineCarsLoadLoadingListVO trunklineCarsLoadLoadingListVO = new TrunklineCarsLoadLoadingListVO ( ) ;
BeanUtil . copy ( carsLoadEntity , trunklineCarsLoadLoadingListVO ) ;
Long startWarehouseId = carsLoadEntity . getStartWarehouseId ( ) ;
String endWarehouseIds = carsLoadEntity . getEndWarehouseIds ( ) ;
if ( startWarehouseId . equals ( warehouseId ) | | endWarehouseIds . contains ( warehouseId + "" ) ) {
//起始仓装载清单
TrunklineCarsLoadLineEntity carsLoadLineEntity = trunklineCarsLoadLineService . findEntityByLoadIdAndNodeId ( loadId , warehouseId ) ;
if ( Objects . isNull ( carsLoadLineEntity ) ) {
log . warn ( "############findLoadingListData: 配载计划节点信息不存在 loadId={} warehouseId={}" , loadId , warehouseId ) ;
return R . fail ( 405 , "配载计划节点信息不存在" ) ;
}
String endWarehouseNames = carsLoadEntity . getEndWarehouseNames ( ) ;
String stopoverStation = null ;
if ( endWarehouseNames . contains ( "," ) ) {
stopoverStation = endWarehouseNames . substring ( 0 , endWarehouseNames . lastIndexOf ( "," ) ) ;
} else {
stopoverStation = endWarehouseNames ;
}
trunklineCarsLoadLoadingListVO . setStopoverStation ( stopoverStation ) ;
trunklineCarsLoadLoadingListVO . setUnloadDate ( carsLoadLineEntity . getUnloadDate ( ) ) ;
trunklineCarsLoadLoadingListVO . setUnloadUserName ( carsLoadLineEntity . getUnloadUserName ( ) ) ;
List < LoadingListMainVO > mainVOList = trunklineCarsOrderService . findLoadingListByLoadIdAndNodeId ( loadId , warehouseId ) ;
//把mainVOList中所有元素的orderCode和waybillNo拼接起来作为key的map
Map < String , LoadingListMainVO > mainVOMap = mainVOList . stream ( ) . collect ( Collectors . toMap ( item - > item . getOrderCode ( ) + "&&" + ( StringUtil . isBlank ( item . getWaybillNo ( ) ) ? "kong" : item . getWaybillNo ( ) ) , item - > item ) ) ;
List < LoadingListMainVO > loadingMainList = trunklineCarsLoadScanService . findLoadingListDataMain ( loadId , warehouseId ) ;
loadingMainList . forEach ( loadingListMainVO - > {
String orderCode = loadingListMainVO . getOrderCode ( ) ;
String waybillNo = loadingListMainVO . getWaybillNo ( ) ;
if ( StringUtil . isBlank ( waybillNo ) ) {
waybillNo = "kong" ;
}
LoadingListMainVO loadingListMainVO1 = mainVOMap . get ( orderCode + "&&" + waybillNo ) ;
if ( Objects . isNull ( loadingListMainVO1 ) ) {
loadingListMainVO . setLoadingNum ( loadingListMainVO . getSmallTotal ( ) ) ;
mainVOMap . put ( orderCode + "&&" + waybillNo , loadingListMainVO ) ;
} else {
loadingListMainVO1 . setLoadingNum ( loadingListMainVO . getSmallTotal ( ) ) ;
mainVOMap . put ( orderCode + "&&" + waybillNo , loadingListMainVO1 ) ;
}
} ) ;
List < LoadingListMainVO > unloadMainList = trunklineCarsLoadScanService . findUnloadListDataMain ( loadId , warehouseId ) ;
unloadMainList . forEach ( unloadMainVO - > {
String orderCode = unloadMainVO . getOrderCode ( ) ;
String waybillNo = unloadMainVO . getWaybillNo ( ) ;
if ( StringUtil . isBlank ( waybillNo ) ) {
waybillNo = "kong" ;
}
LoadingListMainVO loadingListMainVO1 = mainVOMap . get ( orderCode + "&&" + waybillNo ) ;
if ( Objects . isNull ( loadingListMainVO1 ) ) {
mainVOMap . put ( orderCode + "&&" + waybillNo , unloadMainVO ) ;
} else {
loadingListMainVO1 . setUnloadNum ( unloadMainVO . getUnloadNum ( ) ) ;
mainVOMap . put ( orderCode + "&&" + waybillNo , loadingListMainVO1 ) ;
}
} ) ;
// for (LoadingListMainVO loadingListMainVO : loadingMainList) {
// Integer type = loadingListMainVO.getType();
// if (type.equals(1)) {
// String orderCode = loadingListMainVO.getOrderCode();
// String waybillNo = loadingListMainVO.getWaybillNo();
// List<LoadingListGoodsVO> goodsList = trunklineCarsLoadScanService.findLoadingListGoods(loadId, warehouseId, orderCode, waybillNo);
//// loadingListMainVO.setGoodsList(goodsList);
// //把goodsList中所有元素的godsName和num拼起来后再用逗号拼起来
// String goodsListStr = goodsList.stream().map(item -> item.getGoodsName() + "(" + item.getNum()+")").collect(Collectors.joining(","));
// loadingListMainVO.setGoodsListStr(goodsListStr);
// } else if (type.equals(2)) {
//// List<LoadingListGoodsVO> goodsList = new ArrayList<>();
//// LoadingListGoodsVO loadingListGoodsVO = new LoadingListGoodsVO();
//// loadingListGoodsVO.setGoodsName("零担");
//// loadingListGoodsVO.setNum(loadingListMainVO.getSmallTotal());
// String goodsListStr = "零担("+loadingListMainVO.getSmallTotal()+")";
//// goodsList.add(loadingListGoodsVO);
//// loadingListMainVO.setGoodsList(goodsList);
// loadingListMainVO.setGoodsListStr(goodsListStr);
// }
// }
//
//
// for (LoadingListMainVO unloadMainVO : unloadMainList) {
// Integer type = unloadMainVO.getType();
// if (type.equals(1)) {
// String orderCode = unloadMainVO.getOrderCode();
// String waybillNo = unloadMainVO.getWaybillNo();
// List<LoadingListGoodsVO> goodsList = trunklineCarsLoadScanService.findUnloadGoods(loadId, warehouseId, orderCode, waybillNo);
//// unloadMainVO.setGoodsList(goodsList);
// String goodsListStr = goodsList.stream().map(item -> item.getGoodsName() + "(" + item.getNum()+")").collect(Collectors.joining(","));
// unloadMainVO.setGoodsListStr(goodsListStr);
// } else if (type.equals(2)) {
//// List<LoadingListGoodsVO> goodsList = new ArrayList<>();
//// LoadingListGoodsVO loadingListGoodsVO = new LoadingListGoodsVO();
//// loadingListGoodsVO.setGoodsName("零担");
//// loadingListGoodsVO.setNum(unloadMainVO.getSmallTotal());
//// goodsList.add(loadingListGoodsVO);
//// unloadMainVO.setGoodsList(goodsList);
// String goodsListStr = "零担("+unloadMainVO.getSmallTotal()+")";
// unloadMainVO.setGoodsListStr(goodsListStr);
// }
// }
// loadingMainList.addAll(unloadMainList);
// //把loadingMainList通过waybillNo进行排序
// loadingMainList.sort(Comparator.comparing(LoadingListMainVO::getWaybillNo));
//把mainVOMap的values提取成List
List < LoadingListMainVO > loadingListMainVOS = mainVOMap . values ( ) . stream ( ) . collect ( Collectors . toList ( ) ) ;
trunklineCarsLoadLoadingListVO . setMainList ( loadingListMainVOS ) ;
trunklineCarsLoadLoadingListVO . setCarsNoBase64 ( QRCodeUtil . getEmpAutograph ( QRCodeUtil . createCodeToFileType ( carsNo ) ) ) ;
return R . data ( trunklineCarsLoadLoadingListVO ) ;
} else {
log . warn ( "#############findLoadingListData: 仓库信息不正确" ) ;
return R . fail ( 405 , "仓库信息不正确" ) ;
}
}
@Transactional ( rollbackFor = Exception . class )
@Override
public R signLoadScanByIds ( List < Long > loadScanIds , Long warehouseId ) {