@ -28,7 +28,9 @@ import com.logpm.basic.entity.BasicPrintTemplateEntity;
import com.logpm.basic.feign.IBasicPrintTemplateClient ;
import com.logpm.basicdata.entity.BasicdataDriverArteryEntity ;
import com.logpm.basicdata.entity.BasicdataWarehouseEntity ;
import com.logpm.basicdata.feign.IBasicdataCarrierClient ;
import com.logpm.basicdata.feign.IBasicdataDriverArteryClient ;
import com.logpm.basicdata.feign.IBasicdataVehicleClient ;
import com.logpm.basicdata.feign.IBasicdataWarehouseClient ;
import com.logpm.distribution.bean.Resp ;
import com.logpm.distribution.dto.* ;
@ -45,6 +47,7 @@ import com.logpm.distribution.wrapper.DistributionDeliveryListWrapper;
import com.logpm.distribution.wrapper.DistributionParcelListWrapper ;
import com.logpm.distribution.wrapper.DistributionReservationWrapper ;
import com.logpm.distribution.wrapper.DistributionStockArticleWrapper ;
import com.logpm.warehouse.feign.IWarehouseUpdownTypeClient ;
import lombok.AllArgsConstructor ;
import lombok.extern.log4j.Log4j2 ;
import org.apache.commons.lang.StringUtils ;
@ -59,12 +62,15 @@ import org.springblade.common.constant.order.OrderStatusConstant;
import org.springblade.common.constant.orderpackage.OrderPackageLoadingStatusConstant ;
import org.springblade.common.constant.orderpackage.OrderPackageReservationStatusConstant ;
import org.springblade.common.constant.orderpackage.OrderPackageStatusConstant ;
import org.springblade.common.constant.orderpackage.OrderPackageStockupStatusConstant ;
import org.springblade.common.constant.printTemplate.PrintTemplateStatusConstant ;
import org.springblade.common.constant.reservation.* ;
import org.springblade.common.constant.stockup.StockAssignStatusConstant ;
import org.springblade.common.constant.stockup.StockupStatusConstant ;
import org.springblade.common.exception.CustomerException ;
import org.springblade.common.serviceConstant.ServiceConstant ;
import org.springblade.common.utils.CommonUtil ;
import org.springblade.common.utils.QRCodeUtil ;
import org.springblade.common.utils.TemplateUtil ;
import org.springblade.core.log.exception.ServiceException ;
import org.springblade.core.mp.base.BaseServiceImpl ;
@ -83,6 +89,7 @@ import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Isolation ;
import org.springframework.transaction.annotation.Transactional ;
import java.math.BigDecimal ;
import java.text.SimpleDateFormat ;
import java.util.* ;
import java.util.concurrent.atomic.AtomicInteger ;
@ -134,7 +141,10 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
private final IBasicdataWarehouseClient warehouseClient ;
private final IDisStockListDetailService disStockListDetailService ;
private final DistributionStockListMapper distributionStockListMapper ;
private final IWarehouseUpdownTypeClient warehouseUpdownTypeClient ;
private final IBasicPrintTemplateClient basicPrintTemplateClient ;
private final IBasicdataVehicleClient basicdataVehicleClient ;
private final IBasicdataCarrierClient basicdataCarrierClient ;
@Override
public IPage < DistributionDeliveryListEntity > selectDistributionDeliveryListPage ( IPage < DistributionDeliveryListEntity > page , DistributionDeliveryListDTO distributionDeliveryList ) {
@ -152,15 +162,12 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
. collect ( Collectors . toList ( ) ) ;
distributionDeliveryList . setWarehouseIdList ( collect ) ;
List < DistributionDeliveryListEntity > distributionDeliveryListEntities = baseMapper . selectDistributionDeliveryListPage ( page , distributionDeliveryList ) ;
return page . setRecords ( distributionDeliveryListEntities ) ;
}
@Override
public List < DistributionDeliveryListExcel > exportDistributionDeliveryList ( Wrapper < DistributionDeliveryListEntity > queryWrapper ) {
List < DistributionDeliveryListExcel > distributionDeliveryListList = baseMapper . exportDistributionDeliveryList ( queryWrapper ) ;
//distributionDeliveryListList.forEach(distributionDeliveryList -> {
// distributionDeliveryList.setTypeName(DictCache.getValue(DictEnum.YES_NO, DistributionDeliveryList.getType()));
@ -219,7 +226,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
List < DistributionStockupVO > distributionStockupVOList = distributionStockupMapper . getMarketDeliveryStockupInfo ( detail . getId ( ) ) ;
//这里需要处理一下
if ( distributionStockupVOList . size ( ) > 1 ) {
Date outboundDate = distributionStockupVOList . stream ( ) . filter ( o - > o . getOutboundDate ( ) ! = null ) . max ( Comparator . comparing ( DistributionStockupVO : : getOutboundDate ) ) . get ( ) . getOutboundDate ( ) ;
// Date outboundDate = distributionStockupVOList.stream().filter(o -> o.getOutboundDate() != null).max(Comparator.comparing(DistributionStockupVO::getOutboundDate)).get().getOutboundDate();
HashSet < String > forkliftName = new HashSet < > ( ) ;
HashSet < String > loaderName = new HashSet < > ( ) ;
HashSet < String > stockUser = new HashSet < > ( ) ;
@ -242,7 +249,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
distributionStockupVO . setForkliftName ( String . join ( "," , forkliftName ) ) ;
distributionStockupVO . setStockupArea ( String . join ( "," , goodsArea ) ) ;
distributionStockupVO . setStockupUser ( String . join ( "," , stockUser ) ) ;
distributionStockupVO . setOutboundDate ( outboundDate ) ;
// distributionStockupVO.setOutboundDate(outboundDate);
distributionDeliveryListVO . setStockupInfo ( distributionStockupVO ) ;
} else {
@ -484,6 +491,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
// }
// }
}
warehouseUpdownTypeClient . downPackage ( distrilbutionloadingscanDTO . getBarcode ( ) ) ;
distributionLoadscanService . saveBatch ( distributionLoadscanEntities ) ;
// //找出该包条码
// List<DistributionParcelListEntity> distributionParcelListEntities = distributionParcelListMapper.selectList(new QueryWrapper<DistributionParcelListEntity>().lambda()
@ -906,7 +914,6 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
List < Long > list = reservationPackageEntityList . stream ( ) . map ( DistributionReservationPackageEntity : : getParceListId ) . collect ( Collectors . toList ( ) ) ;
List < DistributionParcelListEntity > distributionParcelListEntityList = distributionParcelListService . list ( new QueryWrapper < DistributionParcelListEntity > ( ) . lambda ( ) . in ( DistributionParcelListEntity : : getId , list ) ) ;
List < DistributionParcelListEntity > parcelListEntityList = distributionReservationMapper . selectPackageListByReservationId ( distrilbutionloadingscanDTO . getReservationId ( ) ) ;
boolean packageLoadingFlag = parcelListEntityList . stream ( ) . allMatch ( p - > p . getOrderPackageLoadingStatus ( ) . equals ( OrderPackageLoadingStatusConstant . yizhuangche . getValue ( ) ) ) ;
List < DisStockListDetailEntity > stockListDetailEntityList = disStockListDetailService . list ( Wrappers . < DisStockListDetailEntity > query ( ) . lambda ( )
@ -919,7 +926,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
return R . fail ( "该客户存在库存品暂未备货 一键装车失败!!!" ) ;
}
if ( packageLoadingFlag & & inventoryLoadingFlag ) {
//此时包件和库存品均已完成装车,这里不需要进行装车; 需要进行进行提示
//此时包件和库存品均已完成装车,这里不需要进行装车; 需要进行进行提示
//这里需要对包件、库存品包件进行库位信息的解绑
} else {
if ( ! packageLoadingFlag ) {
@ -974,6 +981,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
distributionLoadscanService . save ( loadscanEntity ) ;
Integer i = distributionDeliveryListMapper . updateloadingTimeById ( distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
Integer j = distributionSignforMapper . updateloadByReservationId ( loadscanEntity . getDeliveryId ( ) , loadscanEntity . getReservationId ( ) , loadscanEntity . getPackageNub ( ) ) ;
warehouseUpdownTypeClient . downPackage ( parcelListEntity . getOrderPackageCode ( ) ) ;
//异步修改包件状态
distributionAsyncService . changeMarketDeliveryListStatus ( loadscanEntity . getOrderPackageCode ( ) , loadscanEntity . getDeliveryId ( ) ) ;
}
@ -1024,6 +1032,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
distributionLoadscaninvnService . save ( loadscaninvnEntity ) ;
Integer i = distributionDeliveryListMapper . updateloadingTimeById ( distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
Integer j = distributionSignforMapper . updateloadByinvn ( loadscaninvnEntity . getDeliveryId ( ) , loadscaninvnEntity . getReservationId ( ) , loadscaninvnEntity . getPackageNub ( ) ) ;
// warehouseUpdownTypeClient.downStock()
//异步修改包件状态 //对于存在库存品的这里还需要将库存品从对应的信息中进行扣除
distributionAsyncService . changeMarketDeliveryListStatus ( loadscaninvnEntity . getOrderPackageCode ( ) , loadscaninvnEntity . getDeliveryId ( ) ) ;
DistributionStockListEntity stockListEntity = distributionStockListMapper . selectOne ( Wrappers . < DistributionStockListEntity > query ( ) . lambda ( ) . eq ( DistributionStockListEntity : : getId , loadscaninvnEntity . getInventoryId ( ) ) ) ;
@ -1790,19 +1799,37 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
//查询客户
List < DistributionAppReservationVO > customList = distributionDeliveryInfoMapper . selectAppcustomListPage ( page , distributionDeliveryList . getId ( ) ) ;
for ( DistributionAppReservationVO distributionAppReservationVO : customList ) {
//查询备货是否完成
int aLong = distributionStockMapper . selectCount ( new QueryWrapper < DistributionStockEntity > ( ) . lambda ( )
. eq ( DistributionStockEntity : : getReservationId , distributionAppReservationVO . getId ( ) )
. eq ( DistributionStockEntity : : getType , 1 )
) . intValue ( ) ;
distributionAppReservationVO . setIsstock ( "是" ) ;
distributionAppReservationVO . setIsload ( "是" ) ;
if ( aLong < distributionAppReservationVO . getReservationNum ( ) ) {
List < DistributionParcelListEntity > parcelListEntities = distributionReservationMapper . selectPackageListByReservationId ( distributionAppReservationVO . getId ( ) ) ;
List < DisStockListDetailEntity > stockListDetailEntityList = distributionReservationMapper . selectInventoryListByReservation ( distributionAppReservationVO . getId ( ) ) ;
boolean stockArticleStockupStatus = parcelListEntities . stream ( ) . allMatch ( s - > Func . isNotEmpty ( s . getOrderPackageStockupStatus ( ) ) & & s . getOrderPackageStockupStatus ( ) . equals ( OrderPackageStockupStatusConstant . yibeihu . getValue ( ) ) ) ;
boolean inventoryStockupStatus = stockListDetailEntityList . stream ( ) . allMatch ( i - > Func . isNotEmpty ( i . getStockPackageCode ( ) ) ) ;
if ( stockArticleStockupStatus & & inventoryStockupStatus ) {
distributionAppReservationVO . setIsstock ( "是" ) ;
} else {
distributionAppReservationVO . setIsstock ( "否" ) ;
}
if ( distributionAppReservationVO . getLoadingNub ( ) < distributionAppReservationVO . getReservationNum ( ) ) {
boolean stockArticleLoadingStatus = parcelListEntities . stream ( ) . allMatch ( s - > Func . isNotEmpty ( s . getOrderPackageLoadingStatus ( ) ) & & s . getOrderPackageLoadingStatus ( ) . equals ( OrderPackageLoadingStatusConstant . yizhuangche . getValue ( ) ) ) ;
boolean inventoryLoadingStatus = stockListDetailEntityList . stream ( ) . allMatch ( i - > Func . isNotEmpty ( i . getStockPackageCode ( ) ) & & i . getStockLockingStatus ( ) . equals ( InventoryLoadingStatusConstant . yizhuangche . getValue ( ) ) ) ;
if ( stockArticleLoadingStatus & & inventoryLoadingStatus ) {
distributionAppReservationVO . setIsload ( "是" ) ;
} else {
distributionAppReservationVO . setIsload ( "否" ) ;
}
// //查询备货是否完成
// int aLong = distributionStockMapper.selectCount(new QueryWrapper<DistributionStockEntity>().lambda()
// .eq(DistributionStockEntity::getReservationId, distributionAppReservationVO.getId())
// .eq(DistributionStockEntity::getType, 1)
// ).intValue();
// distributionAppReservationVO.setIsstock("是");
// distributionAppReservationVO.setIsload("是");
// if (aLong < distributionAppReservationVO.getReservationNum()) {
// distributionAppReservationVO.setIsstock("否");
// }
// if (distributionAppReservationVO.getLoadingNub() < distributionAppReservationVO.getReservationNum()) {
// distributionAppReservationVO.setIsload("否");
// }
}
return page . setRecords ( customList ) ;
}
@ -1876,10 +1903,10 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
List < DistributionStockArticleDTO > stockArticle = deliveryListDTO . getStockArticle ( ) ;
DistributionReservationDTO reservation = deliveryListDTO . getReservation ( ) ;
//根据运单号进行分组
Map < String , List < DistributionStockArticleDTO > > newClient = stockArticle . stream ( ) . collect ( Collectors . groupingBy ( DistributionStockArticleDTO : : getWaybillNumber ) ) ;
Map < String , List < DistributionStockArticleDTO > > newClient = stockArticle . stream ( ) . collect ( Collectors . groupingBy ( DistributionStockArticleDTO : : getConsigneeUnit ) ) ;
//查询出该配送任务下的客户,并将这些客户根据运单号进行分组
List < DistributionReservationEntity > reservationEntityList = distributionReservationMapper . getDeliveryReservation ( deliveryListEntity . getId ( ) ) ;
Map < String , List < DistributionReservationEntity > > oldClient = reservationEntityList . stream ( ) . collect ( Collectors . groupingBy ( DistributionReservationEntity : : getWaybillNo ) ) ;
Map < String , List < DistributionReservationEntity > > oldClient = reservationEntityList . stream ( ) . collect ( Collectors . groupingBy ( DistributionReservationEntity : : getReceivingUnit ) ) ;
//订单总数量
AtomicInteger orderTotal = new AtomicInteger ( ) ;
//配送任务仓库名称
@ -2039,7 +2066,8 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
} else {
//根据配送计划和运单号查询出该预约
DistributionReservationEntity reservationEntity = baseMapper . selectReservationByDeliveryListIdAndCustomer ( deliveryListEntityId , k ) ;
// DistributionReservationEntity reservationEntity = baseMapper.selectReservationByDeliveryListIdAndCustomer(deliveryListEntityId, k);
DistributionReservationEntity reservationEntity = baseMapper . selectReservationByDeliveryListIdAndCustomerUnit ( deliveryListEntityId , k ) ;
//查询出该预约下的订单信息
List < DistributionReservationStockarticleEntity > reservationStockarticleEntityList = distributionReservationStockarticleMapper . selectList ( Wrappers . < DistributionReservationStockarticleEntity > query ( ) . lambda ( )
. eq ( DistributionReservationStockarticleEntity : : getReservationId , reservationEntity . getId ( ) )
@ -2181,6 +2209,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
distributionReservationPackageService . updateById ( p ) ;
} ) ;
reservationStockarticleEntity . setStockArticleStatus ( ReservationOrderStatusConstant . quxiao . getValue ( ) ) ;
distributionReservationStockarticleMapper . updateById ( reservationStockarticleEntity ) ;
} ) ;
} ) ;
@ -2202,7 +2231,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
} ) ;
//删除预约
oldClient . forEach ( ( f , g ) - > {
DistributionReservationEntity reservationEntity = baseMapper . selectReservationByDeliveryListIdAndCustomer ( deliveryListEntity . getId ( ) , f ) ;
DistributionReservationEntity reservationEntity = baseMapper . selectReservationByDeliveryListIdAndCustomerUnit ( deliveryListEntity . getId ( ) , f ) ;
reservationEntity . setReservationStatus ( ReservationStatusConstant . yiquexiao . getValue ( ) ) ;
distributionReservationMapper . updateById ( reservationEntity ) ;
//这里还需要将减少的预约单下的所有订单、包件进行取消状态
@ -2286,8 +2315,8 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
deliveryListEntity . setUnloadingTeamName ( stockupInfo . getUnloaderName ( ) ) ;
}
if ( Func . isNotEmpty ( stockupInfo . getLoaderId ( ) ) & & Func . isNotEmpty ( stockupInfo . getLoaderName ( ) ) ) {
deliveryListEntity . setUnl oadingTeamId ( stockupInfo . getLoaderId ( ) ) ;
deliveryListEntity . setUnl oadingTeamName ( stockupInfo . getLoaderName ( ) ) ;
deliveryListEntity . setL oadingTeamId ( stockupInfo . getLoaderId ( ) ) ;
deliveryListEntity . setL oadingTeamName ( stockupInfo . getLoaderName ( ) ) ;
}
deliveryListEntity . setOrderNumber ( orderTotal . get ( ) ) ;
deliveryListEntity . setDeliveryNumber ( deliveryPackageTotal . get ( ) ) ;
@ -2672,31 +2701,33 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
//查询配送下的预约信息和配送司机信息
DistributionDeliveryListEntity deliveryListEntity = this . getById ( id ) ;
DistributionDeliveryListVO deliveryListVO = Func . copy ( deliveryListEntity , DistributionDeliveryListVO . class ) ;
switch ( deliveryListEntity . getKind ( ) ) {
case "1" :
//查询自主配送
QueryWrapper < DistributionDeliverySelfEntity > qw = new QueryWrapper < > ( ) ;
qw . lambda ( ) . eq ( DistributionDeliverySelfEntity : : getDeliveryId , id ) ;
List < DistributionDeliverySelfEntity > distributionDeliverySelfEntities = distributionDeliverySelfService . getBaseMapper ( ) . selectList ( qw ) ;
List < DistributionDeliverySelfVO > deliverySelfVOS = new ArrayList < > ( ) ;
distributionDeliverySelfEntities . forEach ( s - > {
DistributionDeliverySelfVO deliverySelfVO = Func . copy ( s , DistributionDeliverySelfVO . class ) ;
deliverySelfVOS . add ( deliverySelfVO ) ;
} ) ;
deliveryListVO . setDeliverySelfVO ( deliverySelfVOS ) ;
break ;
case "2" :
QueryWrapper < DistributionDeliveryTripartiteEntity > tqw = new QueryWrapper < > ( ) ;
tqw . lambda ( ) . eq ( DistributionDeliveryTripartiteEntity : : getDeliveryId , id ) ;
DistributionDeliveryTripartiteEntity tripartiteEntity = distributionDeliveryTripartiteService . getBaseMapper ( ) . selectOne ( tqw ) ;
DistributionDeliveryTripartiteVO deliveryTripartiteVO = Func . copy ( tripartiteEntity , DistributionDeliveryTripartiteVO . class ) ;
deliveryListVO . setDeliveryTripartiteVO ( deliveryTripartiteVO ) ;
break ;
if ( Func . isNotEmpty ( deliveryListVO ) ) {
switch ( deliveryListEntity . getKind ( ) ) {
case "1" :
//查询自主配送
QueryWrapper < DistributionDeliverySelfEntity > qw = new QueryWrapper < > ( ) ;
qw . lambda ( ) . eq ( DistributionDeliverySelfEntity : : getDeliveryId , id ) ;
List < DistributionDeliverySelfEntity > distributionDeliverySelfEntities = distributionDeliverySelfService . getBaseMapper ( ) . selectList ( qw ) ;
List < DistributionDeliverySelfVO > deliverySelfVOS = new ArrayList < > ( ) ;
distributionDeliverySelfEntities . forEach ( s - > {
DistributionDeliverySelfVO deliverySelfVO = Func . copy ( s , DistributionDeliverySelfVO . class ) ;
deliverySelfVOS . add ( deliverySelfVO ) ;
} ) ;
deliveryListVO . setDeliverySelfVO ( deliverySelfVOS ) ;
break ;
case "2" :
QueryWrapper < DistributionDeliveryTripartiteEntity > tqw = new QueryWrapper < > ( ) ;
tqw . lambda ( ) . eq ( DistributionDeliveryTripartiteEntity : : getDeliveryId , id ) ;
DistributionDeliveryTripartiteEntity tripartiteEntity = distributionDeliveryTripartiteService . getBaseMapper ( ) . selectOne ( tqw ) ;
DistributionDeliveryTripartiteVO deliveryTripartiteVO = Func . copy ( tripartiteEntity , DistributionDeliveryTripartiteVO . class ) ;
deliveryListVO . setDeliveryTripartiteVO ( deliveryTripartiteVO ) ;
break ;
}
}
//查询备货信息进行数据回显
//2、查询出备货信息
DistributionStockupVO stockupEntity = distributionStockupMapper . getDeliveryStockupInfo ( id ) ;
deliveryListVO . setStockupInfo ( stockupEntity ) ;
// DistributionStockupVO stockupEntity = distributionStockupMapper.getDeliveryStockupInfo(id);
// deliveryListVO.setStockupInfo(stockupEntity);
List < DistributionReservationEntity > reservationVOS = distributionReservationMapper . getMarketReservationInfo ( id ) ;
deliveryListVO . setReservationInfos ( DistributionReservationWrapper . build ( ) . listVO ( reservationVOS ) ) ;
return deliveryListVO ;
@ -2794,56 +2825,67 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
deliveryListEntity . setVehicleName ( vehicleNubs . deleteCharAt ( vehicleNubs . length ( ) - 1 ) . toString ( ) ) ;
}
//查询出原来配送信息的备货任务
DistributionStockupVO deliveryStockupInfo = distributionStockupMapper . getDeliveryStockupInfo ( deliveryListEntity . getId ( ) ) ;
// DistributionStockupVO deliveryStockupInfo = distributionStockupMapper.getDeliveryStockupInfo(deliveryListEntity.getId());
//这里查询出该备货任务的执行情况,如果该任务处于已完成的状态需要创建新的备货任务,其他的备货状态则是进行备货任务的修改
DistributionStockupDTO stockupInfo = deliveryListDTO . getStockupInfo ( ) ;
// DistributionStockupDTO stockupInfo = deliveryListDTO.getStockupInfo();
//前端进行校验这个备货任务是否发生改变,没有发生改变则不需要传递此参数
if ( ! Func . isEmpty ( stockupInfo ) ) {
if ( Func . isNotEmpty ( stockupInfo . getForkliftName ( ) ) ) {
deliveryStockupInfo . setAssignStatusName ( StockAssignStatusConstant . weizhipai . getValue ( ) ) ;
deliveryStockupInfo . setStockupStatus ( StockupStatusConstant . weibeihuo . getValue ( ) ) ;
deliveryStockupInfo . setForkliftName ( stockupInfo . getForkliftName ( ) ) ;
deliveryStockupInfo . setForkliftId ( stockupInfo . getForkliftId ( ) ) ;
//不存在备货人员,此时该任务的状态处于未指派、待分配的状态
} else {
deliveryStockupInfo . setAssignStatusName ( StockAssignStatusConstant . yizhipai . getValue ( ) ) ;
}
if ( Func . isNotEmpty ( stockupInfo . getGoodsAreaId ( ) ) ) {
deliveryStockupInfo . setGoodsAreaId ( stockupInfo . getGoodsAreaId ( ) ) ;
deliveryStockupInfo . setStockupArea ( stockupInfo . getGoodsAreaName ( ) ) ;
}
// ---------------------------2023-09-06 取消班组职能字段维护------------------------------------
// if (Func.isNotEmpty(stockupInfo.getLoaderId())) {
// deliveryStockupInfo.setLoaderId(stockupInfo.getLoaderId());
// deliveryStockupInfo.setLoaderName(stockupInfo.getLoaderName());
// if (!Func.isEmpty(stockupInfo)) {
// if (Func.isNotEmpty(stockupInfo.getForkliftName())) {
// deliveryStockupInfo.setAssignStatusName(StockAssignStatusConstant.weizhipai.getValue());
// deliveryStockupInfo.setStockupStatus(StockupStatusConstant.weibeihuo.getValue());
// deliveryStockupInfo.setForkliftName(stockupInfo.getForkliftName());
// deliveryStockupInfo.setForkliftId(stockupInfo.getForkliftId());
// //不存在备货人员,此时该任务的状态处于未指派、待分配的状态
// } else {
// deliveryStockupInfo.setAssignStatusName(StockAssignStatusConstant.yizhipai.getValue());
// }
// if (Func.isNotEmpty(stockupInfo.getLoadAndUnload())) {
// deliveryStockupInfo.setTeamResponsibility(stockupInfo.getLoadAndUnload());
// if (Func.isNotEmpty(stockupInfo.getGoodsAreaId())) {
// deliveryStockupInfo.setGoodsAreaId(stockupInfo.getGoodsAreaId());
// deliveryStockupInfo.setStockupArea(stockupInfo.getGoodsAreaName());
// }
//// ---------------------------2023-09-06 取消班组职能字段维护------------------------------------
//// if (Func.isNotEmpty(stockupInfo.getLoaderId())) {
//// deliveryStockupInfo.setLoaderId(stockupInfo.getLoaderId());
//// deliveryStockupInfo.setLoaderName(stockupInfo.getLoaderName());
//// }
//// if (Func.isNotEmpty(stockupInfo.getLoadAndUnload())) {
//// deliveryStockupInfo.setTeamResponsibility(stockupInfo.getLoadAndUnload());
//// }
// if (Func.isNotEmpty(stockupInfo.getStockupDate())) {
// deliveryStockupInfo.setStockupDate(stockupInfo.getStockupDate());
// }
if ( Func . isNotEmpty ( stockupInfo . getStockupDate ( ) ) ) {
deliveryStockupInfo . setStockupDate ( stockupInfo . getStockupDate ( ) ) ;
}
if ( Func . isNotEmpty ( stockupInfo . getRemarks ( ) ) ) {
deliveryStockupInfo . setRemarks ( stockupInfo . getRemarks ( ) ) ;
}
// if (Func.isNotEmpty(stockupInfo.getRemarks())) {
// deliveryStockupInfo.setRemarks(stockupInfo.getRemarks());
// }
deliveryStockupInfo . setOutboundDate ( stockupInfo . getOutboundDate ( ) ) ;
distributionStockupMapper . updateById ( deliveryStockupInfo ) ;
}
//// if (Func.isNotEmpty(stockupInfo.getRemarks())) {
//// deliveryStockupInfo.setRemarks(stockupInfo.getRemarks());
//// }
// deliveryStockupInfo.setOutboundDate(stockupInfo.getOutboundDate());
// distributionStockupMapper.updateById(deliveryStockupInfo);
// }
if ( Func . isNotEmpty ( deliveryListDTO . getRemarks ( ) ) ) {
deliveryListEntity . setRemarks ( deliveryListDTO . getRemarks ( ) ) ;
}
if ( Func . isNotEmpty ( stockupInfo . getUnloaderName ( ) ) & & Func . isNotEmpty ( stockupInfo . getUnloaderId ( ) ) ) {
deliveryListEntity . setUnloadingTeamId ( stockupInfo . getUnloaderId ( ) ) ;
deliveryListEntity . setUnloadingTeamName ( stockupInfo . getUnloaderName ( ) ) ;
if ( Func . isNotEmpty ( deliveryListDTO . getUnloadingTeamId ( ) ) ) {
deliveryListEntity . setUnloadingTeamId ( deliveryListDTO . getUnloadingTeamId ( ) ) ;
}
if ( Func . isNotEmpty ( stockupInfo . getLoaderId ( ) ) & & Func . isNotEmpty ( stockupInfo . getLoaderName ( ) ) ) {
deliveryListEntity . setUnloadingTeamId ( stockupInfo . getLoaderId ( ) ) ;
deliveryListEntity . setUnloadingTeamName ( stockupInfo . getLoaderName ( ) ) ;
if ( Func . isNotEmpty ( deliveryListDTO . getUnloadingTeamName ( ) ) ) {
deliveryListEntity . setUnloadingTeamName ( deliveryListDTO . getUnloadingTeamName ( ) ) ;
}
deliveryListEntity . setTaskTime ( deliveryListDTO . getTaskTime ( ) ) ;
if ( Func . isNotEmpty ( deliveryListDTO . getTaskTime ( ) ) ) {
deliveryListEntity . setTaskTime ( deliveryListDTO . getTaskTime ( ) ) ;
}
if ( Func . isNotEmpty ( deliveryListDTO . getFee ( ) ) ) {
deliveryListEntity . setTaskTime ( deliveryListDTO . getTaskTime ( ) ) ;
}
// if (Func.isNotEmpty(stockupInfo.getUnloaderName()) && Func.isNotEmpty(stockupInfo.getUnloaderId())) {
// deliveryListEntity.setUnloadingTeamId(stockupInfo.getUnloaderId());
// deliveryListEntity.setUnloadingTeamName(stockupInfo.getUnloaderName());
// }
// if (Func.isNotEmpty(stockupInfo.getLoaderId()) && Func.isNotEmpty(stockupInfo.getLoaderName())) {
// deliveryListEntity.setUnloadingTeamId(stockupInfo.getLoaderId());
// deliveryListEntity.setUnloadingTeamName(stockupInfo.getLoaderName());
// }
deliveryListEntity . setCustomersNumber ( clientTotal . get ( ) ) ;
//对配送进行更改
this . updateById ( deliveryListEntity ) ;
@ -3140,42 +3182,222 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
@Override
public PrintPreviewVO printBatch ( String ids ) throws Exception {
public List < PrintPreviewVO > printBatch ( String ids , Integer type ) throws Exception {
PrintPreviewVO printPreviewVO = new PrintPreviewVO ( ) ;
List < Map > data = new ArrayList < > ( ) ;
BasicPrintTemplateEntity template = basicPrintTemplateClient . getPrintTemplate ( PrintTemplateStatusConstant . daiqueren_1 . getValue ( ) ) ;
if ( ObjectUtil . isEmpty ( template ) ) {
throw new ServiceException ( "模板内容未找到" ) ;
}
String html = TemplateUtil . getTemplateByUrl ( template . getTemplateUrl ( ) ) ;
printPreviewVO . setTemplateHtml ( html ) ;
printPreviewVO . setTemplateId ( template . getId ( ) ) ;
BasicPrintTemplateEntity template = getPrintTemplate ( type ) ;
String html = TemplateUtil . getTemplateByUrl ( template . getTemplateUrl ( ) ) ;
// printPreviewVO.setTemplateHtml(html);
// printPreviewVO.setTemplateId(template.getId());
String [ ] idArray = ids . split ( "," ) ;
if ( ObjectUtils . isNull ( idArray ) ) {
throw new ServiceException ( "参数错误" ) ;
}
if ( 2 = = type ) {
return handleShiPeiData ( template , idArray , html ) ;
} else if ( 1 = = type ) {
return handleShangPeiData ( template . getId ( ) , idArray , html ) ;
} else {
log . warn ( "###########printBatch: 未知的打印类型" ) ;
throw new CustomerException ( 403 , "未知的打印类型" ) ;
}
}
@Override
public void testData ( String s ) throws Exception {
String [ ] split = s . split ( "," ) ;
handleShangPeiData ( 1111L , split , "111" ) ;
}
private List < PrintPreviewVO > handleShangPeiData ( Long templateId , String [ ] idArray , String html ) throws Exception {
List < PrintPreviewVO > result = new ArrayList < > ( ) ;
for ( String id : idArray ) {
// 获取需要的数据
//查询对应配送单
DistributionDeliveryListEntity deliveryListEntity = baseMapper . selectById ( id ) ; //配送单
if ( Objects . isNull ( deliveryListEntity ) ) {
log . warn ( "#########handleShangPeiData: 配送单信息不存在 deliveryListEntityId={}" , id ) ;
throw new CustomerException ( 403 , "配送单信息不存在" ) ;
}
Long deliveryListEntityId = deliveryListEntity . getId ( ) ;
String taskTime = deliveryListEntity . getTaskTime ( ) ; //配送时间
String kind = deliveryListEntity . getKind ( ) ;
String dirverName = "" ;
String dirverPhone = "" ;
String carNumber = "" ;
if ( "1" . equals ( kind ) ) {
QueryWrapper < DistributionDeliverySelfEntity > queryWrapper = new QueryWrapper < > ( ) ;
queryWrapper . eq ( "delivery_id" , deliveryListEntityId ) ;
DistributionDeliverySelfEntity deliverySelfEntity = distributionDeliverySelfService . getOne ( queryWrapper ) ;
dirverName = deliverySelfEntity . getDriverName ( ) ;
dirverPhone = deliverySelfEntity . getDriverPhone ( ) ;
carNumber = deliverySelfEntity . getVehicleNub ( ) ;
} else if ( "2" . equals ( kind ) ) {
QueryWrapper < DistributionDeliveryTripartiteEntity > queryWrapper = new QueryWrapper < > ( ) ;
queryWrapper . eq ( "delivery_id" , deliveryListEntityId ) ;
DistributionDeliveryTripartiteEntity deliveryTripartiteEntity = distributionDeliveryTripartiteService . getOne ( queryWrapper ) ;
dirverName = deliveryTripartiteEntity . getDriverName ( ) ;
dirverPhone = deliveryTripartiteEntity . getDriverPhone ( ) ;
carNumber = deliveryTripartiteEntity . getVehicleNum ( ) ;
}
List < DistributionReservationEntity > distributionReservationEntityList = distributionReservationMapper . findByDeliveryId ( deliveryListEntityId ) ;
//循环查询出来的预约单
for ( DistributionReservationEntity reservationEntity : distributionReservationEntityList ) {
Map < String , Object > map = new HashMap < > ( ) ;
map . put ( "配送单号" , reservationEntity . getReservationCode ( ) ) ;
String fileTypeName = QRCodeUtil . createCodeToFile ( reservationEntity . getReservationCode ( ) ) ;
map . put ( "配送单二维码" , QRCodeUtil . getEmpAutograph ( fileTypeName ) ) ;
map . put ( "收货单单位" , reservationEntity . getReceivingUnit ( ) ) ; //收货单单位
map . put ( "商场名称" , reservationEntity . getStoreName ( ) ) ; //商场名称
map . put ( "收货人" , reservationEntity . getConsignee ( ) ) ; //收货人
map . put ( "收货人电话" , reservationEntity . getDeliveryPhone ( ) ) ; //收货人电话
map . put ( "收货人地址" , reservationEntity . getDeliveryAddress ( ) ) ; //收货人地址
map . put ( "配送时间" , taskTime ) ; //配送时间
map . put ( "承运商" , deliveryListEntity . getDistributionCompany ( ) ) ;
map . put ( "配送仓库" , deliveryListEntity . getWarehouseName ( ) ) ;
map . put ( "出库时间" , deliveryListEntity . getWarehouseName ( ) ) ;
map . put ( "送货司机" , dirverName + "/" + dirverPhone ) ;
map . put ( "车牌号" , carNumber ) ;
Long reservationId = reservationEntity . getId ( ) ; //预约id
//通过预约id查询所有包件并按三级品类分组
List < Map < String , Object > > categoryList = distributionReservationMapper . findAllCategoryNum ( reservationId ) ;
//计算一个总计
Map < String , Object > total = new HashMap < > ( ) ;
Integer totalNum = 0 ;
for ( Map < String , Object > m : categoryList ) {
Set < String > set = m . keySet ( ) ;
String categoryName = "" ;
Long num = 0L ;
for ( String s : set ) {
if ( "num" . equals ( s ) ) {
num = ( Long ) m . get ( s ) ;
totalNum = totalNum + num . intValue ( ) ;
} else {
categoryName = ( String ) m . get ( s ) ;
}
}
total . put ( categoryName , num ) ;
}
total . put ( "合计件数" , totalNum ) ;
//先查询预约单对应有哪些订单
QueryWrapper < DistributionReservationStockarticleEntity > queryWrapper = new QueryWrapper < > ( ) ;
queryWrapper . eq ( "reservation_id" , reservationId ) ;
List < DistributionReservationStockarticleEntity > reservationStockarticleList = distributionReservationStockarticleService . list ( queryWrapper ) ;
List < Map < String , Object > > ls = new ArrayList < > ( ) ;
BigDecimal totalPrice = BigDecimal . ZERO ;
for ( int i = 0 ; i < reservationStockarticleList . size ( ) ; i + + ) {
DistributionReservationStockarticleEntity reservationStockarticleEntity = reservationStockarticleList . get ( i ) ;
Long stockArticleId = reservationStockarticleEntity . getStockArticleId ( ) ; //订单id
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleService . getById ( stockArticleId ) ;
if ( Objects . isNull ( stockArticleEntity ) ) {
log . warn ( "#########handleShangPeiData: 订单信息不存在 stockArticleId={}" , stockArticleId ) ;
throw new CustomerException ( 403 , "订单信息不存在" ) ;
}
Map < String , Object > orderMap = new HashMap < > ( ) ;
orderMap . put ( "序号" , i + 1 ) ;
orderMap . put ( "运单号" , stockArticleEntity . getWaybillNumber ( ) ) ;
orderMap . put ( "合同号" , stockArticleEntity . getOrderCode ( ) ) ;
//通过订单id和预约id查询对应包件的库位信息
List < String > allocationStrList = distributionReservationMapper . getAllocationByStockArticleIdAndReservationId ( stockArticleId , reservationId ) ;
String allocationStr = StringUtils . join ( allocationStrList , "," ) ;
orderMap . put ( "货位" , allocationStr ) ;
//通过订单id和预约id查询对应包件的备货区信息
List < String > stockupAreaStrList = distributionReservationMapper . getStockupAreaByStockArticleIdAndReservationId ( stockArticleId , reservationId ) ;
String stockupAreaStr = StringUtils . join ( stockupAreaStrList , "," ) ;
orderMap . put ( "备货区" , stockupAreaStr ) ;
//查询当前订单的品类数量
List < Map < String , Object > > mapList = distributionReservationMapper . getCategoryByStockArticleIdAndReservationId ( stockArticleId , reservationId ) ;
Map < String , Object > numObj = new HashMap < > ( ) ;
Integer tn = 0 ;
Set < String > set = total . keySet ( ) ;
for ( String key : set ) {
if ( ! "合计件数" . equals ( key ) ) {
numObj . put ( key , 0 ) ;
for ( Map < String , Object > m : mapList ) {
String thirdProduct = ( String ) m . get ( "thirdProduct" ) ;
Long num = ( Long ) m . get ( "num" ) ;
if ( thirdProduct . equals ( key ) ) {
numObj . put ( key , num ) ;
tn = tn + num . intValue ( ) ;
}
}
}
}
numObj . put ( "合计数量" , tn ) ;
orderMap . put ( "产品明细" , numObj ) ;
//通过订单id和预约id查询对应包件的物料信息
List < String > materialNameStrList = distributionReservationMapper . getMaterialNameByStockArticleIdAndReservationId ( stockArticleId , reservationId ) ;
String materialNameStr = StringUtils . join ( materialNameStrList , "," ) ;
orderMap . put ( "物料名称" , materialNameStr ) ;
orderMap . put ( "到付运费" , 0 ) ; //todo 需要累加到totalPrice上
ls . add ( orderMap ) ;
}
total . put ( "到付费用" , totalPrice ) ;
map . put ( "明细" , ls ) ;
map . put ( "合计" , total ) ;
String popHtml = TemplateUtil . popTemplate ( "商配配配送单" , map , html ) ;
PrintPreviewVO printPreviewVO = new PrintPreviewVO ( ) ;
printPreviewVO . setTemplateId ( templateId ) ;
printPreviewVO . setTemplateHtml ( popHtml ) ;
result . add ( printPreviewVO ) ;
}
}
return result ;
}
Map < String , Object > map = new HashMap < > ( ) ;
/ * *
* 得到填充内容
* @param template
* @param idArray
* @param html
* @return
* @throws Exception
* /
private List < PrintPreviewVO > handleShiPeiData ( BasicPrintTemplateEntity template , String [ ] idArray , String html ) throws Exception {
List < PrintPreviewVO > result = new ArrayList < > ( ) ;
List < Map > data = new ArrayList < > ( ) ;
for ( String id : idArray ) {
// 获取需要的数据
DistributionDeliveryListEntity byId = this . getById ( id ) ;
if ( ObjectUtils . isNull ( byId ) ) {
throw new ServiceException ( "未找到相关数据" ) ;
}
//查询这个配送下面的预约单
List < DistributionReservationEntity > distributionReservationEntityList = distributionReservationMapper . findByDeliveryId ( byId . getId ( ) ) ;
for ( DistributionReservationEntity distributionReservationEntity : distributionReservationEntityList ) {
if ( distributionReservationEntityList . isEmpty ( ) ) {
throw new ServiceException ( "未找到相关数据" ) ;
}
for ( DistributionReservationEntity distributionReservationEntity : distributionReservationEntityList ) {
Map < String , Object > map = new HashMap < > ( ) ;
log . debug ( ">>>> distributionReservationEntity {}" , distributionReservationEntity ) ;
map . put ( "配送单号" , distributionReservationEntity . getReservationCode ( ) ) ;
// todo 商场电话是否需要查询商场信息得到电话
String fileTypeName = QRCodeUtil . createCodeToFile ( distributionReservationEntity . getReservationCode ( ) ) ;
map . put ( "配送单二维码" , QRCodeUtil . getEmpAutograph ( fileTypeName ) ) ;
// todo 查询运单的收货人电话
map . put ( "商场名称" , distributionReservationEntity . getMallName ( ) ) ;
map . put ( "商场电话" , distributionReservationEntity . getReservationCode ( ) ) ;
map . put ( "送货日期" , DateUtil . format ( distributionReservationEntity . getReservationDate ( ) , "yyyy-MM-dd" ) + " 全天" ) ;
@ -3187,44 +3409,52 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
map . put ( "送货地址" , distributionReservationEntity . getDeliveryAddress ( ) ) ;
// 通过预约单查询预约下面的订单 --1 或者 库存品 --2
List < Map < String , Object > > spaclOrderList = buildSpaclOrders ( distributionReservationEntity , 1 ) ;
List < Map < String , Object > > spaclOrderList = buildSpaclOrders ( distributionReservationEntity , 1 ) ;
map . put ( "定制品集合" , spaclOrderList ) ;
map . put ( "备注" , distributionReservationEntity . getRemarks ( ) ) ;
map . put ( "送货司机" , byId . getVehicleName ( ) + "/" + byId . getDriverName ( ) ) ;
data . add ( map ) ;
String popHtml = TemplateUtil . popTemplate ( "市配配送单" , map , html ) ;
PrintPreviewVO printPreviewVO = new PrintPreviewVO ( ) ;
printPreviewVO . setTemplateId ( template . getId ( ) ) ;
printPreviewVO . setTemplateHtml ( popHtml ) ;
result . add ( printPreviewVO ) ;
}
map . put ( "送货司机" , byId . getTrainNumber ( ) + "/" + byId . getDriverName ( ) ) ;
data . add ( map ) ;
}
return result ;
}
return printPreviewVO ;
private BasicPrintTemplateEntity getPrintTemplate ( Integer type ) {
BasicPrintTemplateEntity template = null ;
if ( 2 = = type ) {
template = basicPrintTemplateClient . getPrintTemplate ( PrintTemplateStatusConstant . daiqueren_1 . getValue ( ) ) ;
} else if ( 1 = = type ) {
template = basicPrintTemplateClient . getPrintTemplate ( PrintTemplateStatusConstant . daiqueren_12 . getValue ( ) ) ;
}
if ( ObjectUtil . isEmpty ( template ) ) {
throw new ServiceException ( "模板内容未找到" ) ;
}
return template ;
}
/ * *
* 构建预约单下面的订单信息
*
* @param id 预约单ID
* @param distributionReservationEntity 预约单
* @param i 构建类型 1 表示订单 2 表示库存品
* @return List
* /
private List < Map < String , Object > > buildSpaclOrders ( DistributionReservationEntity distributionReservationEntity , int i ) {
private List < Map < String , Object > > buildSpaclOrders ( DistributionReservationEntity distributionReservationEntity , int i ) {
List < DistributionReservationStocklistEntity > distributionReservationStocklistEntities ;
List < DistributionReservationStockarticleEntity > distributionReservationStockarticleEntityList ;
List < Map < String , Object > > result = new ArrayList < > ( ) ;
List < Map < String , Object > > result = new ArrayList < > ( ) ;
switch ( i ) {
case 1 :
// 订单
@ -3233,17 +3463,18 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
// 取值
for ( DistributionReservationStockarticleEntity distributionReservationStockarticleEntity : distributionReservationStockarticleEntityList ) {
Map < String , Object > temp = new HashMap < > ( ) ;
Map < String , Object > temp = new HashMap < > ( ) ;
DistributionStockArticleEntity distributionStockArticleEntity = distributionStockArticleMapper . selectById ( distributionReservationStockarticleEntity . getStockArticleId ( ) ) ;
temp . put ( "合同号" , distributionStockArticleEntity . getOrderCode ( ) ) ;
temp . put ( "产品名称" , distributionStockArticleEntity . getDescriptionGoods ( ) ) ;
temp . put ( "合同号" , distributionStockArticleEntity . getOrderCode ( ) ) ;
temp . put ( "产品名称" , distributionStockArticleEntity . getDescriptionGoods ( ) ) ;
//todo 单位是否需要查询物料表
temp . put ( "单位" , "件" ) ;
temp . put ( "数量" , distributionReservationStockarticleEntity . getReservationNum ( ) ) ;
temp . put ( "备货区" , null ) ;
temp . put ( "单位" , "件" ) ;
temp . put ( "数量" , distributionReservationStockarticleEntity . getReservationNum ( ) ) ;
temp . put ( "备货区" , null ) ;
//todo 这里还没完成
temp . put ( "货位" , null ) ;
result . add ( temp ) ;