|
@@ -117,7 +117,7 @@ public class TenantAccountRecordServiceImpl extends ServiceImpl<TenantAccountRec
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
// 过滤为空的
|
|
// 过滤为空的
|
|
- List<TenantAccountRecordImport> collect = importList.stream().filter(o -> o.getPostStatus() == null).collect(Collectors.toList());
|
|
|
|
|
|
+ List<TenantAccountRecordImport> collect = importList.stream().filter(o -> o.getPostStatus() != null).collect(Collectors.toList());
|
|
if (CollectionUtils.isEmpty(collect)) {
|
|
if (CollectionUtils.isEmpty(collect)) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|