@ -154,6 +154,19 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
private final IDistributionParcelNumberService distributionParcelNumberService ;
private final IWarehouseTrayGoodsClient warehouseTrayGoodsClient ;
// 自提mapper
private final DistrilbutionBillLadingMapper distrilbutionBillLadingMapper ;
// 自提关联订单
private final DistrilbutionBillStockMapper distrilbutionBillStockMapper ;
// 自提关联包件
private final DistrilbutionBillPackageMapper distrilbutionBillPackageMapper ;
private final DistributionParcelListMapper distributionParcelListMapper ;
private final DistributionDeliveryChargeMapper distributionDeliveryChargeMapper ;
// private final IWarehouseRetentionScanClient warehouseRetentionScanClient;
// @Lazy
@ -176,6 +189,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
List < Long > collect = myWatchWarehouse . stream ( ) . map ( BasicdataWarehouseEntity : : getId ) . collect ( Collectors . toList ( ) ) ;
distributionDeliveryList . setWarehouseIdList ( collect ) ;
List < DistributionDeliveryListEntity > distributionDeliveryListEntities = baseMapper . selectDistributionDeliveryListPage ( page , distributionDeliveryList ) ;
return page . setRecords ( distributionDeliveryListEntities ) ;
}
@ -1416,6 +1430,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
loadscanEntity . setVehicleName ( finalDistributionDeliverySelfEntity . getVehicleNub ( ) ) ;
loadscanEntity . setScanStatus ( LoadingStatusConstant . yijianzhuangche . getValue ( ) ) ;
loadscanEntity . setOneClick ( 2 ) ;
loadscanEntity . setScanType ( parcelListEntity . getConditions ( ) . toString ( ) ) ;
loadscanEntity . setScanUser ( user . getUserName ( ) ) ;
loadscanEntity . setReservationId ( distrilbutionloadingscanDTO . getReservationId ( ) ) ;
loadscanEntity . setTrainNumber ( distributionDeliveryListEntity . getTrainNumber ( ) ) ;
@ -4540,6 +4555,12 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
}
/ * *
* @param ids 预览Id
* @param type 1 市配 2 商配 3 自提
* @return
* @throws Exception
* /
@Override
public List < PrintPreviewVO > printBatch ( String ids , Integer type ) throws Exception {
@ -4556,18 +4577,295 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
throw new ServiceException ( "参数错误" ) ;
}
if ( 2 = = type ) {
return handleShiPeiData ( template , idArray , html ) ;
} else if ( 1 = = type ) {
return handleShangPeiData ( template . getId ( ) , idArray , html ) ;
} else if ( 3 = = type ) {
// 自提
return handleZiTiData ( template , idArray , html ) ;
} else {
log . warn ( "###########printBatch: 未知的打印类型" ) ;
throw new CustomerException ( 403 , "未知的打印类型" ) ;
}
}
/ * *
* 自提配送单
*
* @param template
* @param idArray
* @param html
* @return
* /
private List < PrintPreviewVO > handleZiTiData ( BasicPrintTemplateEntity template , String [ ] idArray , String html ) throws Exception {
List < PrintPreviewVO > result = new ArrayList < > ( ) ;
for ( String id : idArray ) {
//查询自提预约单
DistrilbutionBillLadingEntity distrilbutionBillLadingEntity = distrilbutionBillLadingMapper . selectById ( Long . parseLong ( id ) ) ;
// 查询自提预约单下面的订单
LambdaQueryWrapper < DistrilbutionBillStockEntity > queryWrapper = new LambdaQueryWrapper < > ( ) ;
queryWrapper . eq ( DistrilbutionBillStockEntity : : getBillLadingId , distrilbutionBillLadingEntity . getId ( ) ) ;
List < DistrilbutionBillStockEntity > distrilbutionBillStockEntities = distrilbutionBillStockMapper . selectList ( queryWrapper ) ;
// 查找自提预约单下面包件 排除取消的
LambdaQueryWrapper < DistrilbutionBillPackageEntity > distrilbutionBillStockEntityLambdaQueryWrapper = new LambdaQueryWrapper < > ( ) ;
distrilbutionBillStockEntityLambdaQueryWrapper . eq ( DistrilbutionBillPackageEntity : : getBillLadingId , distrilbutionBillLadingEntity . getId ( ) ) ;
distrilbutionBillStockEntityLambdaQueryWrapper . ne ( DistrilbutionBillPackageEntity : : getPacketBarStatus , 2 ) ;
List < DistrilbutionBillPackageEntity > distrilbutionBillPackageEntities = distrilbutionBillPackageMapper . selectList ( distrilbutionBillStockEntityLambdaQueryWrapper ) ;
Set < Long > ids = new HashSet < Long > ( ) ;
for ( DistrilbutionBillPackageEntity distrilbutionBillPackageEntity : distrilbutionBillPackageEntities ) {
ids . add ( distrilbutionBillPackageEntity . getParceListId ( ) ) ;
}
// 得到所以的订单列表
List < DistributionParcelListEntity > distributionParcelListEntities = distributionParcelListMapper . selectBatchIds ( ids ) ;
Map < String , Object > map = new HashMap < > ( ) ;
map . put ( "自提单号" , distrilbutionBillLadingEntity . getPickupBatch ( ) ) ;
String fileTypeName = QRCodeUtil . createCodeToFile ( map . get ( "自提单号" ) . toString ( ) ) ;
map . put ( "自提单二维码" , QRCodeUtil . getEmpAutograph ( fileTypeName ) ) ;
// map.put("收货单单位", reservationEntity.getReceivingUnit());//收货单单位
// map.put("商场名称", reservationEntity.getStoreName());//商场名称
// 构建map集合中收货单和商场名称
buildMapByDistrilbutionBillLadingEntity ( map , distrilbutionBillStockEntities , distributionParcelListEntities , distrilbutionBillLadingEntity ) ;
map . put ( "提货人" , distrilbutionBillLadingEntity . getConsignee ( ) ) ; //提货人
map . put ( "联系电话" , distrilbutionBillLadingEntity . getConsigneePhone ( ) ) ; //收货人电话
BasicdataWarehouseEntity entityWarehouseId = warehouseClient . getEntityWarehouseId ( distrilbutionBillLadingEntity . getWarehouseId ( ) ) ;
map . put ( "自提仓库" , entityWarehouseId ! = null ? entityWarehouseId . getName ( ) : "" ) ;
map . put ( "自提时间" , DateUtil . formatDateTime ( distrilbutionBillLadingEntity . getPickUpTime ( ) ) ) ;
map . put ( "提货车牌号" , distrilbutionBillLadingEntity . getPickUpPlate ( ) ) ;
map . put ( "创建时间" , DateUtil . formatDateTime ( distrilbutionBillLadingEntity . getCreateTime ( ) ) ) ;
Map < String , Object > fua = new HashMap < > ( ) ;
// 需要去查询费用明细
LambdaQueryWrapper < DistributionDeliveryChargeEntity > qu = new LambdaQueryWrapper < > ( ) ;
qu . eq ( DistributionDeliveryChargeEntity : : getBillLading , distrilbutionBillLadingEntity . getId ( ) ) ;
List < DistributionDeliveryChargeEntity > distributionDeliveryChargeEntities = distributionDeliveryChargeMapper . selectList ( qu ) ;
HashMap < String , Object > objectObjectHashMap = new HashMap < > ( ) ;
BigDecimal sumMoney = new BigDecimal ( "0.00" ) ;
// 构建费用明细
for ( DistributionDeliveryChargeEntity distributionDeliveryChargeEntity : distributionDeliveryChargeEntities ) {
String costName = distributionDeliveryChargeEntity . getCost ( ) ; // 查询码表 得到类型
costName = DictBizCache . getValue ( "delivery_cost" , costName ) ;
BigDecimal costMoney = distributionDeliveryChargeEntity . getMoney ( ) ; // 查询码表 得到类型
objectObjectHashMap . put ( costName , costMoney ) ;
sumMoney . add ( costMoney ) ;
}
fua . put ( "费用明细" , objectObjectHashMap ) ;
fua . put ( "费用合计" , sumMoney ) ;
map . put ( "费用统计" , fua ) ;
String popHtml = TemplateUtil . popTemplate ( "自提配送单" , map , html ) ;
PrintPreviewVO printPreviewVO = new PrintPreviewVO ( ) ;
printPreviewVO . setTemplateId ( template . getId ( ) ) ;
printPreviewVO . setTemplateHtml ( popHtml ) ;
result . add ( printPreviewVO ) ;
}
return result ;
}
private void buildMapByDistrilbutionBillLadingEntity ( Map < String , Object > map , List < DistrilbutionBillStockEntity > distrilbutionBillStockEntities , List < DistributionParcelListEntity > distributionParcelListEntities , DistrilbutionBillLadingEntity distrilbutionBillLadingEntity ) {
// 查询订单集合
Set < Long > ids = new HashSet < Long > ( ) ;
for ( DistrilbutionBillStockEntity distrilbutionBillStockEntity : distrilbutionBillStockEntities ) {
ids . add ( distrilbutionBillStockEntity . getStockArticleId ( ) ) ;
}
// 得到所以的订单列表
List < DistributionStockArticleEntity > distributionStockArticleEntities = distributionStockArticleMapper . selectBatchIds ( ids ) ;
// 获取订单中的商城和收货单位
StringBuilder consigneeUnit = new StringBuilder ( ) ;
StringBuilder mailNames = new StringBuilder ( ) ;
List < Map < String , Object > > ls = new ArrayList < > ( ) ;
int a = 1 ;
// 构建产品明细的表头 -- 这里目前只处理了定制品和有数据的库存品,对于零担 还没有处理
List < Map < String , Object > > listMapTemp = new ArrayList < > ( ) ;
Map < String , Object > m = new HashMap < > ( ) ;
int hejiNum = 0 ;
for ( DistributionParcelListEntity distributionParcelListEntity : distributionParcelListEntities ) {
if ( StringUtils . isBlank ( distributionParcelListEntity . getThirdProduct ( ) ) ) {
distributionParcelListEntity . setThirdProduct ( "其它" ) ;
}
if ( m . containsKey ( distributionParcelListEntity . getThirdProduct ( ) ) ) {
int o = ( int ) m . get ( distributionParcelListEntity . getThirdProduct ( ) ) ;
o = o + 1 ;
m . put ( distributionParcelListEntity . getThirdProduct ( ) , o ) ;
} else {
m . put ( distributionParcelListEntity . getThirdProduct ( ) , 1 ) ;
}
}
// 加入到集合中的去 目的是为了获取分类头部
listMapTemp . add ( m ) ;
for ( DistributionStockArticleEntity distributionStockArticleEntity : distributionStockArticleEntities ) {
// 需要从所有的包件的
List < DistributionParcelListEntity > ts = new ArrayList < > ( ) ;
for ( DistributionParcelListEntity distributionParcelListEntity : distributionParcelListEntities ) {
if ( distributionParcelListEntity . getStockArticleId ( ) . equals ( distributionStockArticleEntity . getId ( ) ) ) {
ts . add ( distributionParcelListEntity ) ;
}
}
if ( ! mailNames . toString ( ) . contains ( distributionStockArticleEntity . getMallName ( ) ) ) {
if ( ! mailNames . toString ( ) . equals ( "" ) ) {
mailNames . append ( "," ) ;
}
mailNames . append ( distributionStockArticleEntity . getMallName ( ) ) ;
}
if ( ! consigneeUnit . toString ( ) . contains ( distributionStockArticleEntity . getConsigneeUnit ( ) ) ) {
if ( ! consigneeUnit . toString ( ) . equals ( "" ) ) {
consigneeUnit . append ( "," ) ;
}
consigneeUnit . append ( distributionStockArticleEntity . getConsigneeUnit ( ) ) ;
}
Map < String , Object > tempMap = new HashMap < > ( ) ;
tempMap . put ( "序号" , a ) ;
tempMap . put ( "运单号" , distributionStockArticleEntity . getWaybillNumber ( ) ) ;
tempMap . put ( "合同号" , distributionStockArticleEntity . getOrderCode ( ) ) ;
String materialNameStr = buildMaterialNameStr ( distributionParcelListEntities ) ;
tempMap . put ( "物料名称" , materialNameStr ) ;
// 构建产品明细 --对于每一个订单
buildProductDetail ( tempMap , m , ts ) ;
Map < String , Object > os = ( Map < String , Object > ) tempMap . get ( "产品明细" ) ;
Set < String > strings = os . keySet ( ) ;
int sumNum = 0 ;
for ( String string : strings ) {
Object o = os . get ( string ) ;
sumNum + = ( o ! = null ) ? ( int ) o : 0 ;
}
tempMap . put ( "小计" , sumNum ) ;
hejiNum + = sumNum ;
// 查询货物货位
//通过订单id和预约id查询对应包件的库位信息
List < String > orderPackageCodes = ts . stream ( )
. map ( DistributionParcelListEntity : : getOrderPackageCode ) // 获取每个对象的orderPackageCode
. collect ( Collectors . toList ( ) ) ;
List < Long > orderPackageIds = ts . stream ( )
. map ( DistributionParcelListEntity : : getId ) // 获取每个对象的包件ID
. collect ( Collectors . toList ( ) ) ;
List < String > allocationStrList = distributionParcelListMapper . selectAllocationInforByOrderPackageCode ( orderPackageCodes , distrilbutionBillLadingEntity . getWarehouseId ( ) ) ;
String allocationStr = StringUtils . join ( allocationStrList , "," ) ;
tempMap . put ( "货位" , allocationStr ) ;
//通过订单id和预约id查询对应包件的备货区信息
LambdaQueryWrapper < DistributionStockEntity > lambdaQueryWrapper = new LambdaQueryWrapper < > ( ) ;
lambdaQueryWrapper . eq ( DistributionStockEntity : : getBillLadingId , distrilbutionBillLadingEntity . getId ( ) ) . in ( DistributionStockEntity : : getParcelListId , orderPackageIds ) ;
List < DistributionStockEntity > distributionStockEntities = distributionStockMapper . selectList ( lambdaQueryWrapper ) ;
Set < String > stockupAreaStrList = distributionStockEntities . stream ( ) . map ( DistributionStockEntity : : getStockupArea ) . collect ( Collectors . toSet ( ) ) ;
String stockupAreaStr = StringUtils . join ( stockupAreaStrList , "," ) ;
tempMap . put ( "备货区" , stockupAreaStr ) ;
ls . add ( tempMap ) ;
a + + ;
}
map . put ( "收货单单位" , consigneeUnit . toString ( ) ) ;
map . put ( "商场名称" , mailNames . toString ( ) ) ;
map . put ( "明细" , ls ) ;
Map < String , Object > m1 = new HashMap < > ( ) ;
m1 . put ( "产品明细" , m ) ;
m1 . put ( "合计数量" , hejiNum ) ;
map . put ( "合计" , m1 ) ;
}
/ * *
* 构建分类明细
* @param tempMap
* @param m
* @param distributionParcelListEntities
* /
private void buildProductDetail ( Map < String , Object > tempMap , Map < String , Object > m , List < DistributionParcelListEntity > distributionParcelListEntities ) {
Set < String > strings = m . keySet ( ) ;
Map < String , Object > newTempMap = new HashMap < > ( ) ;
for ( String string : strings ) {
int count = buildCountNum ( string , distributionParcelListEntities ) ;
newTempMap . put ( string , count ) ;
}
tempMap . put ( "产品明细" , newTempMap ) ;
}
/ * *
* 统计分类对于件的数量
*
* @param string
* @param distributionParcelListEntities
* @return
* /
private int buildCountNum ( String string , List < DistributionParcelListEntity > distributionParcelListEntities ) {
int num = 0 ;
for ( DistributionParcelListEntity distributionParcelListEntity : distributionParcelListEntities ) {
if ( StringUtils . isBlank ( distributionParcelListEntity . getThirdProduct ( ) ) ) {
distributionParcelListEntity . setThirdProduct ( "其它" ) ;
}
if ( distributionParcelListEntity . getThirdProduct ( ) . equals ( string ) ) {
num + + ;
}
}
return num ;
}
private String buildMaterialNameStr ( List < DistributionParcelListEntity > distributionParcelListEntitie ) {
StringBuffer sb = new StringBuffer ( ) ;
for ( DistributionParcelListEntity distributionParcelListEntity : distributionParcelListEntitie ) {
if ( ObjectUtils . isNotNull ( distributionParcelListEntity . getMallName ( ) ) ) {
if ( ! sb . toString ( ) . equals ( "" ) ) {
sb . append ( "," ) ;
}
sb . append ( distributionParcelListEntity . getMaterialName ( ) ) ;
}
}
return sb . toString ( ) ;
}
@Override
public void testData ( String s ) throws Exception {
String [ ] split = s . split ( "," ) ;
@ -5147,7 +5445,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
. eq ( DistributionLoadscanEntity : : getOrderPackageCode , distrilbutionloadingscanDTO . getBarcode ( ) )
. ne ( DistributionLoadscanEntity : : getScanStatus , LoadingStatusConstant . quxiao . getValue ( ) )
) ;
List < DistributionParcelListEntity > parcelListEntities = baseMapper . selectPackageListByDeliveryListId ( distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
// List<DistributionParcelListEntity> parcelListEntities = baseMapper.selectPackageListByDeliveryListId(distrilbutionloadingscanDTO.getDeliveryId());
if ( Func . isNotEmpty ( loadscanEntityList ) ) {
if ( loadscanEntityList . size ( ) = = 1 ) {
//包件存在装车才能进行滞留
@ -5182,27 +5480,27 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
//如果均不存在则就该判断该货物是否属于当前的配送任务,如果属于则是未装车,如果不属于则此码无效
List < DistributionParcelListEntity > distributionParcelListEntities = baseMapper . selectPackageListByDeliveryListId ( deliveryListEntity . getId ( ) ) ;
boolean flag = false ;
if ( Func . isNotEmpty ( distributionParcelListEntities ) ) {
if ( Func . isNotEmpty ( distributionParcelListEntities ) ) {
List < DistributionParcelListEntity > isHave = distributionParcelListEntities . stream ( ) . filter ( p - > p . getOrderPackageCode ( ) . equals ( distrilbutionloadingscanDTO . getBarcode ( ) ) ) . collect ( Collectors . toList ( ) ) ;
if ( Func . isNotEmpty ( isHave ) ) {
if ( Func . isNotEmpty ( isHave ) ) {
flag = isHave . size ( ) = = 1 ;
}
} else {
} else {
List < DisStockListDetailEntity > disStockListDetailEntities = baseMapper . selectInventoryListByDeliveryListId ( distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
if ( Func . isNotEmpty ( disStockListDetailEntities ) ) {
if ( Func . isNotEmpty ( disStockListDetailEntities ) ) {
List < DisStockListDetailEntity > isHaveinven = disStockListDetailEntities . stream ( ) . filter ( inven - > Func . isNotEmpty ( inven . getStockPackageCode ( ) ) & & inven . getStockPackageCode ( ) . equals ( distrilbutionloadingscanDTO . getBarcode ( ) ) ) . collect ( Collectors . toList ( ) ) ;
if ( Func . isNotEmpty ( isHaveinven ) ) {
if ( Func . isNotEmpty ( isHaveinven ) ) {
flag = isHaveinven . size ( ) = = 1 ;
}
}
}
if ( flag ) {
if ( flag ) {
//存在该订制品或者库存品包件信息但是未进行装车操作
return Resp . scanFail ( "包件未装车" , "包件未装车" ) ;
} else {
return Resp . scanFail ( "包件未装车" , "包件未装车" ) ;
} else {
//该配送任务查询无该包件信息
return Resp . scanFail ( "此配送无该包件" , "此配送无该包件信息" ) ;
return Resp . scanFail ( "此配送无该包件" , "此配送无该包件信息" ) ;
}
}
@ -5353,9 +5651,9 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
//已经进行装车
loadscanEntity . setScanStatus ( LoadingStatusConstant . quxiao . getValue ( ) ) ;
distributionLoadscanService . updateById ( loadscanEntity ) ;
// 对应签收信息的装车数量要进行扣减
// 对应签收信息的装车数量要进行扣减
int a = distributionSignforMapper . deductionLoadingPacjageNum ( loadscanEntity . getReservationId ( ) , loadscanEntity . getDeliveryId ( ) , loadscanEntity . getLoadedNub ( ) ) ;
distributionAsyncService . checkReservationStatusAndLoadingStatusByPackage ( parcelListEntity ) ;
distributionAsyncService . checkReservationStatusAndLoadingStatusByPackage ( parcelListEntity . getId ( ) ) ;
}
//进行了一条包件任务的取消,此时就应该对预约、配送任务进行数量的维护
distributionAsyncService . checkRetentionReservationAndDeliveryInfo ( reservationId , deliveryId ) ;
@ -5420,25 +5718,37 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
//存在零担的信息
//校验零担滞留数量是否有效
DistributionParcelNumberVO distributionParcelNumberVO = zeroPackageMap . get ( orderPackageId ) ;
if ( distributionParcelNumberVO . getReservationNum ( ) < retentionQuantity ) {
if ( distributionParcelNumberVO . getQuantity ( ) < retentionQuantity ) {
//信息不合法
log . error ( "##############无效的滞留零担数量:{}" , retentionQuantity ) ;
return false ;
}
DistributionParcelNumberEntity distributionParcelNumberEntity = distributionParcelNumberService . getOne ( Wrappers . < DistributionParcelNumberEntity > query ( ) . lambda ( )
. eq ( DistributionParcelNumberEntity : : getStockArticleId , distributionParcelNumberVO . getStockArticleId ( ) )
. eq ( DistributionParcelNumberEntity : : getParcelListId , distributionParcelNumberVO . getParcelListId ( ) )
) ;
if ( Func . isNotEmpty ( distributionParcelNumberEntity ) ) {
//这里滞留都是在装车之后进行 只需要维护出库数量和在库数量字段
distributionParcelNumberEntity . setOutboundQuantity ( distributionParcelNumberEntity . getOutboundQuantity ( ) - retentionQuantity ) ;
distributionParcelNumberEntity . setHandQuantity ( distributionParcelNumberEntity . getHandQuantity ( ) + retentionQuantity ) ;
distributionParcelNumberService . updateById ( distributionParcelNumberEntity ) ;
}
//进行是否装车判断
if ( Func . isNotEmpty ( zeroLoadscanEntity ) ) {
//存在装车数据
int num = zeroLoadscanEntity . getLoadedNub ( ) - retentionQuantity ;
if ( num < 0 ) {
if ( num > 0 ) {
zeroLoadscanEntity . setLoadedNub ( 0 ) ;
zeroLoadscanEntity . setPackageNub ( 0 ) ;
} else {
zeroLoadscanEntity . setLoadedNub ( 0 ) ;
zeroLoadscanEntity . setPackageNub ( 0 ) ;
} else {
zeroLoadscanEntity . setLoadedNub ( num ) ;
zeroLoadscanEntity . setLoadedNub ( num ) ;
zeroLoadscanEntity . setScanStatus ( LoadingStatusConstant . quxiao . getValue ( ) ) ;
}
distributionLoadscanService . updateById ( zeroLoadscanEntity ) ;
//扣减装车数量
int a = distributionSignforMapper . deductionLoadingPacjageNum ( zeroLoadscanEntity . getReservationId ( ) , zeroLoadscanEntity . getDeliveryId ( ) , retentionQuantity ) ;
distributionAsyncService . checkReservationStatusAndLoadingStatusByPackage ( distributionParcelNumberEntity . getParcelListId ( ) ) ;
}
distributionAsyncService . checkRetentionZeroPackageReservationAndDeliveryInfo ( reservationId , deliveryId , orderPackageId , orderId ) ;
return true ;
@ -5449,13 +5759,19 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
return false ;
}
} else {
log . error ( "#############查询出多条零担包件信息:{}" , row ) ;
} else {
log . error ( "#############查询出多条零担包件信息:{}" , row ) ;
return false ;
}
}
@Override
public DistributionDeliveryListVO getRetentionDelivery ( Long deliveryId ) {
//查询滞留的配送任务 这里需要注意配送任务可能会进行删除
return baseMapper . selectDeliveryById ( deliveryId ) ;
}
public Map < String , String > getDriverCar ( String kind , Long deliveryListEntityId ) {
Map < String , String > map = new HashMap < > ( ) ;
String dirverName = null ;
@ -5768,6 +6084,8 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
template = basicPrintTemplateClient . getPrintTemplate ( PrintTemplateStatusConstant . daiqueren_1 . getValue ( ) ) ;
} else if ( 1 = = type ) {
template = basicPrintTemplateClient . getPrintTemplate ( PrintTemplateStatusConstant . daiqueren_12 . getValue ( ) ) ;
} else if ( 3 = = type ) {
template = basicPrintTemplateClient . getPrintTemplate ( PrintTemplateStatusConstant . peisongtask_ziti . getValue ( ) ) ;
}
if ( ObjectUtil . isEmpty ( template ) ) {
throw new ServiceException ( "模板内容未找到" ) ;