@ -116,34 +116,16 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
private final IDistributionStockListService distributionStockListService ;
private final IDistributionStockListInfoService distributionStockListInfoService ;
private final DistributionStockArticleMapper distributionStockArticleMapper ;
private final DistributionDeliveryListMapper distributionDeliveryListMapper ;
private final IWarehouseWaybillDetailClient iWarehouseWaybillDetailClient ;
// private final IDistributionStockService distributionStockService;
private IBasicPrintTemplateClient basicPrintTemplateClient ;
private final IDistributionAddvalueService distributionAddvalueService ;
private final DistributionAddvalueMapper distributionAddvalueMapper ;
private final IDistributionParcelListService distributionParcelListService ;
private final DistributionParcelListMapper distributionParcelListMapper ;
private final IDistributionParcelDetailsService distributionParcelDetailsService ;
private final IBasicMaterialClient basicMaterialClient ;
private IBasicdataWarehouseClient warehouseClient ;
private final IDictBizClient dictBizClient ;
private final IDistributionParcelNumberService parcelNumberService ;
private final DistributionParcelNumberMapper distributionParcelNumberMapper ;
private final DistributionParcelNumberServiceImpl distributionParcelNumberService ;
private final IWarehouseTrayGoodsClient warehouseTrayGoodsClient ;
private final IWarehouseUpdownGoodsClient warehouseUpdownGoodsClient ;
private final IDistributionReservationPackageService distributionReservationPackageService ;
private final IDistributionReservationStockarticleService distributionReservationStockarticleService ;
private final IDistributionReservationZeroPackageService distributionReservationZeroPackageService ;
@ -1014,11 +996,7 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
}
}
// if(Func.isNotEmpty(stockArticleEntity.getReservation())){
// stockArticleEntity.setReservationStatus("10");
// }
// }
List < Long > warehouseIdList = warehouseClient . getWarehouseIds ( ) ;
@ -1027,6 +1005,86 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
return distributionStockArticleEntityIPage ;
}
@Override
public IPage < DistributionStockArticleVO > pageListOweNew ( IPage < Object > page , Map < String , Object > distributionStockArticle ) {
DistributionStockArticleOweDTO stockArticleEntity = JSONObject . parseObject ( JSONObject . toJSONString ( distributionStockArticle ) , DistributionStockArticleOweDTO . class ) ;
if ( Func . isNotEmpty ( distributionStockArticle . get ( "typeServer" ) ) ) {
stockArticleEntity . setTypeService ( ( String ) distributionStockArticle . get ( "typeServer" ) ) ;
}
if ( Func . isNotEmpty ( stockArticleEntity . getOrderCodeNum ( ) ) ) {
String anumbering = stockArticleEntity . getOrderCodeNum ( ) . trim ( ) ;
List < String > list = CommonUtil . stringNum ( anumbering ) ;
if ( list . size ( ) > 1 ) {
stockArticleEntity . setOrderCodeNumList ( list ) ;
} else {
stockArticleEntity . setOrderCodeNumLike ( anumbering ) ;
}
}
if ( Func . isNotEmpty ( stockArticleEntity . getWaybillNum ( ) ) ) {
String waybill = stockArticleEntity . getWaybillNum ( ) . trim ( ) ;
List < String > list = CommonUtil . stringNum ( waybill ) ;
if ( list . size ( ) > 1 ) {
stockArticleEntity . setWaybillNumList ( list ) ;
} else {
stockArticleEntity . setWaybillNumLike ( waybill ) ;
}
}
if ( ObjectUtil . isNotEmpty ( stockArticleEntity . getIds ( ) ) ) {
String ids = stockArticleEntity . getIds ( ) . trim ( ) ;
List < String > list = CommonUtil . stringNum ( ids ) ;
if ( list . size ( ) > 1 ) {
stockArticleEntity . setIdsList ( list ) ;
} else {
stockArticleEntity . setIdsLike ( ids ) ;
}
}
List < Long > warehouseIdList = warehouseClient . getWarehouseIds ( ) ;
IPage < DistributionStockArticleVO > distributionStockArticleEntityIPage = baseMapper . pageListOweNew ( page , stockArticleEntity , warehouseIdList ) ;
List < DistributionStockArticleVO > records = distributionStockArticleEntityIPage . getRecords ( ) ;
records . forEach ( record - > {
if ( ObjectUtils . isNotNull ( record . getWarehouseEntryTime ( ) ) ) {
long time1 = record . getWarehouseEntryTime ( ) . getTime ( ) ; //入库
long time2 = System . currentTimeMillis ( ) ; // 现在
int days = ( int ) ( ( time2 - time1 ) / ( 1000 * 60 * 60 * 24 ) ) ;
if ( days = = 0 ) {
days = 1 ;
}
record . setStoreTime ( days + "天" ) ;
}
if ( ObjectUtils . isNotNull ( record . getCompleteSet ( ) ) ) {
switch ( record . getCompleteSet ( ) ) {
case 1 :
record . setCompleteSetName ( "否" ) ;
break ;
case 2 :
record . setCompleteSetName ( "是" ) ;
break ;
}
}
record . setTypeServerName ( DictBizCache . getValue ( DictBizConstant . DISTRIBUTION_TYPE , record . getTypeService ( ) ) ) ;
record . setOrderStatusName ( DictBizCache . getValue ( DictBizConstant . DELIVERY_ORDER_STATUS , record . getOrderStatus ( ) ) ) ;
record . setGroundingStatusName ( DictBizCache . getValue ( DictBizConstant . BASIC_GROUNDING , record . getGroundingStatus ( ) ) ) ;
record . setFreezeStatusName ( DictBizCache . getValue ( DictBizConstant . FREEZE_STATUS , record . getFreezeStatus ( ) ) ) ;
record . setReservationStatusName ( DictBizCache . getValue ( DictBizConstant . ORDER_RESERVATION_STATUS , record . getReservationStatus ( ) ) ) ;
record . setStockupStatusName ( DictBizCache . getValue ( DictBizConstant . ORDER_STOCKUP_STATUS , record . getStockupStatus ( ) ) ) ;
if ( ObjectUtils . isNotNull ( record . getCreateUser ( ) ) ) {
R < User > userR = userClient . userInfoById ( record . getCreateUser ( ) ) ;
if ( userR . isSuccess ( ) & & userR . getData ( ) ! = null ) {
record . setCreateUserName ( userR . getData ( ) . getName ( ) ) ;
}
}
record . setOrderReceiveStatusName ( DictBizCache . getValue ( DictBizConstant . ORDER_RECEIVE_STATUS , record . getOrderReceiveStatus ( ) ) ) ;
} ) ;
return distributionStockArticleEntityIPage ;
}
@Override
public R selectStockArticleInfoList ( Map < String , Object > distributionStockArticle , Query query ) {
// IPage<Object> page = Condition.getPage(query);
@ -1237,12 +1295,12 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
if ( tenant . isSuccess ( ) & & ! Objects . isNull ( tenant . getData ( ) ) ) {
Tenant data = tenant . getData ( ) ;
Integer tenantType = data . getTenantType ( ) ;
switch ( tenantType ) {
switch ( tenantType ) {
case 2 :
stockArticleEntityList = baseMapper . selectClentAllDistributionOrder ( page , stockArticleEntity ) ;
break ;
stockArticleEntityList = baseMapper . selectClentAllDistributionOrder ( page , stockArticleEntity ) ;
break ;
default :
stockArticleEntityList = baseMapper . selectAllDistributionOrder ( page , stockArticleEntity ) ;
stockArticleEntityList = baseMapper . selectAllDistributionOrder ( page , stockArticleEntity ) ;
}
@ -1619,7 +1677,7 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
public void updateOrderInfo ( String orderCode , Long warehouseId ) {
DistributionStockArticleEntity stockArticleEntity = findStockArticleByOrderCodeAndWarehouseId ( orderCode , warehouseId ) ;
if ( Objects . isNull ( stockArticleEntity ) ) {
if ( Objects . isNull ( stockArticleEntity ) ) {
return ;
}
updateOrderInfoByDistributionStockArticleEntity ( stockArticleEntity ) ;
@ -2050,7 +2108,7 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
// 这里在和原始对象进行比较
t = check2ObjSome ( t , stockArticleEntity ) ;
log . info ( "维护订单信息,t:{}" , t ) ;
log . info ( "维护订单信息,t:{}" , t ) ;
if ( ! cn . hutool . core . util . ObjectUtil . isAllEmpty ( t . getGenre ( ) , t . getReservationStatus ( ) ,
t . getHandQuantity ( ) , t . getDeliveryQuantity ( ) , t . getOrderStatus ( ) , t . getSigninQuantity ( ) ) ) {
baseMapper . updateDistributionStockArticleEntityById ( t ) ;
@ -2574,7 +2632,7 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
wayBillDetailList . forEach ( wayBillDetail - > {
productsNumList . add ( wayBillDetail . getProductName ( ) + "(" + wayBillDetail . getNum ( ) + ")" ) ;
} ) ;
map . put ( "product" , String . join ( "," , productsNumList ) ) ;
map . put ( "product" , String . join ( "," , productsNumList ) ) ;
data . add ( map ) ;
}
@ -2638,7 +2696,7 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
wayBillDetailList . forEach ( wayBillDetail - > {
productsNumList . add ( wayBillDetail . getProductName ( ) + "(" + wayBillDetail . getNum ( ) + ")" ) ;
} ) ;
map . put ( "product" , String . join ( "," , productsNumList ) ) ;
map . put ( "product" , String . join ( "," , productsNumList ) ) ;
map . put ( "remark" , StringUtil . isBlank ( remark ) ? "" : remark ) ;
}
@ -2680,17 +2738,17 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
@Override
public Integer findIncomingNumByWaybillNo ( String waybillNo , Long destinationWarehouseId ) {
return baseMapper . findIncomingNumByWaybillNo ( waybillNo , destinationWarehouseId ) ;
return baseMapper . findIncomingNumByWaybillNo ( waybillNo , destinationWarehouseId ) ;
}
@Override
public Integer findStockNumByWaybillNo ( String waybillNo , Long departureWarehouseId ) {
return baseMapper . findStockNumByWaybillNo ( waybillNo , departureWarehouseId ) ;
return baseMapper . findStockNumByWaybillNo ( waybillNo , departureWarehouseId ) ;
}
@Override
public Integer findSignNumByWaybillNo ( String waybillNo , Long destinationWarehouseId ) {
return baseMapper . findSignNumByWaybillNo ( waybillNo , destinationWarehouseId ) ;
return baseMapper . findSignNumByWaybillNo ( waybillNo , destinationWarehouseId ) ;
}
@Override
@ -2773,7 +2831,7 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
distributionStockArticleVO . setStoreTime ( days + "天" ) ;
}
if ( ObjectUtils . isNotNull ( distributionStockArticleVO . getCompleteSet ( ) ) ) {
if ( ObjectUtils . isNotNull ( distributionStockArticleVO . getCompleteSet ( ) ) ) {
switch ( distributionStockArticleVO . getCompleteSet ( ) ) {
case 1 :
distributionStockArticleVO . setCompleteSetName ( "否" ) ;
@ -2802,7 +2860,7 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
if ( ObjectUtils . isNotNull ( distributionStockupVO . getCreateUser ( ) ) ) {
R < User > userR = userClient . userInfoById ( distributionStockupVO . getCreateUser ( ) ) ;
if ( userR . isSuccess ( ) & & userR . getData ( ) ! = null ) {
if ( userR . isSuccess ( ) & & userR . getData ( ) ! = null ) {
distributionStockupVO . setCreateUserName ( userR . getData ( ) . getName ( ) ) ;
}
@ -2813,7 +2871,6 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
}
@Override
public R findZeroOrderInfo ( Long orderId ) {
DistributionStockArticleEntity stockArticle = baseMapper . selectById ( orderId ) ;
@ -2821,9 +2878,9 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
BeanUtil . copy ( stockArticle , stockArticleVO ) ;
String isZero = stockArticle . getIsZero ( ) ;
if ( "0" . equals ( isZero ) ) {
if ( "0" . equals ( isZero ) ) {
log . warn ( "###########findZeroOrderInfo: 该订单不是零担订单 " ) ;
return R . fail ( 405 , "该订单不是零担订单" ) ;
return R . fail ( 405 , "该订单不是零担订单" ) ;
}
Long waybillId = stockArticle . getWaybillId ( ) ;
@ -2835,10 +2892,10 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
queryWrapper . eq ( "stock_article_id" , orderId ) ;
List < DistributionParcelListEntity > list = distributionParcelListService . list ( queryWrapper ) ;
Map < String , Object > map = new HashMap < > ( ) ;
map . put ( "orderInfo" , stockArticle ) ;
map . put ( "waybillEntity" , waybillEntity ) ;
map . put ( "parcelList" , list ) ;
Map < String , Object > map = new HashMap < > ( ) ;
map . put ( "orderInfo" , stockArticle ) ;
map . put ( "waybillEntity" , waybillEntity ) ;
map . put ( "parcelList" , list ) ;
return R . data ( map ) ;
}
@ -2847,47 +2904,47 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
public R getOrderWarehouseDetail ( String orderCode ) {
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient . getMyCurrentWarehouse ( ) ;
List < Long > warehouseIdList = new ArrayList < > ( ) ;
if ( Objects . isNull ( myCurrentWarehouse ) ) {
if ( Objects . isNull ( myCurrentWarehouse ) ) {
//查询当前人的仓库列表
// List<BasicdataWarehouseEntity> warehouseList = warehouseClient.getMyWarehouseList();
// if (!warehouseList.isEmpty()) {
// warehouseIdList.addAll(warehouseList.stream().map(BasicdataWarehouseEntity::getId).collect(Collectors.toList()));
// }
return R . fail ( "多仓库权限人员请选择仓库后查看" ) ;
} else {
} else {
warehouseIdList . add ( myCurrentWarehouse . getId ( ) ) ;
}
if ( warehouseIdList . isEmpty ( ) ) {
if ( warehouseIdList . isEmpty ( ) ) {
return R . fail ( "当前登录人仓库信息错误" ) ;
}
Map < String , List < DistributionParcelListVO > > info = new HashMap < > ( ) ;
Map < String , List < DistributionParcelListVO > > info = new HashMap < > ( ) ;
//查询此暂存单数据在仓库的情况
List < TrunklineAdvanceDetailEntity > list = trunklineAdvanceDetailClient . selectByOrderCodeAndWarehouseId ( orderCode ) ;
if ( ! list . isEmpty ( ) ) {
List < String > orderPackageCodes = list . stream ( ) . map ( TrunklineAdvanceDetailEntity : : getOrderPackageCode ) . collect ( Collectors . toList ( ) ) ;
info = handlePackageGroupByWarehouse ( list , warehouseIdList , orderPackageCodes , Objects . isNull ( myCurrentWarehouse ) , orderCode ) ;
info = handlePackageGroupByWarehouse ( list , warehouseIdList , orderPackageCodes , Objects . isNull ( myCurrentWarehouse ) , orderCode ) ;
return R . data ( info ) ;
}
return R . data ( info , "未查询到相关出入库信息" ) ;
return R . data ( info , "未查询到相关出入库信息" ) ;
}
private Map < String , List < DistributionParcelListVO > > handlePackageGroupByWarehouse ( List < TrunklineAdvanceDetailEntity > list , List < Long > warehouseIdList , List < String > orderPackageCodes , boolean aNull , String orderCode ) {
Map < String , List < DistributionParcelListVO > > info = new HashMap < > ( ) ;
private Map < String , List < DistributionParcelListVO > > handlePackageGroupByWarehouse ( List < TrunklineAdvanceDetailEntity > list , List < Long > warehouseIdList , List < String > orderPackageCodes , boolean aNull , String orderCode ) {
Map < String , List < DistributionParcelListVO > > info = new HashMap < > ( ) ;
List < DistributionParcelListEntity > parcelListEntities = distributionParcelListService . list ( Wrappers . < DistributionParcelListEntity > query ( ) . lambda ( )
. eq ( DistributionParcelListEntity : : getOrderCode , orderCode )
. in ( DistributionParcelListEntity : : getOrderPackageCode , orderPackageCodes )
. eq ( DistributionParcelListEntity : : getOrderCode , orderCode )
. in ( DistributionParcelListEntity : : getOrderPackageCode , orderPackageCodes )
// .eq(DistributionParcelListEntity::getIsTransfer, 0)
. in ( ! aNull , DistributionParcelListEntity : : getWarehouseId , warehouseIdList )
. in ( ! aNull , DistributionParcelListEntity : : getWarehouseId , warehouseIdList )
) ;
if ( ! parcelListEntities . isEmpty ( ) ) {
List < DistributionParcelListVO > distributionParcelListVOS = DistributionParcelListWrapper . build ( ) . listVO ( parcelListEntities ) ;
info . put ( "warehouse" , distributionParcelListVOS ) ;
info . put ( "warehouse" , distributionParcelListVOS ) ;
List < String > collect = parcelListEntities . stream ( ) . map ( DistributionParcelListEntity : : getOrderPackageCode ) . collect ( Collectors . toList ( ) ) ;
Iterator < String > iterator = collect . iterator ( ) ;
while ( iterator . hasNext ( ) ) {
while ( iterator . hasNext ( ) ) {
String next = iterator . next ( ) ;
orderPackageCodes . remove ( next ) ;
iterator . remove ( ) ;
@ -2897,9 +2954,9 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
//存在未入库的包件
//进行数据组装
List < TrunklineAdvanceDetailEntity > collect = list . stream ( ) . filter ( f - > orderPackageCodes . contains ( f . getOrderPackageCode ( ) ) ) . collect ( Collectors . toList ( ) ) ;
List < DistributionParcelListVO > unWarehousePackage = handleUnWarehousePackage ( collect ) ;
List < DistributionParcelListVO > unWarehousePackage = handleUnWarehousePackage ( collect ) ;
if ( ! unWarehousePackage . isEmpty ( ) ) {
info . put ( "unWarehouse" , unWarehousePackage ) ;
info . put ( "unWarehouse" , unWarehousePackage ) ;
}
}
@ -2914,7 +2971,7 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
if ( ! waybillNos . isEmpty ( ) ) {
List < WarehouseWaybillEntity > listByWaybillIds = warehouseWaybillClient . findListByWaybillIds ( waybillNos ) ;
if ( ! listByWaybillIds . isEmpty ( ) ) {
waybillMap = listByWaybillIds . stream ( ) . collect ( Collectors . groupingBy ( WarehouseWaybillEntity : : getId ) ) ;
waybillMap = listByWaybillIds . stream ( ) . collect ( Collectors . groupingBy ( WarehouseWaybillEntity : : getId ) ) ;
}
}
for ( TrunklineAdvanceDetailEntity trunklineAdvanceDetailEntity : collect ) {
@ -2931,7 +2988,7 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib
distributionParcelListVO . setMaterialCode ( trunklineAdvanceDetailEntity . getMaterialCode ( ) ) ;
distributionParcelListVO . setQuantity ( trunklineAdvanceDetailEntity . getQuantity ( ) ) ;
distributionParcelListVO . setTrainNumber ( trunklineAdvanceDetailEntity . getTrainNumber ( ) ) ;
if ( ! Objects . isNull ( waybillMap ) & & ! Objects . isNull ( trunklineAdvanceDetailEntity . getWaybillId ( ) ) ) {
if ( ! Objects . isNull ( waybillMap ) & & ! Objects . isNull ( trunklineAdvanceDetailEntity . getWaybillId ( ) ) ) {
WarehouseWaybillEntity warehouseWaybillEntities = waybillMap . get ( trunklineAdvanceDetailEntity . getWaybillId ( ) ) . get ( 0 ) ;
distributionParcelListVO . setSendWarehouseName ( warehouseWaybillEntities . getDepartureWarehouseName ( ) ) ;
distributionParcelListVO . setAcceptWarehouseName ( warehouseWaybillEntities . getDestinationWarehouseName ( ) ) ;