|
|
@@ -975,6 +975,10 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
975
|
975
|
//保存短信发送记录
|
|
976
|
976
|
SmsSendRecord smsSendRecord = new SmsSendRecord();
|
|
977
|
977
|
smsSendRecord.setCaseId(caseAffiliate.getCaseAppliId());
|
|
|
978
|
+ CaseApplication caseApplication = new CaseApplication();
|
|
|
979
|
+ caseApplication.setId(caseAffiliate.getCaseAppliId());
|
|
|
980
|
+ caseApplication = caseApplicationMapper.selectCaseApplication(caseApplication);
|
|
|
981
|
+ smsSendRecord.setCaseNum(caseApplication.getCaseNum());
|
|
978
|
982
|
smsSendRecord.setPhone(request.getPhone());
|
|
979
|
983
|
smsSendRecord.setSendTime(new Date());
|
|
980
|
984
|
String content="尊敬的"+agentUser.getNickName()+",您的代理的案件已接入仲裁系统,复制访问https://miniapp-3gpama6l759911ef-1321289474.tcloudbaseapp.com/jump-mp.html 进入小程序进行认证注册。如非本人操作,请忽略本短信";
|
|
|
@@ -1765,6 +1769,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
1765
|
1769
|
//保存短信发送记录
|
|
1766
|
1770
|
SmsSendRecord smsSendRecord = new SmsSendRecord();
|
|
1767
|
1771
|
smsSendRecord.setCaseId(messageVO.getId());
|
|
|
1772
|
+ smsSendRecord.setCaseNum(caseApplicationselect.getCaseNum());
|
|
1768
|
1773
|
smsSendRecord.setPhone(request.getPhone());
|
|
1769
|
1774
|
smsSendRecord.setSendTime(new Date());
|
|
1770
|
1775
|
String content="尊敬的"+caseAffiliate.getName()+"用户,您的"+ caseApplicationselect.getCaseNum()+"仲裁案件,开庭审理房间号为"+ messageVO.getRoomNo()+",请在微信内打开https://miniapp-3gpama6l759911ef-1321289474.tcloudbaseapp.com/jump-mp.html 请知晓,如非本人操作,请忽略本短信。";
|
|
|
@@ -2055,7 +2060,8 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
2055
|
2060
|
if (SmsUtils.sendSms(request)){
|
|
2056
|
2061
|
//保存短信发送记录
|
|
2057
|
2062
|
SmsSendRecord smsSendRecord = new SmsSendRecord();
|
|
2058
|
|
- smsSendRecord.setCaseId(caseApplication.getId());
|
|
|
2063
|
+ smsSendRecord.setCaseId(caseApplicationselect.getId());
|
|
|
2064
|
+ smsSendRecord.setCaseNum(caseApplicationselect.getCaseNum());
|
|
2059
|
2065
|
smsSendRecord.setPhone(request.getPhone());
|
|
2060
|
2066
|
smsSendRecord.setSendTime(new Date());
|
|
2061
|
2067
|
String content="尊敬的"+name+"用户,您的"+caseNum+"仲裁案件,开庭日期已确定为"+hearDatestr+",请知晓,如非本人操作,请忽略本短信。";
|
|
|
@@ -2090,6 +2096,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|
2090
|
2096
|
//保存短信发送记录
|
|
2091
|
2097
|
SmsSendRecord smsSendRecord = new SmsSendRecord();
|
|
2092
|
2098
|
smsSendRecord.setCaseId(caseApplication.getId());
|
|
|
2099
|
+ smsSendRecord.setCaseNum(caseApplicationselect.getCaseNum());
|
|
2093
|
2100
|
smsSendRecord.setPhone(request.getPhone());
|
|
2094
|
2101
|
smsSendRecord.setSendTime(new Date());
|
|
2095
|
2102
|
String content="尊敬的"+name+"用户,您的"+caseNum+"仲裁案件,开庭日期已确定为"+hearDatestr+",请知晓,如非本人操作,请忽略本短信。";
|