Merge branch 'dev' of http://git.xayunmei.com/SH-Arbitrate/Mediation-Backend into qtz1
This commit is contained in:
+8
-2
@@ -3771,6 +3771,13 @@ public class MsCaseApplicationServiceImpl implements MsCaseApplicationService {
|
||||
}
|
||||
}
|
||||
|
||||
}else {
|
||||
caseAttach = MsCaseAttach.builder()
|
||||
.caseAppliId(application.getId())
|
||||
.annexName(orgFileName+".docx")
|
||||
.annexPath(resultFilePath.replace(RuoYiConfig.getProfile(),Constants.RESOURCE_PREFIX))
|
||||
.annexType(annexType)
|
||||
.build();
|
||||
}
|
||||
//保存到附件表里,先删除之前的在保存
|
||||
if(caseAttach != null) {
|
||||
@@ -3791,10 +3798,9 @@ public class MsCaseApplicationServiceImpl implements MsCaseApplicationService {
|
||||
if (file.exists()) {
|
||||
// 调用onlyoffice
|
||||
try {
|
||||
onlyOfficeUrl= onlyOfficeUrl+ "?caseId="+caseId;
|
||||
Map<String, Object> params = new HashMap<>();
|
||||
params.put("file", file);
|
||||
String postResult = HttpUtil.post(onlyOfficeUrl, params);
|
||||
String postResult = HttpUtil.post(onlyOfficeUrl+ "/"+String.valueOf(caseId), params);
|
||||
if(StrUtil.isNotEmpty(postResult)){
|
||||
// 转为jsonArray
|
||||
JSONArray jsonArray = JSONArray.parseArray(postResult);
|
||||
|
||||
Reference in New Issue
Block a user