@ -188,76 +188,77 @@ public class InComingServiceImpl implements IInComingService {
@Transactional ( rollbackFor = Exception . class )
public R incomingPackage ( InComingDTO inComingDTO ) {
String orderPackageCode = inComingDTO . getOrderPackageCode ( ) ; //包件码
Long warehouseId = inComingDTO . getWarehouseId ( ) ; //仓库id
String warehouseName = inComingDTO . getWarehouseName ( ) ;
if ( StringUtil . isBlank ( warehouseName ) ) {
BasicdataWarehouseEntity warehouseEntity = warehouseClient . getEntityWarehouseId ( warehouseId ) ;
if ( ! Objects . isNull ( warehouseEntity ) ) {
warehouseName = warehouseEntity . getName ( ) ;
try {
String orderPackageCode = inComingDTO . getOrderPackageCode ( ) ; //包件码
Long warehouseId = inComingDTO . getWarehouseId ( ) ; //仓库id
String warehouseName = inComingDTO . getWarehouseName ( ) ;
if ( StringUtil . isBlank ( warehouseName ) ) {
BasicdataWarehouseEntity warehouseEntity = warehouseClient . getEntityWarehouseId ( warehouseId ) ;
if ( ! Objects . isNull ( warehouseEntity ) ) {
warehouseName = warehouseEntity . getName ( ) ;
}
}
}
Long billladingId = inComingDTO . getBillladingId ( ) ; //提货单id
Integer incomingTyp e = inComingDTO . getIncomingType ( ) ; //入库类型 1码板打托 2扫码入库 3直接入库 4 按车次号入库 5按订单入库 6扫描入库 7 批量卸车入库 8卸车托盘 9卸分一体 10补录数据入库
String trayCod e = inComingDTO . getTrayCode ( ) ; //托盘码
String trayType = inComingDTO . getTrayType ( ) ; //打托方式
String customerTrain = inComingDTO . getCustomerTrain ( ) ; //车次号
List < String > packageCodes = Arrays . asList ( orderPackageCode . split ( "," ) ) ;
log . info ( "############incomingPackage: 包件入库开始 packageCodes={} billladingId={} warehouseId={}" , packageCodes , billladingId , warehouseId ) ;
//包件入库开始
//查询包件是否有数据
QueryWrapper < TrunklineAdvanceDetailEntity > advanceDetailQueryWrapper = new QueryWrapper < > ( ) ;
advanceDetailQueryWrapper . in ( "order_package_code" , packageCodes ) ;
List < TrunklineAdvanceDetailEntity > advanceDetailEntityList = advanceDetailService . list ( advanceDetailQueryWrapper ) ;
if ( advanceDetailEntityList . isEmpty ( ) ) {
log . warn ( "############incomingPackage: 包件不存在 packageCodes={} warehouseId={}" , packageCodes , warehouseId ) ;
return Resp . scanFail ( 405 , "包件无数据" , "包件无数据" ) ;
}
if ( StringUtil . isNotBlank ( customerTrain ) ) {
for ( TrunklineAdvanceDetailEntity advanceDetailEntity : advanceDetailEntityList ) {
String trainNumber = advanceDetailEntity . getTrainNumber ( ) ;
if ( ! trainNumber . equals ( customerTrain ) ) {
log . warn ( "############incomingPackage: 包件车次号不一致 packageCodes={} trainNumber={} trainNumber={}" , packageCodes , trainNumber , customerTrain ) ;
return Resp . scanFail ( 405 , "包件车次号不一致" , "包件车次号不一致" ) ;
Long billladingId = inComingDTO . getBillladingId ( ) ; //提货单id
Integer incomingType = inComingDTO . getIncomingType ( ) ; //入库类型 1码板打托 2扫码入库 3直接入库 4 按车次号入库 5按订单入库 6扫描入库 7 批量卸车入库 8卸车托盘 9卸分一体 10补录数据入库
String trayCod e = inComingDTO . getTrayCode ( ) ; //托盘码
String trayTyp e = inComingDTO . getTrayType ( ) ; //打托方式
String customerTrain = inComingDTO . getCustomerTrain ( ) ; //车次号
List < String > packageCodes = Arrays . asList ( orderPackageCode . split ( "," ) ) ;
log . info ( "############incomingPackage: 包件入库开始 packageCodes={} billladingId={} warehouseId={}" , packageCodes , billladingId , warehouseId ) ;
//包件入库开始
//查询包件是否有数据
QueryWrapper < TrunklineAdvanceDetailEntity > advanceDetailQueryWrapper = new QueryWrapper < > ( ) ;
advanceDetailQueryWrapper . in ( "order_package_code" , packageCodes ) ;
List < TrunklineAdvanceDetailEntity > advanceDetailEntityList = advanceDetailService . list ( advanceDetailQueryWrapper ) ;
if ( advanceDetailEntityList . isEmpty ( ) ) {
log . warn ( "############incomingPackage: 包件不存在 packageCodes={} warehouseId={}" , packageCodes , warehouseId ) ;
return Resp . scanFail ( 405 , "包件无数据" , "包件无数据" ) ;
}
if ( StringUtil . isNotBlank ( customerTrain ) ) {
for ( TrunklineAdvanceDetailEntity advanceDetailEntity : advanceDetailEntityList ) {
String trainNumber = advanceDetailEntity . getTrainNumber ( ) ;
if ( ! trainNumber . equals ( customerTrain ) ) {
log . warn ( "############incomingPackage: 包件车次号不一致 packageCodes={} trainNumber={} trainNumber={}" , packageCodes , trainNumber , customerTrain ) ;
return Resp . scanFail ( 405 , "包件车次号不一致" , "包件车次号不一致" ) ;
}
}
}
}
//把advanceDetailEntityList通过packageStatus分组
Map < String , List < TrunklineAdvanceDetailEntity > > advanceDetailEntityMap = advanceDetailEntityList . stream ( ) . collect ( Collectors . groupingBy ( TrunklineAdvanceDetailEntity : : getPackageStatus ) ) ;
//把advanceDetailEntityList通过packageStatus分组
Map < String , List < TrunklineAdvanceDetailEntity > > advanceDetailEntityMap = advanceDetailEntityList . stream ( ) . collect ( Collectors . groupingBy ( TrunklineAdvanceDetailEntity : : getPackageStatus ) ) ;
//把advanceDetailEntityList的orderCode提取成一个Set
//把advanceDetailEntityList的orderCode提取成一个Set
// Set<String> orderCodes = advanceDetailEntityList.stream().map(TrunklineAdvanceDetailEntity::getOrderCode).collect(Collectors.toSet());
String finalWarehouseName = warehouseName ;
advanceDetailEntityMap . keySet ( ) . forEach ( packageStatus - > {
List < TrunklineAdvanceDetailEntity > advanceDetailEntities = advanceDetailEntityMap . get ( packageStatus ) ;
if ( ! advanceDetailEntities . isEmpty ( ) ) {
//提取advanceDetailEntities中所有元素的orderPackageCode组成一个List<String>
List < String > orderPackageCodes = advanceDetailEntities . stream ( )
. map ( TrunklineAdvanceDetailEntity : : getOrderPackageCode )
. collect ( Collectors . toList ( ) ) ;
if ( "0" . equals ( packageStatus ) ) {
//未入库包件
Set < Long > advanceIds = new HashSet < > ( ) ;
//1.修改暂存单包件入库状态
advanceDetailEntities . forEach ( advanceDetailEntity - > {
advanceIds . add ( advanceDetailEntity . getId ( ) ) ;
advanceDetailEntity . setPackageStatus ( "1" ) ;
advanceDetailEntity . setIncomingTime ( new Date ( ) ) ;
advanceDetailEntity . setIncomingWarehouseId ( warehouseId ) ;
advanceDetailEntity . setIncomingWarehouseName ( finalWarehouseName ) ;
} ) ;
advanceDetailService . updateBatchById ( advanceDetailEntities ) ;
advanceIds . forEach ( advanceId - > {
List < String > incomingWarehouseNames = advanceDetailService . findIncomingWarehouseName ( advanceId ) ;
advanceService . updateIncomingWarehouseName ( String . join ( "," , incomingWarehouseNames ) , advanceId ) ;
} ) ;
String finalWarehouseName = warehouseName ;
advanceDetailEntityMap . keySet ( ) . forEach ( packageStatus - > {
List < TrunklineAdvanceDetailEntity > advanceDetailEntities = advanceDetailEntityMap . get ( packageStatus ) ;
if ( ! advanceDetailEntities . isEmpty ( ) ) {
//提取advanceDetailEntities中所有元素的orderPackageCode组成一个List<String>
List < String > orderPackageCodes = advanceDetailEntities . stream ( )
. map ( TrunklineAdvanceDetailEntity : : getOrderPackageCode )
. collect ( Collectors . toList ( ) ) ;
if ( "0" . equals ( packageStatus ) ) {
//未入库包件
Set < Long > advanceIds = new HashSet < > ( ) ;
//1.修改暂存单包件入库状态
advanceDetailEntities . forEach ( advanceDetailEntity - > {
advanceIds . add ( advanceDetailEntity . getId ( ) ) ;
advanceDetailEntity . setPackageStatus ( "1" ) ;
advanceDetailEntity . setIncomingTime ( new Date ( ) ) ;
advanceDetailEntity . setIncomingWarehouseId ( warehouseId ) ;
advanceDetailEntity . setIncomingWarehouseName ( finalWarehouseName ) ;
} ) ;
advanceDetailService . updateBatchById ( advanceDetailEntities ) ;
advanceIds . forEach ( advanceId - > {
List < String > incomingWarehouseNames = advanceDetailService . findIncomingWarehouseName ( advanceId ) ;
advanceService . updateIncomingWarehouseName ( String . join ( "," , incomingWarehouseNames ) , advanceId ) ;
} ) ;
// advanceDetailService.updatePackageStatusById("1", advanceDetailId, warehouseId, warehouseName,new Date());
// List<String> incomingWarehouseNames = advanceDetailService.findIncomingWarehouseName(advanceId);
@ -265,270 +266,166 @@ public class InComingServiceImpl implements IInComingService {
//
// List<String> orderPackageCodes = new ArrayList<>();
// orderPackageCodes.add(orderPackageCode);
//存入日志
packageTrackLogAsyncService . addPackageTrackLog ( AuthUtil . getTenantId ( ) , AuthUtil . getUserId ( ) , Func . firstLong ( AuthUtil . getDeptId ( ) ) , AuthUtil . getNickName ( ) , orderPackageCodes , warehouseId , finalWarehouseName , WorkNodeEnums . INITIAL_WAREHOUSE_ENTRY . getCode ( ) , "包件" + IncomingTypeEnum . getValue ( incomingType ) ) ;
//2.判断包件和订单是否已经存入在库订单
boolean b = advanceService . saveOrderAndPackages ( advanceDetailEntities , warehouseId ) ;
if ( b ) {
//把advanceDetailEntities通过waybillNo进行分组
Map < String , List < TrunklineAdvanceDetailEntity > > advanceDetailEntityWaybillNoMap = advanceDetailEntities . stream ( ) . filter ( entity - > StringUtil . isNotBlank ( entity . getWaybillNo ( ) ) ) . collect ( Collectors . groupingBy ( TrunklineAdvanceDetailEntity : : getWaybillNo ) ) ;
Set < String > waybillNoSet = advanceDetailEntityWaybillNoMap . keySet ( ) ;
if ( ! waybillNoSet . isEmpty ( ) ) {
List < WarehouseWaybillEntity > waybillEntityList = warehouseWaybillClient . findWaybillBilllByWaybillNos ( new ArrayList < > ( waybillNoSet ) ) ;
//把waybillEntityList转化成waybillNo为key的map
Map < String , WarehouseWaybillEntity > waybillEntityMap = waybillEntityList . stream ( ) . collect ( Collectors . toMap ( WarehouseWaybillEntity : : getWaybillNo , Function . identity ( ) ) ) ;
advanceDetailEntityWaybillNoMap . keySet ( ) . forEach ( waybillNo - > {
List < TrunklineAdvanceDetailEntity > waybillNoAdvanceDetailEntities = advanceDetailEntityWaybillNoMap . get ( waybillNo ) ;
if ( ! waybillNoAdvanceDetailEntities . isEmpty ( ) ) {
WarehouseWaybillEntity waybillEntity = waybillEntityMap . get ( waybillNo ) ;
if ( ! Objects . isNull ( waybillEntity ) ) {
Long departureWarehouseId = waybillEntity . getDepartureWarehouseId ( ) ;
if ( departureWarehouseId . equals ( warehouseId ) ) {
Integer totalCount = waybillEntity . getTotalCount ( ) ;
Integer stockCount = waybillEntity . getStockCount ( ) ;
openOrderAsyncService . saveLog ( waybillEntity . getId ( ) , waybillEntity . getWaybillNo ( ) , "20" , "已入库" , "运单入库:" + stockCount + "/" + totalCount + ",入库类型:【" + IncomingTypeEnum . getValue ( incomingType ) + "】,入库时间:" + CommonUtil . dateToStringGeneral ( new Date ( ) ) , AuthUtil . getNickName ( ) , AuthUtil . getUserId ( ) , warehouseId , finalWarehouseName ) ;
//存入日志
packageTrackLogAsyncService . addPackageTrackLog ( AuthUtil . getTenantId ( ) , AuthUtil . getUserId ( ) , Func . firstLong ( AuthUtil . getDeptId ( ) ) , AuthUtil . getNickName ( ) , orderPackageCodes , warehouseId , finalWarehouseName , WorkNodeEnums . INITIAL_WAREHOUSE_ENTRY . getCode ( ) , "包件" + IncomingTypeEnum . getValue ( incomingType ) ) ;
//2.判断包件和订单是否已经存入在库订单
boolean b = advanceService . saveOrderAndPackages ( advanceDetailEntities , warehouseId ) ;
if ( b ) {
//把advanceDetailEntities通过waybillNo进行分组
Map < String , List < TrunklineAdvanceDetailEntity > > advanceDetailEntityWaybillNoMap = advanceDetailEntities . stream ( ) . filter ( entity - > StringUtil . isNotBlank ( entity . getWaybillNo ( ) ) ) . collect ( Collectors . groupingBy ( TrunklineAdvanceDetailEntity : : getWaybillNo ) ) ;
Set < String > waybillNoSet = advanceDetailEntityWaybillNoMap . keySet ( ) ;
if ( ! waybillNoSet . isEmpty ( ) ) {
List < WarehouseWaybillEntity > waybillEntityList = warehouseWaybillClient . findWaybillBilllByWaybillNos ( new ArrayList < > ( waybillNoSet ) ) ;
//把waybillEntityList转化成waybillNo为key的map
Map < String , WarehouseWaybillEntity > waybillEntityMap = waybillEntityList . stream ( ) . collect ( Collectors . toMap ( WarehouseWaybillEntity : : getWaybillNo , Function . identity ( ) ) ) ;
advanceDetailEntityWaybillNoMap . keySet ( ) . forEach ( waybillNo - > {
List < TrunklineAdvanceDetailEntity > waybillNoAdvanceDetailEntities = advanceDetailEntityWaybillNoMap . get ( waybillNo ) ;
if ( ! waybillNoAdvanceDetailEntities . isEmpty ( ) ) {
WarehouseWaybillEntity waybillEntity = waybillEntityMap . get ( waybillNo ) ;
if ( ! Objects . isNull ( waybillEntity ) ) {
Long departureWarehouseId = waybillEntity . getDepartureWarehouseId ( ) ;
if ( departureWarehouseId ! = null & & departureWarehouseId . equals ( warehouseId ) ) {
Integer totalCount = waybillEntity . getTotalCount ( ) ;
Integer stockCount = waybillEntity . getStockCount ( ) ;
openOrderAsyncService . saveLog ( waybillEntity . getId ( ) , waybillEntity . getWaybillNo ( ) , "20" , "已入库" , "运单入库:" + stockCount + "/" + totalCount + ",入库类型:【" + IncomingTypeEnum . getValue ( incomingType ) + "】,入库时间:" + CommonUtil . dateToStringGeneral ( new Date ( ) ) , AuthUtil . getNickName ( ) , AuthUtil . getUserId ( ) , warehouseId , finalWarehouseName ) ;
}
}
}
}
} ) ;
}
if ( ! Objects . isNull ( billladingId ) ) {
//先判断该包件是否已经有提货记录了
List < String > noOrderPackageCodes = billladingPackageServicie . findBillladingPackages ( orderPackageCodes ) ;
if ( ! noOrderPackageCodes . isEmpty ( ) ) {
billladingPackageServicie . saveEntityBatch ( noOrderPackageCodes , billladingId , warehouseId , incomingType ) ;
} ) ;
}
}
//4.如果有托盘码
orderPackageCodes . forEach ( packageCode - > {
if ( StringUtil . isNotBlank ( trayCode ) & & StringUtil . isNotBlank ( trayType ) ) {
Map < String , Object > map = new HashMap < > ( ) ;
map . put ( "trayType" , trayType ) ;
map . put ( "trayCode" , trayCode ) ;
map . put ( "warehouseId" , warehouseId ) ;
map . put ( "orderPackageCode" , packageCode ) ;
warehouseTrayTypeClient . orderScanOrderPackageCode ( map ) ;
if ( ! Objects . isNull ( billladingId ) ) {
//先判断该包件是否已经有提货记录了
List < String > noOrderPackageCodes = billladingPackageServicie . findBillladingPackages ( orderPackageCodes ) ;
if ( ! noOrderPackageCodes . isEmpty ( ) ) {
billladingPackageServicie . saveEntityBatch ( noOrderPackageCodes , billladingId , warehouseId , incomingType ) ;
}
}
} ) ;
}
try {
advanceDetailEntities . forEach ( advanceDetailEntity - > {
R < Tenant > result = sysClient . getTenant ( AuthUtil . getTenantId ( ) ) ;
if ( result . isSuccess ( ) ) {
Tenant tenant = result . getData ( ) ;
if ( tenant . getTenantType ( ) = = 1 ) {
// 发送入库消息
OrderStatusDTO orderStatusDTO = new OrderStatusDTO ( ) ;
// 通过包件id 查询包件
orderStatusDTO . setUnitNo ( advanceDetailEntity . getOrderPackageCode ( ) ) ;
orderStatusDTO . setOrderNo ( advanceDetailEntity . getOrderCode ( ) ) ;
orderStatusDTO . setStatus ( "1" ) ;
orderStatusDTO . setOperationTime ( DateUtil . now ( ) ) ;
orderStatusDTO . setCurrentWarehouse ( warehouseId . toString ( ) ) ;
//4.如果有托盘码
orderPackageCodes . forEach ( packageCode - > {
if ( StringUtil . isNotBlank ( trayCode ) & & StringUtil . isNotBlank ( trayType ) ) {
Map < String , Object > map = new HashMap < > ( ) ;
map . put ( "messageData" , JSONUtil . toJsonStr ( orderStatusDTO ) ) ;
rabbitTemplate . convertAndSend ( RabbitConstant . HWY_ORDER_STATUS_EXCHANGE , RabbitConstant . HWY_ORDER_STATUS_ROUTING , map ) ;
NodePushMsg nodePushMsg = NodePushMsg . builder ( )
. operator ( AuthUtil . getNickName ( ) )
. operatorTime ( new Date ( ) )
. address ( "在【" + finalWarehouseName + "】入库" )
. brand ( BrandEnums . getByValue ( advanceDetailEntity . getBrand ( ) ) )
. node ( WorkNodeEnums . INITIAL_WAREHOUSE_ENTRY )
. content ( Arrays . asList ( PushData . builder ( )
. packageCode ( advanceDetailEntity . getOrderPackageCode ( ) )
. orderCode ( advanceDetailEntity . getOrderCode ( ) )
. warehouseName ( finalWarehouseName )
. build ( ) ) )
. build ( ) ;
factoryDataMessageSender . sendNodeDataByBrand ( nodePushMsg ) ;
} else if ( tenant . getTenantType ( ) = = 2 ) {
// 完结预入库数据状态
JSONObject jsonObject = new JSONObject ( ) ;
jsonObject . put ( "orderPackageCode" , advanceDetailEntity . getOrderPackageCode ( ) ) ;
jsonObject . put ( "carNum" , null ) ;
Map mapState = new HashMap ( ) ;
mapState . put ( "messageId" , CommonUtil . getUUID ( ) ) ;
mapState . put ( "messageData" , jsonObject ) ;
mapState . put ( "createTime" , System . currentTimeMillis ( ) ) ;
try {
rabbitTemplate . convertAndSend ( RabbitConstant . IN_WAREHOUSE_TO_BUSINESS_DATA_EXCHANGE , RabbitConstant . IN_WAREHOUSE_TO_BUSINESS_DATA_ROUTING , mapState , message - > {
message . getMessageProperties ( )
. setHeader ( "x-delay" , 5000 ) ;
return message ;
} ) ;
} catch ( Exception customerException ) {
log . error ( ">>>>>>>>>>>>>>>>>>>>>>>>>> 消息推送失败~ 请联系管理员! " , customerException ) ;
map . put ( "trayType" , trayType ) ;
map . put ( "trayCode" , trayCode ) ;
map . put ( "warehouseId" , warehouseId ) ;
map . put ( "orderPackageCode" , packageCode ) ;
warehouseTrayTypeClient . orderScanOrderPackageCode ( map ) ;
}
} ) ;
}
try {
advanceDetailEntities . forEach ( advanceDetailEntity - > {
R < Tenant > result = sysClient . getTenant ( AuthUtil . getTenantId ( ) ) ;
if ( result . isSuccess ( ) ) {
Tenant tenant = result . getData ( ) ;
if ( tenant . getTenantType ( ) = = 1 ) {
// 发送入库消息
OrderStatusDTO orderStatusDTO = new OrderStatusDTO ( ) ;
// 通过包件id 查询包件
orderStatusDTO . setUnitNo ( advanceDetailEntity . getOrderPackageCode ( ) ) ;
orderStatusDTO . setOrderNo ( advanceDetailEntity . getOrderCode ( ) ) ;
orderStatusDTO . setStatus ( "1" ) ;
orderStatusDTO . setOperationTime ( DateUtil . now ( ) ) ;
orderStatusDTO . setCurrentWarehouse ( warehouseId . toString ( ) ) ;
Map < String , Object > map = new HashMap < > ( ) ;
map . put ( "messageData" , JSONUtil . toJsonStr ( orderStatusDTO ) ) ;
rabbitTemplate . convertAndSend ( RabbitConstant . HWY_ORDER_STATUS_EXCHANGE , RabbitConstant . HWY_ORDER_STATUS_ROUTING , map ) ;
NodePushMsg nodePushMsg = NodePushMsg . builder ( )
. operator ( AuthUtil . getNickName ( ) )
. operatorTime ( new Date ( ) )
. address ( "在【" + finalWarehouseName + "】入库" )
. brand ( BrandEnums . getByValue ( advanceDetailEntity . getBrand ( ) ) )
. node ( WorkNodeEnums . INITIAL_WAREHOUSE_ENTRY )
. content ( Arrays . asList ( PushData . builder ( )
. packageCode ( advanceDetailEntity . getOrderPackageCode ( ) )
. orderCode ( advanceDetailEntity . getOrderCode ( ) )
. warehouseName ( finalWarehouseName )
. build ( ) ) )
. build ( ) ;
factoryDataMessageSender . sendNodeDataByBrand ( nodePushMsg ) ;
} else if ( tenant . getTenantType ( ) = = 2 ) {
// 完结预入库数据状态
JSONObject jsonObject = new JSONObject ( ) ;
jsonObject . put ( "orderPackageCode" , advanceDetailEntity . getOrderPackageCode ( ) ) ;
jsonObject . put ( "carNum" , null ) ;
Map mapState = new HashMap ( ) ;
mapState . put ( "messageId" , CommonUtil . getUUID ( ) ) ;
mapState . put ( "messageData" , jsonObject ) ;
mapState . put ( "createTime" , System . currentTimeMillis ( ) ) ;
try {
rabbitTemplate . convertAndSend ( RabbitConstant . IN_WAREHOUSE_TO_BUSINESS_DATA_EXCHANGE , RabbitConstant . IN_WAREHOUSE_TO_BUSINESS_DATA_ROUTING , mapState , message - > {
message . getMessageProperties ( )
. setHeader ( "x-delay" , 5000 ) ;
return message ;
} ) ;
} catch ( Exception customerException ) {
log . error ( ">>>>>>>>>>>>>>>>>>>>>>>>>> 消息推送失败~ 请联系管理员! " , customerException ) ;
// throw new CustomerException(customerException.getMessage());
}
}
} else {
log . warn ( "未知的租户类型" ) ;
}
} else {
log . warn ( "未知的租户类型" ) ;
}
}
} ) ;
} catch ( Exception e ) {
log . error ( ">>>>>>>>>>>>>>>>>>>>>>>>>> 预入库消息推送失败~ 请联系管理员! " , e ) ;
}
} ) ;
} catch ( Exception e ) {
log . error ( ">>>>>>>>>>>>>>>>>>>>>>>>>> 预入库消息推送失败~ 请联系管理员! " , e ) ;
// throw new CustomerException("服务器异常");
}
}
} else if ( "1" . equals ( packageStatus ) ) {
//已入库包件
if ( incomingType ! = 1 ) {
log . warn ( "############incomingPackage: 包件已入库 orderPackageCodes={} warehouseId={}" , orderPackageCodes , warehouseId ) ;
throw new CustomerException ( 405 , "包件" + orderPackageCodes + "已入库" ) ;
} else {
if ( ! Objects . isNull ( billladingId ) ) {
//先判断该包件是否已经有提货记录了
List < String > noOrderPackageCodes = billladingPackageServicie . findBillladingPackages ( orderPackageCodes ) ;
if ( ! noOrderPackageCodes . isEmpty ( ) ) {
billladingPackageServicie . saveEntityBatch ( noOrderPackageCodes , billladingId , warehouseId , incomingType ) ;
} else if ( "1" . equals ( packageStatus ) ) {
//已入库包件
if ( incomingType ! = 1 ) {
log . warn ( "############incomingPackage: 包件已入库 orderPackageCodes={} warehouseId={}" , orderPackageCodes , warehouseId ) ;
throw new CustomerException ( 405 , "包件" + orderPackageCodes + "已入库" ) ;
} else {
if ( ! Objects . isNull ( billladingId ) ) {
//先判断该包件是否已经有提货记录了
List < String > noOrderPackageCodes = billladingPackageServicie . findBillladingPackages ( orderPackageCodes ) ;
if ( ! noOrderPackageCodes . isEmpty ( ) ) {
billladingPackageServicie . saveEntityBatch ( noOrderPackageCodes , billladingId , warehouseId , incomingType ) ;
}
}
}
//4.如果有托盘码
orderPackageCodes . forEach ( packageCode - > {
if ( StringUtil . isNotBlank ( trayCode ) & & StringUtil . isNotBlank ( trayType ) ) {
Map < String , Object > map = new HashMap < > ( ) ;
map . put ( "trayType" , trayType ) ;
map . put ( "trayCode" , trayCode ) ;
map . put ( "warehouseId" , warehouseId ) ;
map . put ( "orderPackageCode" , packageCode ) ;
warehouseTrayTypeClient . orderScanOrderPackageCode ( map ) ;
}
} ) ;
//4.如果有托盘码
orderPackageCodes . forEach ( packageCode - > {
if ( StringUtil . isNotBlank ( trayCode ) & & StringUtil . isNotBlank ( trayType ) ) {
Map < String , Object > map = new HashMap < > ( ) ;
map . put ( "trayType" , trayType ) ;
map . put ( "trayCode" , trayCode ) ;
map . put ( "warehouseId" , warehouseId ) ;
map . put ( "orderPackageCode" , packageCode ) ;
warehouseTrayTypeClient . orderScanOrderPackageCode ( map ) ;
}
} ) ;
}
}
}
}
} ) ;
} ) ;
} catch ( Exception e ) {
e . printStackTrace ( ) ;
log . error ( "入库异常" , e ) ;
throw new CustomerException ( "系统异常,请联系管理员" ) ;
}
// for (String packageCode : packageCodes) {
// log.info("############incomingPackage: 包件入库开始 packageCode={} billladingId={} warehouseId={}", packageCode, billladingId, warehouseId);
// //包件入库开始
// //查询包件是否有数据
// QueryWrapper<TrunklineAdvanceDetailEntity> advanceDetailQueryWrapper = new QueryWrapper<>();
// advanceDetailQueryWrapper.eq("order_package_code", packageCode);
// TrunklineAdvanceDetailEntity advanceDetailEntity = advanceDetailService.getOne(advanceDetailQueryWrapper);
// if (Objects.isNull(advanceDetailEntity)) {
// log.warn("############incomingPackage: 包件不存在 packageCode={} warehouseId={}", packageCode, warehouseId);
// return Resp.scanFail(405, "包件无数据", "包件无数据");
// }
// Long advanceDetailId = advanceDetailEntity.getId();
// String packageStatus = advanceDetailEntity.getPackageStatus();
// Long advanceId = advanceDetailEntity.getAdvanceId();
// if ("1".equals(packageStatus)) {
// if (incomingType != 1) {
// log.warn("############incomingPackage: 包件已入库 packageCode={} warehouseId={}", packageCode, warehouseId);
// return Resp.scanFail(405, "包件已入库", "包件已入库");
// } else {
// if (!Objects.isNull(billladingId)) {
// //先判断该包件是否已经有提货记录了
// TrunklineBillladingPackageEntity billladingPackageEntity = billladingPackageServicie.findBillladingPackage(packageCode);
// if (Objects.isNull(billladingPackageEntity)) {
// billladingPackageServicie.saveEntity(packageCode, billladingId, warehouseId, incomingType);
// }
// }
//
// //4.如果有托盘码
// if (StringUtil.isNotBlank(trayCode) && StringUtil.isNotBlank(trayType)) {
// Map<String, Object> map = new HashMap<>();
// map.put("trayType", trayType);
// map.put("trayCode", trayCode);
// map.put("warehouseId", warehouseId);
// map.put("orderPackageCode", packageCode);
// warehouseTrayTypeClient.orderScanOrderPackageCode(map);
// }
// }
// } else {
// if (StringUtil.isBlank(warehouseName)) {
// BasicdataWarehouseEntity warehouseEntity = warehouseClient.getEntityWarehouseId(warehouseId);
// if (!Objects.isNull(warehouseEntity)) {
// warehouseName = warehouseEntity.getName();
// }
// }
//
// //1.修改暂存单包件入库状态
// advanceDetailService.updatePackageStatusById("1", advanceDetailId, warehouseId, warehouseName,new Date());
// List<String> incomingWarehouseNames = advanceDetailService.findIncomingWarehouseName(advanceId);
// advanceService.updateIncomingWarehouseName(String.join(",", incomingWarehouseNames), advanceId);
//
// List<String> orderPackageCodes = new ArrayList<>();
// orderPackageCodes.add(orderPackageCode);
// //存入日志
// packageTrackLogAsyncService.addPackageTrackLog(AuthUtil.getTenantId(), AuthUtil.getUserId(), Func.firstLong(AuthUtil.getDeptId()), AuthUtil.getNickName(), orderPackageCodes, warehouseId, warehouseName, WorkNodeEnums.INITIAL_WAREHOUSE_ENTRY.getCode(), "包件" + IncomingTypeEnum.getValue(incomingType));
//
//
// //2.判断包件和订单是否已经存入在库订单
// boolean b = advanceService.saveOrderAndPackage(advanceDetailEntity, warehouseId);
//
// if (b) {
// //3.根据是否有提货单id绑定提货单
// if (!Objects.isNull(billladingId)) {
// //先判断该包件是否已经有提货记录了
// TrunklineBillladingPackageEntity billladingPackageEntity = billladingPackageServicie.findBillladingPackage(packageCode);
// if (Objects.isNull(billladingPackageEntity)) {
// billladingPackageServicie.saveEntity(packageCode, billladingId, warehouseId, incomingType);
// }
// }
//
// //4.如果有托盘码
// if (StringUtil.isNotBlank(trayCode) && StringUtil.isNotBlank(trayType)) {
// Map<String, Object> map = new HashMap<>();
// map.put("trayType", trayType);
// map.put("trayCode", trayCode);
// map.put("warehouseId", warehouseId);
// map.put("orderPackageCode", packageCode);
// warehouseTrayTypeClient.orderScanOrderPackageCode(map);
// }
// }
// try {
// // 发送入库消息
// OrderStatusDTO orderStatusDTO = new OrderStatusDTO();
// // 通过包件id 查询包件
// orderStatusDTO.setUnitNo(packageCode);
// orderStatusDTO.setOrderNo(advanceDetailEntity.getOrderCode());
// orderStatusDTO.setStatus("1");
// orderStatusDTO.setOperationTime(DateUtil.now());
// orderStatusDTO.setCurrentWarehouse(warehouseId.toString());
// Map<String, Object> map = new HashMap<>();
// map.put("messageData", JSONUtil.toJsonStr(orderStatusDTO));
// rabbitTemplate.convertAndSend(RabbitConstant.HWY_ORDER_STATUS_EXCHANGE, RabbitConstant.HWY_ORDER_STATUS_ROUTING, map);
//
// NodePushMsg nodePushMsg = NodePushMsg.builder()
// .operator(AuthUtil.getNickName())
// .operatorTime(new Date())
// .address("在【"+ warehouseName +"】入库")
// .brand(BrandEnums.getByValue(advanceDetailEntity.getBrand()))
// .node(WorkNodeEnums.INITIAL_WAREHOUSE_ENTRY)
// .content(Arrays.asList(PushData.builder().packageCode(packageCode).build()))
// .build();
// factoryDataMessageSender.sendNodeDataByBrand(nodePushMsg);
// } catch (Exception e) {
// log.error("入库推送失败:{}", e);
// }
// }
// }
return R . success ( "入库成功" ) ;
}