|
@@ -64,7 +64,7 @@ public class CaseLiveServiceImpl extends ServiceImpl<ICaseLiveMapper, CaseLive>
|
|
|
if(caseNumEntities == null || caseNumEntities.size() <=0 ){
|
|
|
throw new BusinessException(ResultCode.PROJECT_SCENE_NOT_EXITS);
|
|
|
}
|
|
|
- List<String> numList = caseNumEntities.stream().filter(e -> !NumTypeUtils.isLaser(e.getNumType())).map(CaseNumEntity::getNum).collect(Collectors.toList());
|
|
|
+ List<String> numList = caseNumEntities.stream().filter(e ->e.getNumType()!=0 && e.getNumType() !=3 && !NumTypeUtils.isLaser(e.getNumType())).map(CaseNumEntity::getNum).collect(Collectors.toList());
|
|
|
if(numList.size() <=0 ){
|
|
|
throw new BusinessException(ResultCode.PROJECT_SCENE_NOT_EXITS);
|
|
|
}
|