hejinbo 2 lat temu
rodzic
commit
790419b95d

+ 1
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/CaseApplicationServiceImpl.java Wyświetl plik

1970
             }
1970
             }
1971
             String arbitratorName = caseApplication.getArbitratorName();
1971
             String arbitratorName = caseApplication.getArbitratorName();
1972
             datas.put("caseName", caseApplication.getCaseName());
1972
             datas.put("caseName", caseApplication.getCaseName());
1973
+            datas.put("caseNum", caseApplication.getCaseNum());
1973
             datas.put("arbitratorName", arbitratorName);
1974
             datas.put("arbitratorName", arbitratorName);
1974
             Date hearDate = caseApplication.getHearDate();
1975
             Date hearDate = caseApplication.getHearDate();
1975
             if (hearDate != null) {
1976
             if (hearDate != null) {

+ 6
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/CasePaymentServiceImpl.java Wyświetl plik

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
                 CaseLogUtils.insertCaseLog(caseApplication.getId(),CaseApplicationConstants.CASE_CROSSEXAMI,"");
160
                 CaseLogUtils.insertCaseLog(caseApplication.getId(),CaseApplicationConstants.CASE_CROSSEXAMI,"");
155
 
161