Sfoglia il codice sorgente

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

wangqiong123 2 anni fa
parent
commit
969a4f09f8

+ 3
- 1
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/CaseEvidenceServiceImpl.java Vedi File

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