|
|
|
@ -4,6 +4,7 @@ import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import cn.hutool.core.date.DateUtil; |
|
|
|
|
import cn.hutool.core.lang.UUID; |
|
|
|
|
import cn.hutool.core.util.EnumUtil; |
|
|
|
|
import cn.hutool.core.util.NumberUtil; |
|
|
|
|
import cn.hutool.core.util.ObjectUtil; |
|
|
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
|
import cn.hutool.http.HttpUtil; |
|
|
|
@ -98,9 +99,31 @@ public class NodeDataPushListener {
|
|
|
|
|
log.info("订单数据为空,不处理:{}", JSONUtil.toJsonStr(content)); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
for (String sendOrderCode : orderCodes) { |
|
|
|
|
// 先从新系统查,如果查不到,去老系统查一次
|
|
|
|
|
List<PushOrderDetailEntity> orderDetailEntities = pushOrderDetailService.list(Wrappers.<PushOrderDetailEntity>lambdaQuery() |
|
|
|
|
.in(PushOrderDetailEntity::getCustomItemNo, orderCodes) |
|
|
|
|
.in(PushOrderDetailEntity::getCustomItemNo, sendOrderCode) |
|
|
|
|
); |
|
|
|
|
if (CollUtil.isEmpty(orderDetailEntities)) { |
|
|
|
|
// 去老系统查
|
|
|
|
|
if(StrUtil.isNotEmpty(jinPaiProperties.getOldSystemHost()) && StrUtil.isNotEmpty(jinPaiProperties.getFindOldDataUrl())){ |
|
|
|
|
try { |
|
|
|
|
String result = HttpUtil.get(jinPaiProperties.getOldSystemHost() + jinPaiProperties.getFindOldDataUrl() + "?orderCode=" + sendOrderCode); |
|
|
|
|
if(StrUtil.isNotEmpty(result)){ |
|
|
|
|
JSONObject jsonObject = JSONUtil.parseObj(result); |
|
|
|
|
Integer code = jsonObject.getInt("code"); |
|
|
|
|
if(NumberUtil.equals(code, 200)){ |
|
|
|
|
JSONArray data = jsonObject.getJSONArray("data"); |
|
|
|
|
if (CollUtil.isNotEmpty(data)) { |
|
|
|
|
orderDetailEntities = data.toList(PushOrderDetailEntity.class); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.error("老系统查询失败",e); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (CollUtil.isEmpty(orderDetailEntities)) { |
|
|
|
|
log.info("未查到包件数据,不处理:{}", JSONUtil.toJsonStr(content)); |
|
|
|
|
return; |
|
|
|
@ -125,7 +148,7 @@ public class NodeDataPushListener {
|
|
|
|
|
Map<String, FactoryNodePushEntity> pushEntityMap = new HashMap<>(); |
|
|
|
|
if (CollUtil.isNotEmpty(pushEntities)) { |
|
|
|
|
pushEntityMap = pushEntities.stream().filter(pushEntity -> { |
|
|
|
|
return StrUtil.equals(pushEntity.getNode(),FactoryNodeEnums.FINAL_NET_ARRIVE_CAR.getCode().toString()); |
|
|
|
|
return StrUtil.equals(pushEntity.getNode(), FactoryNodeEnums.FINAL_NET_ARRIVE_CAR.getCode().toString()); |
|
|
|
|
}).collect(Collectors.toMap(FactoryNodePushEntity::getOrderCode, v -> v)); |
|
|
|
|
} |
|
|
|
|
JSONObject mainJson = JSONUtil.parseObj(main); |
|
|
|
@ -192,7 +215,7 @@ public class NodeDataPushListener {
|
|
|
|
|
Map<String, FactoryNodePushEntity> pushEntityMap = new HashMap<>(); |
|
|
|
|
if (CollUtil.isNotEmpty(pushEntities)) { |
|
|
|
|
pushEntityMap = pushEntities.stream().filter(pushEntity -> { |
|
|
|
|
return StrUtil.equals(pushEntity.getNode(),FactoryNodeEnums.END_WAREHOUSE_UNLOADING.getCode().toString()); |
|
|
|
|
return StrUtil.equals(pushEntity.getNode(), FactoryNodeEnums.END_WAREHOUSE_UNLOADING.getCode().toString()); |
|
|
|
|
}).collect(Collectors.toMap(FactoryNodePushEntity::getPackageCode, v -> v)); |
|
|
|
|
} |
|
|
|
|
for (PushData pushData : content) { |
|
|
|
@ -232,6 +255,7 @@ public class NodeDataPushListener {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private boolean checkData(String msg) { |
|
|
|
|
if (StrUtil.isEmpty(msg)) { |
|
|
|
|