|
|
@@ -347,11 +347,11 @@ public class TaxSourceServiceImpl extends ServiceImpl<TaxSourceMapper, TaxSource
|
|
|
|
|
|
//查找排除的车牌号
|
|
|
List<TaxSourceExcludeDto> licenseExclude =
|
|
|
- taxSourceExcludeService.list(new LambdaQueryWrapper<TaxSourceExcludeDto>().eq(TaxSourceExcludeDto::getExcludeInfo, license)
|
|
|
+ taxSourceExcludeService.list(new LambdaQueryWrapper<TaxSourceExcludeDto>().eq(TaxSourceExcludeDto::getExcludeInfo, firstTwoPlates)
|
|
|
.eq(TaxSourceExcludeDto::getType, TaxSourceStatusConstants.EXCLUDE_TYPE_LICENSE));
|
|
|
|
|
|
//车牌排除
|
|
|
- if (licenseExclude.stream().anyMatch(taxSourceDto -> taxSourceDto.getExcludeInfo().contains(firstTwoPlates))) {
|
|
|
+ if (licenseExclude.stream().anyMatch(taxSourceDto -> taxSourceDto.getExcludeInfo().equals(firstTwoPlates))) {
|
|
|
isExclude = true;
|
|
|
}
|
|
|
|
|
|
@@ -365,7 +365,6 @@ public class TaxSourceServiceImpl extends ServiceImpl<TaxSourceMapper, TaxSource
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
return resultId;
|
|
|
}
|
|
|
|