bug修改 #174
+1
@@ -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) {
|
||||||
|
|||||||
+6
@@ -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,"");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user