|
|
@@ -88,6 +88,9 @@ public class MsCaseApplicationServiceImpl implements MsCaseApplicationService {
|
|
88
|
88
|
*/
|
|
89
|
89
|
@Value("${organizeConfig.creditCode}")
|
|
90
|
90
|
private long creditCode;
|
|
|
91
|
+
|
|
|
92
|
+ @Value("${arbitrateConfig.url}")
|
|
|
93
|
+ private String arbitrateUrl;
|
|
91
|
94
|
@Autowired
|
|
92
|
95
|
MsCaseApplicationService caseApplicationService;
|
|
93
|
96
|
@Autowired
|
|
|
@@ -1334,7 +1337,7 @@ public class MsCaseApplicationServiceImpl implements MsCaseApplicationService {
|
|
1334
|
1337
|
sendContent = "尊敬的用户,您的" + application.getCaseNum() + "的案件,线上调解日期已确定为"+application.getHearDate()+",请知晓,如非本人操作,请忽略本短信。";
|
|
1335
|
1338
|
}else {
|
|
1336
|
1339
|
// 线下调解 2077966 尊敬的用户,您的{1}案件,线下调解日期已确定为{2},请知晓,如非本人操作,请忽略本短信。
|
|
1337
|
|
- smsFlag = SmsUtils.sendSms(application.getId(), "2075447", phone, new String[]{application.getCaseNum(),application.getHearDate()});
|
|
|
1340
|
+ smsFlag = SmsUtils.sendSms(application.getId(), "2077966", phone, new String[]{application.getCaseNum(),application.getHearDate()});
|
|
1338
|
1341
|
sendContent = "尊敬的用户,您的" + application.getCaseNum() + "的案件,线下调解日期已确定为"+application.getHearDate()+",请知晓,如非本人操作,请忽略本短信。";
|
|
1339
|
1342
|
|
|
1340
|
1343
|
}
|
|
|
@@ -1841,7 +1844,7 @@ public class MsCaseApplicationServiceImpl implements MsCaseApplicationService {
|
|
1841
|
1844
|
String paramsbody = JSONUtil.toJsonStr(caseApplicationVO);
|
|
1842
|
1845
|
long timestamp = System.currentTimeMillis();
|
|
1843
|
1846
|
String signStr = SignCheckUtils.getSign(paramsbody, accessSec, timestamp);
|
|
1844
|
|
- String urlstr = "http://localhost:8001/callArbitrateCaseApplication/generateCaseApplication";
|
|
|
1847
|
+ String urlstr = arbitrateUrl;
|
|
1845
|
1848
|
HttpResponse httpResponse = (HttpResponse) HttpRequest.post(urlstr)
|
|
1846
|
1849
|
.header("timestampstr", String.valueOf(timestamp))
|
|
1847
|
1850
|
.header("signstr", signStr)
|