Commit 65619948 authored by BlackJokerCJ's avatar BlackJokerCJ

xiyi

parent f5d13d18
...@@ -3,6 +3,7 @@ package com.jqtx.windows.command; ...@@ -3,6 +3,7 @@ package com.jqtx.windows.command;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import com.jqtx.infrastructure.oss.starter.config.OssUtils; import com.jqtx.infrastructure.oss.starter.config.OssUtils;
import com.jqtx.infrastructure.oss.starter.properties.OssProperties;
import com.jqtx.windows.common.exception.BizException; import com.jqtx.windows.common.exception.BizException;
import com.jqtx.windows.common.factory.AbstractCommand; import com.jqtx.windows.common.factory.AbstractCommand;
import com.jqtx.windows.common.factory.RuntimeContextHolder; import com.jqtx.windows.common.factory.RuntimeContextHolder;
...@@ -22,6 +23,8 @@ public class GetSignContractCommand extends AbstractCommand { ...@@ -22,6 +23,8 @@ public class GetSignContractCommand extends AbstractCommand {
private IProtocalFeignService iProtocalFeignService; private IProtocalFeignService iProtocalFeignService;
@Autowired @Autowired
private OssUtils ossUtils; private OssUtils ossUtils;
@Autowired
private OssProperties ossProperties;
@Override @Override
...@@ -33,7 +36,7 @@ public class GetSignContractCommand extends AbstractCommand { ...@@ -33,7 +36,7 @@ public class GetSignContractCommand extends AbstractCommand {
JsonResult<String> rongdanPdfJsonResult = iProtocalFeignService.getFilePathPdf(getSignContractModel.getLoanNo(), "own-rongdan"); JsonResult<String> rongdanPdfJsonResult = iProtocalFeignService.getFilePathPdf(getSignContractModel.getLoanNo(), "own-rongdan");
if (rongdanPdfJsonResult.isSuccess() && StringUtils.isNotEmpty(rongdanPdfJsonResult.getResult())) { if (rongdanPdfJsonResult.isSuccess() && StringUtils.isNotEmpty(rongdanPdfJsonResult.getResult())) {
getSignContractResponse.setSignStatus("SIGN"); getSignContractResponse.setSignStatus("SIGN");
String path = ossUtils.generateTempURLPrivateDomain(rongdanPdfJsonResult.getResult()); String path = ossProperties.getPrivateDomain() + rongdanPdfJsonResult.getResult();
getSignContractResponse.setContractFileUrl(path); getSignContractResponse.setContractFileUrl(path);
} else { } else {
getSignContractResponse.setSignStatus("SIGN_ING"); getSignContractResponse.setSignStatus("SIGN_ING");
......
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