|
|
@@ -24,6 +24,7 @@ import com.ydtech.modules.protocol.service.ITaxSourceExcludeService;
|
|
|
import com.ydtech.modules.protocol.service.ITaxSourceService;
|
|
|
import com.ydtech.modules.protocol.service.PtlAgreementService;
|
|
|
import com.ydtech.utils.idgen.IdGenerate;
|
|
|
+import org.apache.poi.ss.formula.functions.T;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
@@ -371,10 +372,9 @@ public class TaxSourceServiceImpl extends ServiceImpl<TaxSourceMapper, TaxSource
|
|
|
resultId = taxSourceDtos.getAgreementId();
|
|
|
}
|
|
|
|
|
|
- System.out.println(taxSourceDtos.getInsuranceRepertoire() + " " + productid);
|
|
|
-
|
|
|
// 不包含险种 随机其他保险公司
|
|
|
- if (taxSourceDtos != null && taxSourceDtos.getAgreementId().equals(resultId) && taxSourceDtos.getInsuranceRepertoire().contains(productid)) {
|
|
|
+
|
|
|
+ if (taxSourceDtos != null && taxSourceDtos.getAgreementId().equals(resultId) && taxSourceDtos.getInsuranceRepertoire().contains(productid+",")) {
|
|
|
resultId = taxSourceDtos.getBanishAgreementId();
|
|
|
}
|
|
|
|