@ -1184,10 +1184,12 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
/ * *
* 装车节点按照预约进行推送
*
* @param distributionDeliveryListEntity
* @param pushNodeList
* @param operTime
* /
private void sendBuildNodeFanoutMsgByPackage ( DistributionDeliveryListEntity distributionDeliveryListEntity , List < DistributionLoadscanEntity > pushNodeList ) {
private void sendBuildNodeFanoutMsgByPackage ( DistributionDeliveryListEntity distributionDeliveryListEntity , List < DistributionLoadscanEntity > pushNodeList , Date operTime ) {
// 提供预约单
Map < Long , List < DistributionLoadscanEntity > > collect = pushNodeList . stream ( ) . collect ( Collectors . groupingBy ( DistributionLoadscanEntity : : getReservationId ) ) ;
if ( collect . isEmpty ( ) ) {
@ -1197,7 +1199,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
for ( Long key : keys ) {
List < DistributionLoadscanEntity > list = collect . get ( key ) ;
DistributionReservationEntity reservationEntity = distributionReservationMapper . selectById ( key ) ;
NodeFanoutMsg < DistributionLoadVO > nodeFanoutMsg = buildNodeFanoutMsgByPackageByReservationCode ( distributionDeliveryListEntity , list , reservationEntity . getReservationCode ( ) ) ;
NodeFanoutMsg < DistributionLoadVO > nodeFanoutMsg = buildNodeFanoutMsgByPackageByReservationCode ( distributionDeliveryListEntity , list , reservationEntity . getReservationCode ( ) , operTime ) ;
distributionNodeWorkService . nodeLoading ( nodeFanoutMsg , AuthUtil . getUser ( ) ) ;
}
@ -1205,14 +1207,15 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
private NodeFanoutMsg < DistributionLoadVO > buildNodeFanoutMsgByPackageByReservationCode ( DistributionDeliveryListEntity distributionDeliveryListEntity , List < DistributionLoadscanEntity > pushNodeList , String reservationCode ) {
private NodeFanoutMsg < DistributionLoadVO > buildNodeFanoutMsgByPackageByReservationCode ( DistributionDeliveryListEntity distributionDeliveryListEntity , List < DistributionLoadscanEntity > pushNodeList ,
String reservationCode , Date operatorTime ) {
NodeFanoutMsg < DistributionLoadVO > nodeFanoutMsg = new NodeFanoutMsg ( ) ;
nodeFanoutMsg . setBizOperation ( BizOperationEnums . ADD ) ;
nodeFanoutMsg . setNode ( WorkNodeEnums . DISTRIBUTION_LOADING ) ;
nodeFanoutMsg . setWarehouse ( distributionDeliveryListEntity . getWarehouseName ( ) ) ;
nodeFanoutMsg . setWarehouseId ( distributionDeliveryListEntity . getWarehouseId ( ) ) ;
nodeFanoutMsg . setOperator ( AuthUtil . getNickName ( ) ) ;
nodeFanoutMsg . setOperatorTime ( distributionDeliveryListEntity . getUpdateTime ( ) ) ;
nodeFanoutMsg . setOperatorTime ( operatorTime ) ;
// DistributionTaskVO taskVO = buildDistributionTaskVO(distributionDeliveryListEntity, AuthUtil.getUserId());
DistributionLoadVO distributionLoadVO = new DistributionLoadVO ( ) ;
@ -1324,14 +1327,16 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
return jsonArray ;
}
private NodeFanoutMsg < DistributionLoadVO > buildNodeFanoutMsgByStock ( DistributionDeliveryListEntity distributionDeliveryListEntity , List < DistributionLoadscaninvnEntity > ts , String reservationCode ) {
private NodeFanoutMsg < DistributionLoadVO > buildNodeFanoutMsgByStock ( DistributionDeliveryListEntity distributionDeliveryListEntity ,
List < DistributionLoadscaninvnEntity > ts ,
String reservationCode , Date operTime ) {
NodeFanoutMsg < DistributionLoadVO > nodeFanoutMsg = new NodeFanoutMsg ( ) ;
nodeFanoutMsg . setBizOperation ( BizOperationEnums . ADD ) ;
nodeFanoutMsg . setNode ( WorkNodeEnums . DISTRIBUTION_LOADING ) ;
nodeFanoutMsg . setWarehouse ( distributionDeliveryListEntity . getWarehouseName ( ) ) ;
nodeFanoutMsg . setWarehouseId ( distributionDeliveryListEntity . getWarehouseId ( ) ) ;
nodeFanoutMsg . setOperator ( AuthUtil . getNickName ( ) ) ;
nodeFanoutMsg . setOperatorTime ( distributi onDeliveryListEntity . g etC reate Time( ) ) ;
nodeFanoutMsg . setOperatorTime ( op erTime ) ;
// DistributionTaskVO taskVO = buildDistributionTaskVO(distributionDeliveryListEntity, AuthUtil.getUserId());
// nodeFanoutMsg.setMain(taskVO);
@ -1481,7 +1486,8 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
// ----------------------------2023-09-06 PDA一键装车调整----------------------------------------
//1、查询该客户下是否还存在需要装车的包件和库存品
StringBuilder orderPackages = new StringBuilder ( ) ;
String now = new SimpleDateFormat ( "yyyy-MM-dd HH:mm:ss" ) . format ( new Date ( ) ) ;
Date operTime = new Date ( ) ;
String now = new SimpleDateFormat ( "yyyy-MM-dd HH:mm:ss" ) . format ( operTime ) ;
//查询配送任务配车司机信息
DistributionDeliveryListEntity distributionDeliveryListEntity = this . getById ( distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
@ -1842,11 +1848,11 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
DistributionDeliveryListVO deliveryList = distributionDeliveryListService . getDeliveryList ( distrilbutionloadingscanDTO . getDeliveryId ( ) ) ;
// 发送 订制品
if ( Func . isNotEmpty ( dingzhis ) ) {
sendBuildNodeFanoutMsgByPackage ( deliveryList , dingzhis ) ;
sendBuildNodeFanoutMsgByPackage ( deliveryList , dingzhis , operTime ) ;
}
// 发库存
if ( Func . isNotEmpty ( kucuns ) ) {
sendBuildNodeFanoutMsgByStock ( deliveryList , kucuns ) ;
sendBuildNodeFanoutMsgByStock ( deliveryList , kucuns , operTime ) ;
}
//发零担
if ( Func . isNotEmpty ( lingdans ) ) {
@ -1865,7 +1871,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
msg . setNode ( WorkNodeEnums . DISTRIBUTION_LOADING ) ;
msg . setBrand ( BrandEnums . getByValue ( parcelListEntity . getBrandName ( ) ) ) ;
msg . setOperator ( AuthUtil . getNickName ( ) ) ;
msg . setOperatorTime ( new Date ( ) ) ;
msg . setOperatorTime ( operTime ) ;
msg . setContent ( contents ) ;
log . info ( "推送工厂数据:{}" , JSONUtil . toJsonStr ( msg ) ) ;
factoryDataMessageSender . sendNodeDataByBrand ( msg ) ;
@ -1875,7 +1881,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
}
private void sendBuildNodeFanoutMsgByStock ( DistributionDeliveryListEntity distributionDeliveryListEntity , List < DistributionLoadscaninvnEntity > ts ) {
private void sendBuildNodeFanoutMsgByStock ( DistributionDeliveryListEntity distributionDeliveryListEntity , List < DistributionLoadscaninvnEntity > ts , Date operTime ) {
Map < Long , List < DistributionLoadscaninvnEntity > > collect = ts . stream ( ) . collect ( Collectors . groupingBy ( DistributionLoadscaninvnEntity : : getReservationId ) ) ;
@ -1887,7 +1893,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
List < DistributionLoadscaninvnEntity > list = collect . get ( key ) ;
DistributionReservationEntity reservationEntity = distributionReservationMapper . selectById ( key ) ;
NodeFanoutMsg < DistributionLoadVO > nodeFanoutMsg = buildNodeFanoutMsgByStock ( distributionDeliveryListEntity , list , reservationEntity . getReservationCode ( ) ) ;
NodeFanoutMsg < DistributionLoadVO > nodeFanoutMsg = buildNodeFanoutMsgByStock ( distributionDeliveryListEntity , list , reservationEntity . getReservationCode ( ) , operTime ) ;
distributionNodeWorkService . nodeLoading ( nodeFanoutMsg , AuthUtil . getUser ( ) ) ;
}
@ -2001,6 +2007,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
@Transactional ( isolation = Isolation . READ_COMMITTED , rollbackFor = Exception . class )
public Resp loadinginventory ( DistrilbutionloadingscanDTO distrilbutionloadingscanDTO ) {
List < DistributionLoadscaninvnEntity > ts = new ArrayList < > ( ) ;
Date operTime = new Date ( ) ;
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient . getMyCurrentWarehouse ( ) ;
if ( Func . isEmpty ( myCurrentWarehouse ) ) {
return Resp . scanFail ( "未授权" , "未授权!!!" ) ;
@ -2107,7 +2114,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
}
}
sendBuildNodeFanoutMsgByStock ( distributionDeliveryListEntity , ts ) ;
sendBuildNodeFanoutMsgByStock ( distributionDeliveryListEntity , ts , operTime ) ;
String msg = getLoadingMsg ( distrilbutionloadingscanDTO ) ;
return Resp . scanSuccess ( "扫描成功" , msg ) ;
}
@ -2737,6 +2744,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
if ( DeliveryStartStatusConstant . yifache . getValue ( ) . equals ( deliveryListEntity . getIsStart ( ) ) ) {
return R . fail ( "当前车次已发车" ) ;
}
Date operTime = new Date ( ) ;
List < JSONObject > logs = new ArrayList < > ( ) ;
List < JSONObject > pushDatas = new ArrayList < > ( ) ;
//查询出原来配送信息的备货任务
@ -2786,7 +2794,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
AtomicInteger clientTotal = new AtomicInteger ( ) ;
//客户数量
AtomicInteger deliveryPackageTotal = new AtomicInteger ( ) ;
Date reservationDate = new Date ( ) ;
Date reservationDate = operTime ;
List < DistributionReservationPackageEntity > allPackageList = new ArrayList < > ( ) ;
List < DistributionReservationZeroPackageEntity > allZeroPackageList = new ArrayList < > ( ) ;
StringBuilder saa = new StringBuilder ( ) ;
@ -2833,9 +2841,9 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
BladeUser user = AuthUtil . getUser ( ) ;
reservationEntity . setCreateUser ( user . getUserId ( ) ) ;
reservationEntity . setDeliveryWay ( reservation . getDeliveryWay ( ) ) ;
reservationEntity . setCreateTime ( new Date ( ) ) ;
reservationEntity . setCreateTime ( operTime ) ;
reservationEntity . setCreateDept ( myCurrentWarehouse . getDepartment ( ) ) ;
reservationEntity . setUpdateTime ( new Date ( ) ) ;
reservationEntity . setUpdateTime ( operTime ) ;
reservationEntity . setUpdateUser ( user . getUserId ( ) ) ;
reservationEntity . setIsDeleted ( 0 ) ;
reservationEntity . setStatus ( 1 ) ;
@ -3729,7 +3737,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
// 作业节点推送
// distributionNodeWorkService.planDelivery(deliveryListEntity, AuthUtil.getUser(), BizOperationEnums.MODIFY);
NodeFanoutMsg < DistributionTaskVO > nodeFanoutMsg = buildNodeFanoutMsgForPlan ( deliveryListEntity , AuthUtil . getUser ( ) , BizOperationEnums . MODIFY ) ;
NodeFanoutMsg < DistributionTaskVO > nodeFanoutMsg = buildNodeFanoutMsgForPlan ( deliveryListEntity , AuthUtil . getUser ( ) , BizOperationEnums . MODIFY , operTime ) ;
DistributionTaskVO main = nodeFanoutMsg . getMain ( ) ;
List < ReservationVO > reservationVOList = main . getReservationVOList ( ) ;
if ( CollUtil . isNotEmpty ( reservationVOList ) ) {
@ -3760,14 +3768,14 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
}
@Override
public NodeFanoutMsg < DistributionTaskVO > buildNodeFanoutMsgForPlan ( DistributionDeliveryListEntity distributionDeliveryListEntity , BladeUser user , BizOperationEnums bizOperation ) {
public NodeFanoutMsg < DistributionTaskVO > buildNodeFanoutMsgForPlan ( DistributionDeliveryListEntity distributionDeliveryListEntity , BladeUser user , BizOperationEnums bizOperation , Date operTime ) {
NodeFanoutMsg < DistributionTaskVO > nodeFanoutMsg = new NodeFanoutMsg ( ) ;
nodeFanoutMsg . setBizOperation ( bizOperation ) ;
nodeFanoutMsg . setNode ( WorkNodeEnums . PLAN_DELIVERY ) ;
nodeFanoutMsg . setWarehouse ( distributionDeliveryListEntity . getWarehouseName ( ) ) ;
nodeFanoutMsg . setWarehouseId ( distributionDeliveryListEntity . getWarehouseId ( ) ) ;
nodeFanoutMsg . setOperator ( user . getNickName ( ) ) ;
nodeFanoutMsg . setOperatorTime ( distributi onDeliveryListEntity . g etC reate Time( ) ) ;
nodeFanoutMsg . setOperatorTime ( op erTime ) ;
DistributionTaskVO distributionTaskVO = getDistributionTaskVO ( distributionDeliveryListEntity ) ;
List < PlanDriverbindCarVO > planDriverbindCarVOS = buildDeliveryCarDriverInfor ( distributionDeliveryListEntity ) ;
distributionTaskVO . setPlanDriverbindCars ( planDriverbindCarVOS ) ;
@ -4045,7 +4053,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
if ( Func . isEmpty ( myCurrentWarehouse ) ) {
return R . fail ( 403 , "未授权!!!" ) ;
}
Date operTime = new Date ( ) ;
DistributionDeliveryListEntity deliveryListEntity = this . getById ( deliveryListDTO . getId ( ) ) ;
//查询原来的预约信息,
List < DistributionReservationEntity > reservationDTOS = baseMapper . selectReservationByDeliveryListId ( deliveryListDTO . getId ( ) ) ;
@ -4067,13 +4075,13 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
//编码生成规则 BH+仓库编码+年月日+序号00001
stockupEntity . setStockupCode ( bianMa ( ) ) ;
stockupEntity . setStockupStatus ( StockupStatusConstant . weibeihuo . getValue ( ) ) ;
stockupEntity . setStockupDate ( new Date ( ) ) ;
stockupEntity . setStockupDate ( operTime ) ;
stockupEntity . setIsDeleted ( 0 ) ;
stockupEntity . setStatus ( 1 ) ;
stockupEntity . setCreateUser ( user . getUserId ( ) ) ;
stockupEntity . setCreateDept ( myCurrentWarehouse . getDepartment ( ) ) ;
stockupEntity . setCreateTime ( new Date ( ) ) ;
stockupEntity . setCreateTime ( operTime ) ;
// stockupEntity.setOutboundDate(new Date());
stockupEntity . setWarehouseId ( myCurrentWarehouse . getId ( ) ) ;
List < Long > newstockUpIds = new ArrayList < > ( ) ;
@ -4275,7 +4283,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
this . updateById ( deliveryListEntity ) ;
// 作业节点推送
NodeFanoutMsg < DistributionTaskVO > nodeFanoutMsg = buildNodeFanoutMsgForPlan ( deliveryListEntity , AuthUtil . getUser ( ) , BizOperationEnums . MODIFY ) ;
NodeFanoutMsg < DistributionTaskVO > nodeFanoutMsg = buildNodeFanoutMsgForPlan ( deliveryListEntity , AuthUtil . getUser ( ) , BizOperationEnums . MODIFY , operTime ) ;
distributionNodeWorkService . planDelivery ( nodeFanoutMsg , AuthUtil . getUser ( ) ) ;
//进行日志记录
@ -4834,6 +4842,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
@Override
public R loadingStart ( DistrilbutionloadingscanDTO distrilbutionloadingscanDTO ) {
StringBuilder builder = null ;
Date operTime = new Date ( ) ;
try {
String method = "#########################DistributionStockArticleController.loadingStart" ;
if ( Objects . isNull ( distrilbutionloadingscanDTO . getDeliveryId ( ) ) ) {
@ -4871,7 +4880,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
if ( abnormalPackageLoadingNum ! = 0 ) {
return Resp . scanFail ( "存在异常请处理" , "存在异常请处理" ) ;
}
String format = new SimpleDateFormat ( "yyyy-MM-dd HH:mm:ss" ) . format ( new Date ( ) ) ;
String format = new SimpleDateFormat ( "yyyy-MM-dd HH:mm:ss" ) . format ( operTime ) ;
String loadingId = distrilbutionloadingscanDTO . getLoadingId ( ) ;
Boolean b = false ;
Boolean isEnd = false ;
@ -4961,7 +4970,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
}
//发车日志记录
handleLoadingStartLog ( distributionDeliveryListEntity , user , myCurrentWarehouse , builder . toString ( ) ) ;
NodeFanoutMsg < CarStartVO > nodeFanoutMsg = builderNodeFanoutMsgByCarStart ( distributionDeliveryListEntity , user ) ;
NodeFanoutMsg < CarStartVO > nodeFanoutMsg = builderNodeFanoutMsgByCarStart ( distributionDeliveryListEntity , user , operTime ) ;
distributionNodeWorkService . carStart ( nodeFanoutMsg , user ) ;
} catch ( NumberFormatException e ) {
log . error ( ">>>>>>>>>>>>>>>>>>>>>>>>>> 发车异常" , e ) ;
@ -5118,14 +5127,14 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
return false ;
}
private NodeFanoutMsg < CarStartVO > builderNodeFanoutMsgByCarStart ( DistributionDeliveryListEntity distributionDeliveryListEntity , BladeUser user ) {
private NodeFanoutMsg < CarStartVO > builderNodeFanoutMsgByCarStart ( DistributionDeliveryListEntity distributionDeliveryListEntity , BladeUser user , Date operTime ) {
NodeFanoutMsg < CarStartVO > nodeFanoutMsg = new NodeFanoutMsg < > ( ) ;
nodeFanoutMsg . setBizOperation ( BizOperationEnums . ADD ) ;
nodeFanoutMsg . setNode ( WorkNodeEnums . DISTRIBUTION_CAR_START ) ;
nodeFanoutMsg . setWarehouse ( distributionDeliveryListEntity . getWarehouseName ( ) ) ;
nodeFanoutMsg . setWarehouseId ( distributionDeliveryListEntity . getWarehouseId ( ) ) ;
nodeFanoutMsg . setOperator ( AuthUtil . getNickName ( ) ) ;
nodeFanoutMsg . setOperatorTime ( distributionDeliveryListEntity . getUpdateTime ( ) ) ;
nodeFanoutMsg . setOperatorTime ( operTime ) ;
List < PlanDriverbindCarVO > planDriverbindCarVOS = buildDeliveryCarDriverInfor ( distributionDeliveryListEntity ) ;
String driverName = distributionDeliveryListEntity . getDriverName ( ) ;
@ -5170,6 +5179,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
if ( loadingNum > 0 ) {
return R . fail ( "存在装车或签收数据无法进行配送取消!!!" ) ;
}
Date operTime = new Date ( ) ;
List < DistributionSignforEntity > distributionSignforEntities = distributionSignforServicer . getBaseMapper ( ) . selectList ( Wrappers . < DistributionSignforEntity > query ( ) . lambda ( ) . eq ( DistributionSignforEntity : : getDeliveryId , deliveryListEntity . getId ( ) ) ) ;
BladeUser user = AuthUtil . getUser ( ) ;
List < DistributionReservationEntity > reservationList = new ArrayList < > ( ) ;
@ -5220,7 +5230,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
handleCancelDistributionLog ( deliveryListEntity , user , reservationList , myCurrentWarehouse ) ;
// 增加一个取消配送计划的通知
NodeFanoutMsg < DistributionTaskVO > distributionTaskVONodeFanoutMsg = buildNodeFanoutMsgForPlan ( deliveryListEntity , user , BizOperationEnums . DELETE ) ;
NodeFanoutMsg < DistributionTaskVO > distributionTaskVONodeFanoutMsg = buildNodeFanoutMsgForPlan ( deliveryListEntity , user , BizOperationEnums . DELETE , operTime ) ;
distributionNodeWorkService . planDelivery ( distributionTaskVONodeFanoutMsg , AuthUtil . getUser ( ) ) ;
return R . status ( true ) ;
}
@ -5956,6 +5966,8 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
List < String > orderPackageCodes = new ArrayList < > ( ) ;
List < DistributionLoadscanEntity > pushNodeList = new ArrayList < > ( ) ;
List < JSONObject > aaa = new ArrayList < > ( ) ;
Date operTime = new Date ( ) ;
String now = new SimpleDateFormat ( "yyyy-MM-dd HH:mm:ss" ) . format ( operTime ) ;
if ( Func . isNotEmpty ( parcelListEntities ) & & parcelListEntities . size ( ) = = 1 ) {
DistributionParcelListEntity parcelListEntity = parcelListEntities . get ( 0 ) ;
if ( OrderPackageLoadingStatusConstant . yizhuangche . getValue ( ) . equals ( parcelListEntity . getOrderPackageLoadingStatus ( ) ) ) {
@ -5988,8 +6000,6 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
if ( Func . isNotEmpty ( loadscanAbnormalEntityList ) & & loadscanAbnormalEntityList . size ( ) > 1 ) {
return Resp . scanFail ( "操作失败" , "重复添加" ) ;
}
String now = new SimpleDateFormat ( "yyyy-MM-dd HH:mm:ss" ) . format ( new Date ( ) ) ;
BladeUser user = AuthUtil . getUser ( ) ;
DistributionLoadscanEntity loadscanEntity = new DistributionLoadscanEntity ( ) ;
DistributionReservationEntity reservationEntity = null ;
@ -6033,7 +6043,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
distributionLoadscanAbnormalEntity . setReservationId ( reservationEntity . getId ( ) ) ;
distributionLoadscanAbnormalEntity . setDeliveryType ( deliveryListEntity . getType ( ) ) ;
distributionLoadscanAbnormalEntity . setScanUser ( user . getNickName ( ) ) ;
distributionLoadscanAbnormalEntity . setScanTime ( new Date ( ) ) ;
distributionLoadscanAbnormalEntity . setScanTime ( operTime ) ;
distributionLoadscanAbnormalEntity . setLoadingQuantity ( parcelListEntity . getQuantity ( ) ) ;
distributionLoadscanAbnormalEntity . setPackageCode ( parcelListEntity . getOrderPackageCode ( ) ) ;
distributionLoadscanAbnormalEntity . setPackageId ( parcelListEntity . getId ( ) ) ;
@ -6152,7 +6162,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
// 发送作业节点数据
if ( CollUtil . isNotEmpty ( pushNodeList ) ) {
sendBuildNodeFanoutMsgByPackage ( deliveryListEntity , pushNodeList ) ;
sendBuildNodeFanoutMsgByPackage ( deliveryListEntity , pushNodeList , operTime ) ;
}
return Resp . scanSuccess ( "操作成功" , "异常" + abnormalTotal + "件" ) ;
}
@ -8946,6 +8956,8 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
if ( Objects . isNull ( distributionDeliverySelfEntity ) ) {
return Resp . fail ( "当前操作人不合法" ) ;
}
Date operTime = new Date ( ) ;
String now = new SimpleDateFormat ( "yyyy-MM-dd HH:mm:ss" ) . format ( operTime ) ;
List < String > orderCodes = new ArrayList < > ( ) ;
switch ( type ) {
case 1 :
@ -9086,7 +9098,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
return Resp . fail ( "订单信息错误" ) ;
}
orderCodes . add ( stockArticleEntity . getOrderCode ( ) ) ;
String now = new SimpleDateFormat ( "yyyy-MM-dd HH:mm:ss" ) . format ( new Date ( ) ) ;
if ( Func . isNotEmpty ( distrilbutionloadingscanDTO . getReservationId ( ) ) ) {
//查询该订单是否属于当前配送任务
List < DistributionReservationStockarticleEntity > reservationStockarticleEntityList = distributionReservationMapper . selectStockArticleByReservationId ( distrilbutionloadingscanDTO . getReservationId ( ) ) ;
@ -9309,7 +9321,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
inventoryJsonObject . put ( "remark" , "装车下架" ) ;
jsonObjects . add ( inventoryJsonObject ) ;
if ( CollUtil . isNotEmpty ( ts ) ) {
sendBuildNodeFanoutMsgByStock ( deliveryListEntity , ts ) ;
sendBuildNodeFanoutMsgByStock ( deliveryListEntity , ts , operTime ) ;
}
break ;
case 4 :
@ -9460,7 +9472,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
msg . setNode ( WorkNodeEnums . DISTRIBUTION_LOADING ) ;
msg . setBrand ( BrandEnums . getByValue ( parcelListEntity . getBrandName ( ) ) ) ;
msg . setOperator ( AuthUtil . getNickName ( ) ) ;
msg . setOperatorTime ( new Date ( ) ) ;
msg . setOperatorTime ( operTime ) ;
msg . setContent ( contents ) ;
log . info ( "推送工厂数据:{}" , JSONUtil . toJsonStr ( msg ) ) ;
factoryDataMessageSender . sendNodeDataByBrand ( msg ) ;
@ -9468,7 +9480,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
}
if ( CollUtil . isNotEmpty ( pushNodeList ) ) {
sendBuildNodeFanoutMsgByPackage ( deliveryListEntity , pushNodeList ) ;
sendBuildNodeFanoutMsgByPackage ( deliveryListEntity , pushNodeList , operTime ) ;
}
//维护订单数量
if ( ! orderCodes . isEmpty ( ) ) {