This commit is contained in:
hejinbo
2023-11-01 18:04:48 +08:00
parent 314a687943
commit 790419b95d
2 changed files with 7 additions and 0 deletions
@@ -1970,6 +1970,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
}
String arbitratorName = caseApplication.getArbitratorName();
datas.put("caseName", caseApplication.getCaseName());
datas.put("caseNum", caseApplication.getCaseNum());
datas.put("arbitratorName", arbitratorName);
Date hearDate = caseApplication.getHearDate();
if (hearDate != null) {
@@ -150,6 +150,12 @@ public class CasePaymentServiceImpl implements ICasePaymentService {
}
}
}
//更改记录表里的支付状态和支付时间
CasePaymentRecord casePaymentRecord = new CasePaymentRecord();
casePaymentRecord.setPaymentStatus(1);
casePaymentRecord.setPaymentTime(new Date());
casePaymentRecord.setUpdateTime(new Date());
casePaymentRecordMapper.update(casePaymentRecord);
// 新增日志
CaseLogUtils.insertCaseLog(caseApplication.getId(),CaseApplicationConstants.CASE_CROSSEXAMI,"");