소스 검색

11.3发版,注释秦工下载文件代码

hejinbo 2 년 전
부모
커밋
e85fb44ef2

+ 1
- 1
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/service/impl/AdjudicationServiceImpl.java 파일 보기

@@ -582,7 +582,7 @@ public class AdjudicationServiceImpl implements IAdjudicationService {
582 582
             for (CaseAttach caseAttach : caseAttachList) {
583 583
                 if (caseAttach.getAnnexType() == 3) {
584 584
                     String annexName = caseAttach.getAnnexName();
585
-                    String prefix = "/profile/upload";
585
+                    String prefix = "/profile/upload/";
586 586
                     int startIndex = prefix.length();
587 587
                     String path = caseAttach.getAnnexPath() + annexName.substring(startIndex);
588 588
                     file = new File(path);

+ 3
- 11
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/utils/FixSelectFlowDetailUtils.java 파일 보기

@@ -43,7 +43,7 @@ public class FixSelectFlowDetailUtils {
43 43
         Gson gson = new Gson();
44 44
 
45 45
         SealSignRecord sealSignRecordselect = new SealSignRecord();
46
-//        sealSignRecordselect.setSignFlowStatus(1);
46
+        // sealSignRecordselect.setSignFlowStatus(1);
47 47
         List<SealSignRecord> sealSignRecords = sealSignRecordMapper.selectSealSignRecordbyStat(sealSignRecordselect);
48 48
 
49 49
         try {
@@ -118,7 +118,7 @@ public class FixSelectFlowDetailUtils {
118 118
                                     caseApplication.setFilearbitraUrl(filearbitraUrl);
119 119
                                     caseApplicationMapper.submitCaseApplication(caseApplication);
120 120
 
121
-                                    LocalDate now = LocalDate.now();
121
+                     /*               LocalDate now = LocalDate.now();
122 122
                                     String year = Integer.toString(now.getYear());
123 123
                                     String month = String.format("%02d", now.getMonthValue());
124 124
                                     String day = String.format("%02d", now.getDayOfMonth());
@@ -137,7 +137,7 @@ public class FixSelectFlowDetailUtils {
137 137
                                        caseAttach.setAnnexPath(savePath);
138 138
                                        caseAttach.setAnnexName(saveName);
139 139
                                        caseAttachMapper.updateCaseAttachBycaseid(caseAttach);
140
-                                   }
140
+                                   }*/
141 141
 
142 142
                                 }
143 143
                             }
@@ -147,9 +147,6 @@ public class FixSelectFlowDetailUtils {
147 147
                 }
148 148
 
149 149
             }
150
-
151
-
152
-
153 150
         } catch (EsignDemoException e) {
154 151
             e.printStackTrace();
155 152
         }
@@ -198,9 +195,4 @@ public class FixSelectFlowDetailUtils {
198 195
 
199 196
     }
200 197
 
201
-
202
-
203
-
204
-
205
-
206 198
 }