|
@@ -950,7 +950,9 @@ public class TBCrmServiceImpl extends ServiceImpl<TBCrmMapper, TBCrm> implements
|
|
customDtoList.addAll(crmCustomList);
|
|
customDtoList.addAll(crmCustomList);
|
|
} else if (crmCustomList.size() > 1) {
|
|
} else if (crmCustomList.size() > 1) {
|
|
CrmCustomImportDto dto = new CrmCustomImportDto();
|
|
CrmCustomImportDto dto = new CrmCustomImportDto();
|
|
- dto.setCrmNo(crmCustomList.get(0).getCrmNo());
|
|
|
|
|
|
+ CrmCustomImportDto customImportDto = crmCustomList.get(0);
|
|
|
|
+ dto.setCrmNo(customImportDto.getCrmNo());
|
|
|
|
+ dto.setCustomName(customImportDto.getCustomName());
|
|
customDtoList.add(dto);
|
|
customDtoList.add(dto);
|
|
}
|
|
}
|
|
}
|
|
}
|