bug修改 #174

Merged
hejinbo merged 2 commits from hjb into dev 2023-11-01 10:06:27 +00:00
2 changed files with 7 additions and 0 deletions
@@ -2001,6 +2001,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
} }
String arbitratorName = caseApplication.getArbitratorName(); String arbitratorName = caseApplication.getArbitratorName();
datas.put("caseName", caseApplication.getCaseName()); datas.put("caseName", caseApplication.getCaseName());
datas.put("caseNum", caseApplication.getCaseNum());
datas.put("arbitratorName", arbitratorName); datas.put("arbitratorName", arbitratorName);
Date hearDate = caseApplication.getHearDate(); Date hearDate = caseApplication.getHearDate();
if (hearDate != null) { 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,""); CaseLogUtils.insertCaseLog(caseApplication.getId(),CaseApplicationConstants.CASE_CROSSEXAMI,"");