|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.logpm.factorydata.olo.mq; |
|
|
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil; |
|
|
|
|
import cn.hutool.core.date.DateUtil; |
|
|
|
|
import cn.hutool.core.io.FileUtil; |
|
|
|
|
import cn.hutool.core.util.CharsetUtil; |
|
|
|
|
import cn.hutool.core.util.ObjectUtil; |
|
|
|
@ -106,8 +107,8 @@ public class FactoryOrderListener {
|
|
|
|
|
String crmSo = vo.getCRM_SO(); |
|
|
|
|
String sn = vo.getSN(); |
|
|
|
|
if (entityMap.containsKey(crmSo + sn)) { |
|
|
|
|
log.error("CRM单号:{} 与SN:{} 数据已经处理过了,logId: {}", crmSo, sn, logId); |
|
|
|
|
continue; |
|
|
|
|
log.info("CRM单号:{} 与SN:{} 订单+包件重复,logId: {}", crmSo, sn, logId); |
|
|
|
|
sn = sn + "-" + DateUtil.format(DateUtil.date(), "MMdd") + "-补"; |
|
|
|
|
} |
|
|
|
|
DeliveryNoteEntity entity = new DeliveryNoteEntity(); |
|
|
|
|
entity.setLogId(ObjectUtil.isNotEmpty(logId) ? logId.toString() : null); |
|
|
|
|