|
@@ -325,7 +325,7 @@ public class PushFacade {
|
|
public List<ConceptPushDTO> addQuestionId(List<ConceptPushDTO> concepts, Integer type) {
|
|
public List<ConceptPushDTO> addQuestionId(List<ConceptPushDTO> concepts, Integer type) {
|
|
QueryWrapper<QuestionInfo> questionInfoQueryWrapper = new QueryWrapper<>();
|
|
QueryWrapper<QuestionInfo> questionInfoQueryWrapper = new QueryWrapper<>();
|
|
List<String> nameList = concepts.stream().map(concept -> concept.getName()).collect(Collectors.toList());
|
|
List<String> nameList = concepts.stream().map(concept -> concept.getName()).collect(Collectors.toList());
|
|
- questionInfoQueryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey()).eq("type", type);
|
|
|
|
|
|
+ questionInfoQueryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey()).eq("type", type).ne("tag_type", TagTypeEnum.T8.getKey());
|
|
//化验填写单匹配name
|
|
//化验填写单匹配name
|
|
if (type.equals(ConceptTypeEnum.Lis.getKey())) {
|
|
if (type.equals(ConceptTypeEnum.Lis.getKey())) {
|
|
questionInfoQueryWrapper.in("name", nameList);
|
|
questionInfoQueryWrapper.in("name", nameList);
|