|
|
|
@ -8,6 +8,7 @@ import cn.hutool.core.util.ObjectUtil;
|
|
|
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
|
import cn.hutool.json.JSONObject; |
|
|
|
|
import cn.hutool.json.JSONUtil; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
|
import com.logpm.factorydata.enums.BrandEnums; |
|
|
|
|
import com.logpm.factorydata.feign.IFactoryDataClient; |
|
|
|
|
import com.logpm.factorydata.vo.NodePushMsg; |
|
|
|
@ -102,23 +103,44 @@ public class ZbomNodeDataPushListener {
|
|
|
|
|
String node = entries.getStr("node"); |
|
|
|
|
WorkNodeEnums workNodeEnums = EnumUtil.fromString(WorkNodeEnums.class, node); |
|
|
|
|
// 2 获取业务数据
|
|
|
|
|
List<String> packageCodeList = getBizData(entries); |
|
|
|
|
if (CollUtil.isNotEmpty(packageCodeList)) { |
|
|
|
|
// List<String> packageCodeList = getBizData(entries);
|
|
|
|
|
List<JSONObject> content = entries.getBeanList("content", JSONObject.class); |
|
|
|
|
if (CollUtil.isNotEmpty(content)) { |
|
|
|
|
String warehouseName = content.get(0).getStr("warehouseName"); |
|
|
|
|
String orderCode = content.get(0).getStr("orderCode"); |
|
|
|
|
// 根据运单号和自编码分组查询出对应的数量
|
|
|
|
|
List<NodeDataDTO> orders = orderPackageService.findOrderCodebypackageCodes(packageCodeList); |
|
|
|
|
List<NodeDataDTO> orders = orderPackageService.findOrderCodebypackageCodes(content); |
|
|
|
|
Map<String, NodeDataDTO> nodeDataMap = new HashMap<>(); |
|
|
|
|
if (CollUtil.isNotEmpty(orders)) { |
|
|
|
|
for (NodeDataDTO order : orders) { |
|
|
|
|
nodeDataMap.put(order.getDepartCode() + order.getPlatformOrderCode(), order); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
log.error("【{}】节点【{}】未查到数据", StrUtil.toString(packageCodeList), node); |
|
|
|
|
log.error("【{}】节点【{}】未查到数据", StrUtil.toString(content), node); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (CollUtil.isNotEmpty(nodeDataMap)) { |
|
|
|
|
if (StrUtil.equals(node, NodeNeedEnums.UNLOAD_INCOMING_WAREHOUSE.getValue())) { |
|
|
|
|
for (Map.Entry<String, NodeDataDTO> stringNodeDataDTOEntry : nodeDataMap.entrySet()) { |
|
|
|
|
NodeDataDTO value = stringNodeDataDTOEntry.getValue(); |
|
|
|
|
// 卸车入库只发推一次
|
|
|
|
|
List<ZbFactoryNodePushEntity> list = nodePushService.list(Wrappers.<ZbFactoryNodePushEntity>lambdaQuery() |
|
|
|
|
.eq(ZbFactoryNodePushEntity::getPlatformOrderCode, orderCode) |
|
|
|
|
.eq(ZbFactoryNodePushEntity::getWorkNode, node) |
|
|
|
|
.eq(ZbFactoryNodePushEntity::getWarehouseName, warehouseName) |
|
|
|
|
.eq(ZbFactoryNodePushEntity::getDepartCode, value.getDepartCode()) |
|
|
|
|
); |
|
|
|
|
// 已经推送过了就不再推了
|
|
|
|
|
if(CollUtil.isNotEmpty(list)){ |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// 签收节点获取组装未签收数据
|
|
|
|
|
Map<String, Integer> noSignNumberMap = null; |
|
|
|
|
if (EnumUtil.equals(WorkNodeEnums.CLERK_REVIEW, node)) { |
|
|
|
|
noSignNumberMap = getNoSignNumber(packageCodeList); |
|
|
|
|
noSignNumberMap = getNoSignNumber(content); |
|
|
|
|
} |
|
|
|
|
// 获取历史发送的节点数据
|
|
|
|
|
List<ZbFactoryNodeOrderEntity> nodeOrderEntities = nodeOrderService.findHistoryNodeOrder(orders); |
|
|
|
@ -178,6 +200,8 @@ public class ZbomNodeDataPushListener {
|
|
|
|
|
.departCode(nodeConfirmParam.getDepartCode()) |
|
|
|
|
.platformOrderCode(nodeConfirmParam.getPlatformOrderCode()) |
|
|
|
|
.node(nodeConfirmParam.getNode()) |
|
|
|
|
.workNode(node) |
|
|
|
|
.warehouseName(warehouseName) |
|
|
|
|
.packageCode(packageCode) |
|
|
|
|
.content(body) |
|
|
|
|
.resultContent(result) |
|
|
|
@ -357,9 +381,9 @@ public class ZbomNodeDataPushListener {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@NotNull |
|
|
|
|
private Map<String, Integer> getNoSignNumber(List<String> packageCodeList) { |
|
|
|
|
private Map<String, Integer> getNoSignNumber(List<JSONObject> content) { |
|
|
|
|
// 根据运单号和自编码分组查询出未签收的数量
|
|
|
|
|
List<NoSignNumberDTO> noSignNumberDTOS = orderPackageService.findNoSignNumber(packageCodeList); |
|
|
|
|
List<NoSignNumberDTO> noSignNumberDTOS = orderPackageService.findNoSignNumber(content); |
|
|
|
|
log.info("未签收数据:{}", JSONUtil.toJsonStr(noSignNumberDTOS)); |
|
|
|
|
Map<String, Integer> noSignNumberMap = new HashMap<>(); |
|
|
|
|
if (CollUtil.isNotEmpty(noSignNumberDTOS)) { |
|
|
|
@ -371,16 +395,16 @@ public class ZbomNodeDataPushListener {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Nullable |
|
|
|
|
private List<String> getBizData(JSONObject entries) { |
|
|
|
|
private List<JSONObject> getBizData(JSONObject entries) { |
|
|
|
|
List<JSONObject> content = entries.getBeanList("content", JSONObject.class); |
|
|
|
|
List<String> packageCodeList = null; |
|
|
|
|
List<JSONObject> packageCodeList = null; |
|
|
|
|
if (CollUtil.isNotEmpty(content)) { |
|
|
|
|
// 查询这次操作的所有包件和运单号
|
|
|
|
|
packageCodeList = new ArrayList<>(); |
|
|
|
|
for (JSONObject obj : content) { |
|
|
|
|
String packageCode = obj.getStr("packageCode"); |
|
|
|
|
if (StrUtil.isNotBlank(packageCode)) { |
|
|
|
|
packageCodeList.add(packageCode); |
|
|
|
|
// packageCodeList.add(packageCode);
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|