|
|
|
@ -24,8 +24,6 @@ import org.springblade.common.constant.broadcast.FanoutConstants;
|
|
|
|
|
import org.springblade.common.model.FanoutMsg; |
|
|
|
|
import org.springblade.common.utils.CommonUtil; |
|
|
|
|
import org.springblade.core.redis.cache.BladeRedis; |
|
|
|
|
import org.springblade.core.secure.BladeUser; |
|
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
|
import org.springblade.system.cache.UserCache; |
|
|
|
|
import org.springblade.system.entity.User; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
@ -176,6 +174,14 @@ public class OpenOrderAsyncServiceImpl implements IOpenOrderAsyncService {
|
|
|
|
|
log.warn("saveAbnormalLog >>>> 重复保存,不做处理"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
//把list中所有对象的id取出来放入一个list
|
|
|
|
|
List<Long> ids = list.stream().map(TrunklineWaybillTrackEntity::getId).collect(Collectors.toList()); |
|
|
|
|
//把ids的第一个元素移除
|
|
|
|
|
ids.remove(0); |
|
|
|
|
if(CollUtil.isNotEmpty(ids)){ |
|
|
|
|
trunklineWaybillTrackService.deleteListByIds(ids); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
TrunklineWaybillTrackEntity waybillTrackEntity = new TrunklineWaybillTrackEntity(); |
|
|
|
|