|
@@ -943,8 +943,9 @@ public class TBCrmServiceImpl extends ServiceImpl<TBCrmMapper, TBCrm> implements
|
|
|
Set<Map.Entry<List<Object>, List<CrmCustomImportDto>>> entries = customGroupByList.entrySet();
|
|
|
for (Map.Entry<List<Object>, List<CrmCustomImportDto>> entry : entries) {
|
|
|
List<CrmCustomImportDto> crmCustomList = entry.getValue();
|
|
|
- if (CollectionUtils.isEmpty(crmCustomList))
|
|
|
+ if (CollectionUtils.isEmpty(crmCustomList)) {
|
|
|
continue;
|
|
|
+ }
|
|
|
if (crmCustomList.size() == 1) {
|
|
|
customDtoList.addAll(crmCustomList);
|
|
|
} else if (crmCustomList.size() > 1) {
|