|
|
@@ -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
|
|