|
|
|
@ -24,7 +24,9 @@ import org.springframework.stereotype.Component;
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.HashSet; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Set; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 监听工厂数据转暂存单 |
|
|
|
@ -50,19 +52,49 @@ public class AdvanceOrderListener {
|
|
|
|
|
public void advanceOrder(String msg) { |
|
|
|
|
// 新增暂存单
|
|
|
|
|
if (StrUtil.isNotBlank(msg)) { |
|
|
|
|
log.info("收到工厂数据暂存单消息:{}", msg); |
|
|
|
|
JSONObject entries = JSONUtil.parseObj(msg); |
|
|
|
|
JSONArray details = entries.getJSONArray("details"); |
|
|
|
|
TrunklineAdvanceEntity advanceEntity = JSONUtil.toBean(entries, TrunklineAdvanceEntity.class); |
|
|
|
|
Set<String> packageCodeSet = new HashSet<>(); |
|
|
|
|
if (CollUtil.isNotEmpty(details)) { |
|
|
|
|
// 使用HashSet代替ArrayList以优化内存使用和检查重复值
|
|
|
|
|
Set<String> orderPackageCodes = new HashSet<>(); |
|
|
|
|
details.forEach(detail -> { |
|
|
|
|
try { |
|
|
|
|
// 更具描述性的变量命名
|
|
|
|
|
JSONObject jsonObject = JSONUtil.parseObj(detail); |
|
|
|
|
TrunklineAdvanceDetailEntity entity = JSONUtil.toBean(jsonObject, TrunklineAdvanceDetailEntity.class); |
|
|
|
|
// 检查转换后的实体不为null,且其orderPackageCode非null
|
|
|
|
|
if (!ObjectUtil.hasEmpty(entity, entity.getOrderPackageCode())) { |
|
|
|
|
orderPackageCodes.add(entity.getOrderPackageCode()); |
|
|
|
|
} |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
// 异常处理,可根据实际情况记录日志或进行其他处理
|
|
|
|
|
log.error("暂存单转换时发生异常: " + detail + ",异常:" + e.getMessage()); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
// 查询数据库,校验订单包件编码是否重复
|
|
|
|
|
if (CollUtil.isNotEmpty(orderPackageCodes)) { |
|
|
|
|
List<String> codes = advanceDetailService.findPackageCodeByCodes(orderPackageCodes); |
|
|
|
|
if (CollUtil.isNotEmpty(codes)) { |
|
|
|
|
packageCodeSet.addAll(codes); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (ObjectUtil.isNotNull(advanceEntity)) { |
|
|
|
|
advanceService.save(advanceEntity); |
|
|
|
|
} |
|
|
|
|
JSONArray details = entries.getJSONArray("details"); |
|
|
|
|
if (CollUtil.isNotEmpty(details)) { |
|
|
|
|
if (ObjectUtil.isNotEmpty(advanceEntity) && CollUtil.isNotEmpty(details)) { |
|
|
|
|
List<TrunklineAdvanceDetailEntity> advanceDetailEntityList = new ArrayList<>(); |
|
|
|
|
List<TrunklineDetailProductEntity> detailProductEntityList = new ArrayList<>(); |
|
|
|
|
for (Object detailObj : details) { |
|
|
|
|
JSONObject detail = JSONUtil.parseObj(detailObj); |
|
|
|
|
TrunklineAdvanceDetailEntity advanceDetailEntity = JSONUtil.toBean(detail, TrunklineAdvanceDetailEntity.class); |
|
|
|
|
if (ObjectUtil.isNotNull(advanceDetailEntity)) { |
|
|
|
|
if (CollUtil.isNotEmpty(packageCodeSet) && packageCodeSet.contains(advanceDetailEntity.getOrderPackageCode())) { |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
advanceDetailEntity.setAdvanceId(advanceEntity.getId()); |
|
|
|
|
advanceDetailEntityList.add(advanceDetailEntity); |
|
|
|
|
JSONArray items = detail.getJSONArray("items"); |
|
|
|
|