|
@@ -311,7 +311,9 @@ public class TaH5SampleController extends BaseController {
|
311
|
311
|
queryWrapper.eq("sample_id", taH5Sample.getSampleId());
|
312
|
312
|
List<TaSampleContact> sampleContactList = iTaSampleContactService.list(queryWrapper);
|
313
|
313
|
if (sampleContactList.size() > 0) {
|
314
|
|
- List<TaContact> taContactList = taContactService.list(new QueryWrapper<TaContact>().in("contact_id", sampleContactList.stream().map(TaSampleContact::getContactId).collect(Collectors.toList())));
|
|
314
|
+ List<TaContact> taContactList = taContactService.list(new QueryWrapper<TaContact>()
|
|
315
|
+ .in("contact_ id", sampleContactList.stream().map(TaSampleContact::getContactId).collect(Collectors.toList()))
|
|
316
|
+ .eq("status",CommConstant.STATUS_NORMAL));
|
315
|
317
|
taH5Sample.setTaContactList(taContactList);
|
316
|
318
|
}
|
317
|
319
|
if (!StringUtils.isEmpty(taH5Sample.getTag())) {
|