瀏覽代碼

缴费凭证修改

18792927508 2 年之前
父節點
當前提交
4a6e28b629

+ 3
- 1
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/CaseEvidenceServiceImpl.java 查看文件

@@ -101,7 +101,7 @@ public class CaseEvidenceServiceImpl implements ICaseEvidenceService {
101 101
                     .userName(userName)
102 102
                     .build();
103 103
             int count = caseAttachMapper.save(caseAttach);
104
-            if (count > 0) {
104
+            if (count > 0 && annexType!=null && annexType!=8) {
105 105
                 if(id!=null){
106 106
                     //修改案件状态
107 107
                     CaseApplication caseApplication = new CaseApplication();
@@ -121,6 +121,8 @@ public class CaseEvidenceServiceImpl implements ICaseEvidenceService {
121 121
 
122 122
         return AjaxResult.error("上传失败");
123 123
     }
124
+
125
+
124 126
 @Autowired
125 127
 IdentityAuthenticationMapper identityAuthenticationMapper;
126 128