|
|
@@ -2001,7 +2001,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
2001
|
2001
|
sealSignRecord.setSignFlowStatus(1);//待签名
|
|
2002
|
2002
|
sealSignRecordMapper.insertSealSignRecord(sealSignRecord);
|
|
2003
|
2003
|
} else {
|
|
2004
|
|
- throw new ServiceException("发起签署流程失败,请检查参数是否有误");
|
|
|
2004
|
+ throw new ServiceException(jsonObject3.getString("message"));
|
|
2005
|
2005
|
}
|
|
2006
|
2006
|
} else {
|
|
2007
|
2007
|
return AjaxResult.error();
|
|
|
@@ -2844,15 +2844,15 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
2844
|
2844
|
return AjaxResult.error("请选择要上传的文件");
|
|
2845
|
2845
|
}
|
|
2846
|
2846
|
UUID uuid = UUID.randomUUID();
|
|
2847
|
|
- String targetPath = "/home/ruoyi/uploadPath/upload/unzipFile/"+uuid+ "/";
|
|
2848
|
|
- //String targetPath = "D:/home/unzip/" + uuid + "/";
|
|
|
2847
|
+ //String targetPath = "/home/ruoyi/uploadPath/upload/unzipFile/"+uuid+ "/";
|
|
|
2848
|
+ String targetPath = "D:/home/unzip/" + uuid + "/";
|
|
2849
|
2849
|
File zipFile = null;
|
|
2850
|
2850
|
InputStream ins = null;
|
|
2851
|
2851
|
try {
|
|
2852
|
2852
|
ins = file.getInputStream();
|
|
2853
|
2853
|
//上传的压缩包保存的路径
|
|
2854
|
|
- String savePath = "/home/ruoyi/uploadPath/upload/zipFile/";
|
|
2855
|
|
- //String savePath = "D:/home/zipFile/";
|
|
|
2854
|
+ //String savePath = "/home/ruoyi/uploadPath/upload/zipFile/";
|
|
|
2855
|
+ String savePath = "D:/home/zipFile/";
|
|
2856
|
2856
|
String saveName = uuid + "_" + file.getOriginalFilename();
|
|
2857
|
2857
|
zipFile = new File(savePath + saveName);
|
|
2858
|
2858
|
inputChangeToFile(ins, zipFile);
|
|
|
@@ -2931,6 +2931,8 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
2931
|
2931
|
caseAffiliate1.setIdentityNum(map.get("居民身份证号码").get(0));
|
|
2932
|
2932
|
caseAffiliate1.setContactTelphone(map.get("联系电话").get(1));
|
|
2933
|
2933
|
caseAffiliate1.setResidenAffili(map.get("住所").get(1));
|
|
|
2934
|
+ //设置默认的性别 2代表未知
|
|
|
2935
|
+ caseAffiliate1.setResponSex("2");
|
|
2934
|
2936
|
caseAffiliates.add(caseAffiliate1);
|
|
2935
|
2937
|
caseApplication.setCaseAffiliates(caseAffiliates);
|
|
2936
|
2938
|
this.insertcaseApplication(caseApplication);
|