Commit d30c3686 authored by 张庆's avatar 张庆

新增挡板规则

parent d773cca4
......@@ -13,6 +13,7 @@ import com.jqtx.infrastructure.mq.starter.annotation.MQConsumerComponent;
import com.jqtx.infrastructure.oss.starter.config.OssUtils;
import com.jqtx.infrastructure.oss.starter.properties.OssProperties;
import com.jqtx.infrastructure.util.LoanMobileAESUtil;
import com.jqtx.windows.common.config.BaseConfig;
import com.jqtx.windows.common.exception.BizException;
import com.jqtx.windows.component.CreditComponent;
import com.jqtx.windows.component.enums.ZNEduEnum;
......@@ -52,6 +53,8 @@ public class CreditListener extends AbstractMQConsumerHandler<CreditSubmitReques
@Autowired
private WindowsProducer windowsProducer;
@Autowired
private BaseConfig baseConfig;
@Override
public void run(CreditSubmitRequest request) throws Exception {
......@@ -168,11 +171,16 @@ public class CreditListener extends AbstractMQConsumerHandler<CreditSubmitReques
infoModel.setBasicInfo(basicModel);
infoModel.setContinuedLoan(false);
ClientFeignModel clientFeignModel = new ClientFeignModel(infoModel.getBasicInfo().getIdCard(), infoModel.getBasicInfo().getName());
JsonResult<String> clientResult = iClientFeignService.getClientNo(clientFeignModel);
if (!clientResult.isSuccess()) {
throw new BizException(ExceptionCodeEnum.SYSTEM_REMOTE_ERROR);
String clientId;
if (baseConfig.getUseBaffle().equals("use")) {
clientId = IdUtil.simpleUUID().toString();
} else {
JsonResult<String> clientResult = iClientFeignService.getClientNo(clientFeignModel);
if (!clientResult.isSuccess()) {
throw new BizException(ExceptionCodeEnum.SYSTEM_REMOTE_ERROR);
}
clientId = clientResult.getResult();
}
String clientId = clientResult.getResult();
infoModel.setClientNo(clientId);
infoModel.setOrderNo(request.getOrderNo());
......
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