|
|
@@ -333,7 +333,7 @@ public class TaxSourceServiceImpl extends ServiceImpl<TaxSourceMapper,TaxSourceD
|
|
|
|
|
|
//车牌排除
|
|
|
if (licenseExclude.stream()
|
|
|
- .filter(taxSourceDto -> taxSourceDto.getExcludeInfo().equals(license)).count() > 0) {
|
|
|
+ .filter(taxSourceDto -> taxSourceDto.getExcludeInfo().contains(license)).count() > 0) {
|
|
|
isExclude = true;
|
|
|
}
|
|
|
|
|
|
@@ -351,7 +351,7 @@ public class TaxSourceServiceImpl extends ServiceImpl<TaxSourceMapper,TaxSourceD
|
|
|
//查找配置的默认项
|
|
|
TaxSourceDto taxSourceDefaultDto = baseMapper.selectOne(new LambdaQueryWrapper<TaxSourceDto>()
|
|
|
.eq(TaxSourceDto::getInsCompanyId, companyId)
|
|
|
- .eq(TaxSourceDto::getLicense, license));
|
|
|
+ .likeRight(TaxSourceDto::getLicense, license));
|
|
|
if (taxSourceDefaultDto != null) {
|
|
|
resultId = taxSourceDefaultDto.getAgreementId();
|
|
|
}
|