Procházet zdrojové kódy

Merge branch 'dev' of http://git.xayunmei.com/SH-Arbitrate/Arbitrate-Backend into hjb

hejinbo před 2 roky
rodič
revize
fdc27a38e2

+ 3
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/CaseApplicationServiceImpl.java Zobrazit soubor

@@ -489,6 +489,9 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
489 489
             caseApplication.setCaseStatus(CaseApplicationConstants.CASE_APPLICATION);
490 490
             rows = caseApplicationMapper.submitCaseApplication(caseApplication);
491 491
         }
492
+        // 新增日志
493
+        CaseLogUtils.insertCaseLog(caseApplication.getId(),CaseApplicationConstants.PENDING_PAYMENT,"");
494
+
492 495
         return rows;
493 496
     }
494 497
 

+ 1
- 1
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/CaseLogRecordServiceImpl.java Zobrazit soubor

@@ -38,7 +38,7 @@ public class CaseLogRecordServiceImpl  implements ICaseLogRecordService {
38 38
                         contentBuilder.append("提交立案申请");
39 39
                         break;
40 40
                     case  2:
41
-                        contentBuilder.append("提交立案审查");
41
+                        contentBuilder.append("立案审查");
42 42
                         break;
43 43
                     case  3:
44 44
                         contentBuilder.append("支付成功");

+ 1
- 1
ruoyi-system/src/main/resources/mapper/wisdomarbitrate/CaseApplicationMapper.xml Zobrazit soubor

@@ -66,7 +66,7 @@
66 66
             <if test="caseNum != null and caseNum != ''">
67 67
                 AND c.case_num = #{caseNum}
68 68
             </if>
69
-            <if test="name != null and name != ''">
69
+            <if test="nameId != null and nameId != ''">
70 70
                 AND ca.NAME=#{nameId}  AND ca.identity_type=1 and ca.name=d.dept_id
71 71
             </if>
72 72
             <if test="caseStatusList != null and caseStatusList.size() > 0">

+ 2
- 2
ruoyi-system/src/main/resources/mapper/wisdomarbitrate/CaseLogRecordMapper.xml Zobrazit soubor

@@ -22,7 +22,7 @@
22 22
     </insert>
23 23
     <select id="selectCaseLogRecordList" resultType="com.ruoyi.wisdomarbitrate.domain.CaseLogRecord">
24 24
             select cl.case_node caseNode ,cl.case_node_time caseNodeTime ,cl.notes  ,cl.id ,cl.case_appli_id caseAppliId,
25
-            cl.create_by createBy,cl.create_nick_name createNickName
25
+            cl.create_by createBy,cl.create_nick_name createNickName,cl.create_time createTime,cl.update_by updateBy,cl.update_time updateTime
26 26
             from case_log_record cl
27 27
 
28 28
             <where>
@@ -31,7 +31,7 @@
31 31
                     AND cl.case_appli_id = #{caseAppliId}
32 32
                 </if>
33 33
             </where>
34
-            order by create_time desc
34
+            order by create_time asc
35 35
 
36 36
     </select>
37 37