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