소스 검색

Merge branch 'hjb' of SH-Arbitrate/Arbitrate-Backend into dev

hejinbo 2 년 전
부모
커밋
4391566b55

+ 1
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/CaseApplicationServiceImpl.java 파일 보기

@@ -2001,6 +2001,7 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
2001 2001
             }
2002 2002
             String arbitratorName = caseApplication.getArbitratorName();
2003 2003
             datas.put("caseName", caseApplication.getCaseName());
2004
+            datas.put("caseNum", caseApplication.getCaseNum());
2004 2005
             datas.put("arbitratorName", arbitratorName);
2005 2006
             Date hearDate = caseApplication.getHearDate();
2006 2007
             if (hearDate != null) {

+ 6
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/CasePaymentServiceImpl.java 파일 보기

@@ -150,6 +150,12 @@ public class CasePaymentServiceImpl implements ICasePaymentService {
150 150
                         }
151 151
                     }
152 152
                 }
153
+                //更改记录表里的支付状态和支付时间
154
+                CasePaymentRecord casePaymentRecord = new CasePaymentRecord();
155
+                casePaymentRecord.setPaymentStatus(1);
156
+                casePaymentRecord.setPaymentTime(new Date());
157
+                casePaymentRecord.setUpdateTime(new Date());
158
+                casePaymentRecordMapper.update(casePaymentRecord);
153 159
                 // 新增日志
154 160
                 CaseLogUtils.insertCaseLog(caseApplication.getId(),CaseApplicationConstants.CASE_CROSSEXAMI,"");
155 161