Parcourir la source

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

hejinbo il y a 2 ans
Parent
révision
4391566b55

+ 1
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/CaseApplicationServiceImpl.java Voir le fichier

2001
             }
2001
             }
2002
             String arbitratorName = caseApplication.getArbitratorName();
2002
             String arbitratorName = caseApplication.getArbitratorName();
2003
             datas.put("caseName", caseApplication.getCaseName());
2003
             datas.put("caseName", caseApplication.getCaseName());
2004
+            datas.put("caseNum", caseApplication.getCaseNum());
2004
             datas.put("arbitratorName", arbitratorName);
2005
             datas.put("arbitratorName", arbitratorName);
2005
             Date hearDate = caseApplication.getHearDate();
2006
             Date hearDate = caseApplication.getHearDate();
2006
             if (hearDate != null) {
2007
             if (hearDate != null) {

+ 6
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/CasePaymentServiceImpl.java Voir le fichier

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