This commit is contained in:
parent
7794c7de56
commit
be9c2db097
|
|
@ -151,7 +151,7 @@ public class RepairAuditDetailsServiceImpl implements IRepairAuditDetailsService
|
||||||
if (!CollectionUtil.isNotEmpty(repairQuestList)) {
|
if (!CollectionUtil.isNotEmpty(repairQuestList)) {
|
||||||
if (CollectionUtil.isNotEmpty(typeIdList)) {
|
if (CollectionUtil.isNotEmpty(typeIdList)) {
|
||||||
repairQuestList = repairQuestList.stream()
|
repairQuestList = repairQuestList.stream()
|
||||||
.filter(item -> typeIdList.contains(item.getFirstId()))
|
.filter(item -> item.getFirstId() != null && typeIdList.contains(item.getFirstId()))
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue