Commit 24a0a92b authored by huyuchen's avatar huyuchen

商险优化修改

parent b4d490da
......@@ -3567,7 +3567,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
//商险办理地权限校验
Integer c = detail.getInsuranceHandleCity();
Integer p = detail.getInsuranceHandleProvince();
if(insuranceAreaResList.stream().noneMatch(s -> c.equals(s.getCity()) && p.equals(s.getProvince()))){
if(!insuranceAreaResList.stream().anyMatch(s -> c.equals(s.getCity()) && p.equals(s.getProvince()))){
param.setErrorMessage(InsurancesConstants.NO_DETAIL_JURISDICTION);
continue;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment