@ -42,7 +42,9 @@ import com.logpm.distribution.vo.*;
import com.logpm.distribution.vo.app.* ;
import com.logpm.distribution.vo.print.PrintPreviewVO ;
import com.logpm.distribution.wrapper.* ;
import com.logpm.warehouse.entity.WarehouseRetentionScanEntity ;
import com.logpm.warehouse.entity.WarehouseTrayGoodsEntity ;
import com.logpm.warehouse.feign.IWarehouseRetentionScanClient ;
import com.logpm.warehouse.feign.IWarehouseTrayGoodsClient ;
import com.logpm.warehouse.feign.IWarehouseTrayTypeClient ;
import com.logpm.warehouse.feign.IWarehouseUpdownTypeClient ;
@ -52,6 +54,7 @@ import lombok.extern.log4j.Log4j2;
import org.apache.commons.lang.StringUtils ;
import org.apache.ibatis.scripting.xmltags.ForEachSqlNode ;
import org.jetbrains.annotations.NotNull ;
import org.springblade.common.constant.DictBizConstant ;
import org.springblade.common.constant.DistributionTypeConstant ;
import org.springblade.common.constant.Inventory.InventoryLoadingStatusConstant ;
import org.springblade.common.constant.common.IsOrNoConstant ;
@ -79,6 +82,7 @@ import org.springblade.core.mp.support.Query;
import org.springblade.core.secure.BladeUser ;
import org.springblade.core.secure.utils.AuthUtil ;
import org.springblade.core.tool.api.R ;
import org.springblade.core.tool.constant.BladeConstant ;
import org.springblade.core.tool.utils.Func ;
import org.springblade.core.tool.utils.ObjectUtil ;
import org.springblade.system.cache.DictBizCache ;
@ -149,6 +153,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
private final IDistributionReservationZeroPackageService distributionReservationZeroPackageService ;
private final IDistributionParcelNumberService distributionParcelNumberService ;
private final IWarehouseTrayGoodsClient warehouseTrayGoodsClient ;
private final IWarehouseRetentionScanClient warehouseRetentionScanClient ;
// private final DistributionStockMapper distributionStockMapper;
// private final BladeRedis redis;
@ -174,12 +179,55 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
@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()));
//});
return distributionDeliveryListList ;
public List < DistributionDeliveryListExcel > exportDistributionDeliveryList ( Map < String , Object > distributionDeliveryList ) {
Object o = distributionDeliveryList . get ( "ids" ) ;
if ( ObjectUtils . isNotNull ( o ) ) {
distributionDeliveryList . remove ( "ids" ) ;
}
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient . getMyCurrentWarehouse ( ) ;
if ( ObjectUtils . isNull ( myCurrentWarehouse ) ) {
throw new ServiceException ( "没有仓库信息!" ) ;
}
QueryWrapper < DistributionDeliveryListEntity > queryWrapper = Condition . getQueryWrapper ( distributionDeliveryList , DistributionDeliveryListEntity . class ) ;
queryWrapper . eq ( "warehouse_id" , myCurrentWarehouse . getId ( ) ) ;
if ( ObjectUtils . isNotNull ( o ) ) {
queryWrapper . in ( "id" , String . valueOf ( o ) . split ( "," ) ) ;
}
queryWrapper . lambda ( ) . eq ( DistributionDeliveryListEntity : : getIsDeleted , BladeConstant . DB_NOT_DELETED ) ;
List < DistributionDeliveryListExcel > list = new ArrayList < > ( ) ;
List < DistributionDeliveryListVO > distributionDeliveryListVOS = baseMapper . exportDistributionDeliveryList ( queryWrapper ) ;
distributionDeliveryListVOS . forEach ( dis - > {
// distributionDeliveryList.setTypeName(DictCache.getValue(DictEnum.YES_NO, DistributionDeliveryList.getType()));
DistributionDeliveryListExcel deliveryListExcel = new DistributionDeliveryListExcel ( ) ;
BeanUtils . copyProperties ( dis , deliveryListExcel ) ;
String value = DictBizCache . getValue ( DictBizConstant . DISTRIBUTION_TYPE , dis . getType ( ) ) ;
deliveryListExcel . setType ( value ) ;
String valuek = DictBizCache . getValue ( DictBizConstant . DISTRIBUTION_DELIVERY_KiIND , dis . getKind ( ) ) ;
deliveryListExcel . setKind ( valuek ) ;
String valueks = DictBizCache . getValue ( DictBizConstant . DISTRIBUTION_DELIVERY_STATUS , dis . getDeliveryStatus ( ) ) ;
deliveryListExcel . setState ( valueks ) ;
deliveryListExcel . setInventoryNub ( ObjectUtils . isNotNull ( dis . getInventoryNub ( ) ) ? dis . getInventoryNub ( ) : 0 ) ;
//查询配送数据
if ( dis . getKind ( ) . equals ( "1" ) ) {
//z自
List < DistributionDeliverySelfEntity > list1 = distributionDeliverySelfService . list ( Wrappers . < DistributionDeliverySelfEntity > query ( ) . lambda ( ) . eq ( DistributionDeliverySelfEntity : : getDeliveryId , dis . getId ( ) ) ) ;
String collect = list1 . stream ( ) . map ( DistributionDeliverySelfEntity : : getDriverName ) . collect ( Collectors . joining ( ) ) ;
String colle = list1 . stream ( ) . map ( DistributionDeliverySelfEntity : : getVehicleNub ) . collect ( Collectors . joining ( ) ) ;
deliveryListExcel . setDriver ( collect ) ;
deliveryListExcel . setVehicle ( colle ) ;
} else {
//三
List < DistributionDeliveryTripartiteEntity > list1 = distributionDeliveryTripartiteService . list ( Wrappers . < DistributionDeliveryTripartiteEntity > query ( ) . lambda ( ) . eq ( DistributionDeliveryTripartiteEntity : : getDeliveryId , dis . getId ( ) ) ) ;
String collect = list1 . stream ( ) . map ( DistributionDeliveryTripartiteEntity : : getDriverName ) . collect ( Collectors . joining ( ) ) ;
String colle = list1 . stream ( ) . map ( DistributionDeliveryTripartiteEntity : : getVehicleNum ) . collect ( Collectors . joining ( ) ) ;
deliveryListExcel . setDriver ( collect ) ;
deliveryListExcel . setVehicle ( colle ) ;
}
deliveryListExcel . setLoadingTeam ( "装:" + dis . getLoadingTeamName ( ) + ",卸:" + dis . getUnloadingTeamName ( ) ) ;
list . add ( deliveryListExcel ) ;
} ) ;
return list ;
}
@Override
@ -1245,7 +1293,9 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
BeanUtils . copyProperties ( distributionDeliveryTripartiteEntity , distributionDeliverySelfEntity ) ;
}
}
DistributionReservationEntity reservationEntity = distributionReservationMapper . selectById ( distrilbutionloadingscanDTO . getReservationId ( ) ) ;
reservationEntity . setLoadingStatus ( ReservationLoadingStatusConstant . yizhuangche . getValue ( ) ) ;
distributionReservationMapper . updateById ( reservationEntity ) ;
//查询预约下所有的订单信息
List < DistributionReservationStockarticleEntity > reservationStockarticleEntityList = distributionReservationStockarticleService . list ( Wrappers . < DistributionReservationStockarticleEntity > query ( ) . lambda ( )
. eq ( DistributionReservationStockarticleEntity : : getReservationId , distrilbutionloadingscanDTO . getReservationId ( ) ) ) ;
@ -1269,7 +1319,6 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
case "0" :
//订制品
v . forEach ( ord - > {
List < DistributionParcelListEntity > parcelListEntities = distributionReservationMapper . selectPackageByReservationAndStockArticle ( distrilbutionloadingscanDTO . getReservationId ( ) , ord . getStockArticleId ( ) ) ;
for ( DistributionParcelListEntity parcelListEntity : parcelListEntities ) {
DistributionLoadscanEntity loadscanEntity = new DistributionLoadscanEntity ( ) ;
@ -5108,6 +5157,142 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
return Resp . scanSuccess ( "装车成功" , str . toString ( ) ) ;
}
@Override
public R retentionScan ( DistrilbutionloadingscanDTO distrilbutionloadingscanDTO ) {
Integer retentionType = distrilbutionloadingscanDTO . getRetentionType ( ) ;
List < DistributionRetentionScanVo > retentionScanVos = new ArrayList < > ( ) ;
switch ( retentionType ) {
case 1 :
//包件--库存品 和包件
List < DistributionParcelListEntity > parcelListEntities = baseMapper . selectPackageListByDeliveryListId ( distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
// List<DisStockListDetailEntity> detailEntities = baseMapper.selectInventoryListByDeliveryListId(distrilbutionloadingscanDTO.getDeliveryId());
if ( Func . isNotEmpty ( parcelListEntities ) ) {
List < DistributionParcelListEntity > packageInfo = parcelListEntities . stream ( ) . filter ( p - > Func . isNotEmpty ( p . getOrderPackageCode ( ) ) & & p . getOrderPackageCode ( ) . equals ( distrilbutionloadingscanDTO . getBarcode ( ) ) ) . collect ( Collectors . toList ( ) ) ;
if ( packageInfo . size ( ) > 1 ) {
log . error ( "################包条码重复:{}" , distrilbutionloadingscanDTO . getBarcode ( ) ) ;
return Resp . scanFail ( "操作失败" , "操作失败" ) ;
}
if ( packageInfo . size ( ) = = 1 ) {
// DistributionRetentionScanVo distributionRetentionScanVo = new DistributionRetentionScanVo();
//此时才是满足条件的包件,能够进行滞留
//通过配送任务和包件确定预约信息
DistributionParcelListEntity parcelListEntity = packageInfo . get ( 0 ) ;
DistributionRetentionScanVo retentionPackage = baseMapper . selectRetentionPackage ( parcelListEntity . getOrderPackageCode ( ) , distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
// distributionRetentionScanVo.setConditions(1);
// distributionRetentionScanVo.setOrderCode(parcelListEntity.getOrderPackageCode());
// distributionRetentionScanVo.setOrderId(parcelListEntity.getStockArticleId());
// distributionRetentionScanVo.setOrderPackageId(parcelListEntity.getId());
// distributionRetentionScanVo.setOrderPackageCode(parcelListEntity.getOrderPackageCode());
// distributionRetentionScanVo.setReservationCode(reservationEntity.getReservationCode());
// distributionRetentionScanVo.setReservationId(reservationEntity.getId());
// distributionRetentionScanVo.setRetentionQuantity(parcelListEntity.getQuantity());
// retentionScanVos.add(distributionRetentionScanVo);
}
//
} else {
List < DisStockListDetailEntity > detailEntities = baseMapper . selectInventoryListByDeliveryListId ( distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
if ( Func . isNotEmpty ( detailEntities ) ) {
List < DisStockListDetailEntity > stockListDetailEntities = detailEntities . stream ( ) . filter ( i - > Func . isNotEmpty ( i . getStockPackageCode ( ) ) & & Func . equals ( i . getStockPackageCode ( ) , distrilbutionloadingscanDTO . getDeliveryId ( ) ) ) . collect ( Collectors . toList ( ) ) ;
if ( stockListDetailEntities . size ( ) > 1 ) {
log . error ( "################库存品条码重复:{}" , distrilbutionloadingscanDTO . getBarcode ( ) ) ;
return Resp . scanFail ( "操作失败" , "操作失败" ) ;
}
if ( stockListDetailEntities . size ( ) = = 1 ) {
// DistributionRetentionScanVo distributionRetentionScanVo = new DistributionRetentionScanVo();
//此时才是满足条件的包件,能够进行滞留
//通过配送任务和包件确定预约信息
DisStockListDetailEntity disStockListDetailEntity = stockListDetailEntities . get ( 0 ) ;
DistributionRetentionScanVo inventoryPackage = baseMapper . selectRetentionInventoryPackage ( disStockListDetailEntity . getStockPackageCode ( ) , distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
retentionScanVos . add ( inventoryPackage ) ;
}
} else {
log . error ( "################查询包件和库存品为空:{}" , distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
return Resp . scanFail ( "操作失败" , "不属于该配送任务!!!" ) ;
}
}
List < DistributionRetentionScanVo > distributionRetentionScanVos = baseMapper . selectRetentionZeroPackage ( distrilbutionloadingscanDTO . getDeliveryId ( ) , distrilbutionloadingscanDTO . getBarcode ( ) ) ;
if ( Func . isNotEmpty ( distributionRetentionScanVos ) ) {
retentionScanVos . addAll ( distributionRetentionScanVos ) ;
}
break ;
case 2 :
//托盘
break ;
default :
log . info ( "################无满足滞留扫描类型" ) ;
break ;
}
// warehouseRetentionScanClient.saveRetentionScan();
if ( Func . isEmpty ( retentionScanVos ) ) {
return Resp . scanFail ( "操作失败" , "无该信息!!!" ) ;
}
return R . data ( retentionScanVos ) ;
}
@Override
public R getZeroPackageInfo ( DistrilbutionloadingscanDTO distrilbutionloadingscanDTO ) {
List < DistributionReservationStockarticleEntity > reservationStockarticleEntityList = baseMapper . selectReservationStockByDeliveryId ( distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
if ( Func . isEmpty ( reservationStockarticleEntityList ) ) {
log . error ( "#############配送任务查询订单错误,deliveryId:{}" , distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
return null ;
}
List < Long > orderIds = reservationStockarticleEntityList . stream ( ) . filter ( rs - > Func . isNotEmpty ( rs . getIsZero ( ) ) & & rs . getIsZero ( ) . equals ( IsOrNoConstant . yes . getValue ( ) ) ) . map ( DistributionReservationStockarticleEntity : : getStockArticleId ) . collect ( Collectors . toList ( ) ) ;
if ( Func . isEmpty ( orderIds ) ) {
log . error ( "####################配送任务下无零担信息:{}" ) ;
return Resp . scanFail ( "查询错误" , "该任务无零担订单" ) ;
}
List < DistributionParcelNumberVO > parcelNumberVOS = new ArrayList < > ( ) ;
orderIds . forEach ( o - > {
List < DistributionParcelNumberVO > parcelNumberVOList = baseMapper . selectDeliveryZeroOrderDetail ( o , distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
if ( Func . isNotEmpty ( parcelNumberVOList ) ) {
parcelNumberVOS . addAll ( parcelNumberVOList ) ;
}
} ) ;
if ( Func . isEmpty ( parcelNumberVOS ) ) {
return Resp . scanFail ( "查询失败" , "该配送任务无该零担订单" ) ;
}
return R . data ( parcelNumberVOS ) ;
}
@Override
public R getInventoryInfo ( DistrilbutionloadingscanDTO distrilbutionloadingscanDTO ) {
List < DisStockListDetailEntity > detailEntities = baseMapper . selectInventoryListByDeliveryListId ( distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
if ( Func . isEmpty ( detailEntities ) ) {
log . error ( "######################查询配送任务零担信息错误,deliveryId:{}," , distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
return null ;
}
List < DisStockListDetailEntity > stockListDetailEntities = detailEntities . stream ( ) . filter ( d - > Func . isNotEmpty ( d . getStockPackageCode ( ) ) ) . filter ( d - > d . getStockPackageCode ( ) . equals ( distrilbutionloadingscanDTO . getBarcode ( ) ) ) . collect ( Collectors . toList ( ) ) ;
List < DisStockListDetailVO > disStockListDetailVOS = DistributionDisStockListWrapper . build ( ) . listVO ( stockListDetailEntities ) ;
List < Long > inventoryIds = disStockListDetailVOS . stream ( ) . map ( DisStockListDetailVO : : getStockListId ) . distinct ( ) . collect ( Collectors . toList ( ) ) ;
DistributionStockListEntity distributionStockListEntity = distributionStockListService . listByIds ( inventoryIds ) . get ( 0 ) ;
disStockListDetailVOS . stream ( ) . forEach ( d - > { d . setMarketName ( distributionStockListEntity . getMarketName ( ) ) ; d . setCargoNumber ( distributionStockListEntity . getCargoNumber ( ) ) ; } ) ;
if ( Func . isEmpty ( stockListDetailEntities ) ) {
return Resp . scanFail ( "查询失败" , "不属于该配送任务" ) ;
}
return R . data ( stockListDetailEntities ) ;
}
@Override
public List < DistributionDeliverySelfVO > getDriverInfo ( Long deliveryId ) {
DistributionDeliveryListEntity distributionDeliveryListEntity = distributionDeliveryListMapper . selectById ( deliveryId ) ;
if ( Func . isEmpty ( distributionDeliveryListEntity ) ) {
log . error ( "############################# 配送任务查询为空,deliveryId为:{}" , distributionDeliveryListEntity ) ;
}
//零担订单进行装车
//这里需要进行判定是进行编辑还是进行的装车
DistributionDeliverySelfEntity distributionDeliverySelfEntity = new DistributionDeliverySelfEntity ( ) ;
if ( distributionDeliveryListEntity . getKind ( ) . equals ( "1" ) ) {
distributionDeliverySelfEntity = distributionDeliverySelfMapper . selectById ( deliveryId ) ;
} else {
DistributionDeliveryTripartiteEntity distributionDeliveryTripartiteEntity = distributionDeliveryTripartiteMapper . selectTripartiteInfo ( deliveryId ) ;
BeanUtils . copyProperties ( distributionDeliveryTripartiteEntity , distributionDeliverySelfEntity ) ;
}
return null ;
}
public Map < String , String > getDriverCar ( String kind , Long deliveryListEntityId ) {
Map < String , String > map = new HashMap < > ( ) ;