devops 3 недель назад
Родитель
Сommit
46c84c6f1b

+ 1 - 0
src/main/java/com/trs/ggzyexchange/schedul/GcBidExceptioNoticeSchedul.java

@@ -233,6 +233,7 @@ public class GcBidExceptioNoticeSchedul implements Job {
                     try{
                         String attachmentName = gcAttachment.getAttachmentName();
                         String url = gcAttachment.getUrl();
+                        url = url.replaceAll("http:", "https:");
                         file += "<a  target='_blank' style='color: blue' href='"+ url +"'>"+ attachmentName +"</a><br/>";
                     }catch (Exception e){
                         e.printStackTrace();

+ 1 - 0
src/main/java/com/trs/ggzyexchange/schedul/GcBidcandidatePostSchedul.java

@@ -250,6 +250,7 @@ public class GcBidcandidatePostSchedul   implements Job {
                         try {
                             String attachmentName = gcAttachment.getAttachmentName();
                             String url = gcAttachment.getUrl();
+                            url = url.replaceAll("http:", "https:");
                             file += "<a  target='_blank' style='color: blue' href='" + url + "'>" + attachmentName + "</a><br/>";
                         } catch (Exception e) {
                             e.printStackTrace();

+ 1 - 0
src/main/java/com/trs/ggzyexchange/schedul/GcBidpublicitySchedul.java

@@ -244,6 +244,7 @@ public class GcBidpublicitySchedul  implements Job {
                         try {
                             String attachmentName = gcAttachment.getAttachmentName();
                             String url = gcAttachment.getUrl();
+                            url = url.replaceAll("http:", "https:");
                             file += "<a  target='_blank' style='color: blue' href='" + url + "'>" + attachmentName + "</a><br/>";
                         } catch (Exception e) {
                             e.printStackTrace();

+ 1 - 0
src/main/java/com/trs/ggzyexchange/schedul/GcNoticeandfileSchedul.java

@@ -329,6 +329,7 @@ public class  GcNoticeandfileSchedul  implements Job {
                         try{
                             String attachmentName = gcAttachment.getAttachmentName();
                             String url = gcAttachment.getUrl();
+                            url = url.replaceAll("http:", "https:");
                             file += "<a  target='_blank' style='color: blue' href='"+ url +"'>"+ attachmentName +"</a><br/>";
                         }catch (Exception e){
                             e.printStackTrace();

+ 1 - 0
src/main/java/com/trs/ggzyexchange/schedul/GcPubContractSchedul.java

@@ -166,6 +166,7 @@ public class GcPubContractSchedul implements Job {
                    try{
                        String attachmentName = gcAttachment.getAttachmentName();
                        String url = gcAttachment.getUrl();
+                       url = url.replaceAll("http:", "https:");
                        file += "<a  target='_blank' style='color: blue' href='"+ url +"'>"+ attachmentName +"</a><br/>";
                    }catch (Exception e){
                        e.printStackTrace();

+ 1 - 0
src/main/java/com/trs/ggzyexchange/schedul/GcTenderbidfileSchedul.java

@@ -266,6 +266,7 @@ public class GcTenderbidfileSchedul   implements Job {
                     try{
                         String attachmentName = gcAttachment.getAttachmentName();
                         String url = gcAttachment.getUrl();
+                        url = url.replaceAll("http:", "https:");
                         file += "<a  target='_blank' style='color: blue' href='"+ url +"'>"+ attachmentName +"</a><br/>";
                     }catch (Exception e){
                         e.printStackTrace();

+ 1 - 0
src/main/java/com/trs/ggzyexchange/schedul/GcTenderbidfilepublicitySchedul.java

@@ -222,6 +222,7 @@ public class GcTenderbidfilepublicitySchedul implements Job {
                 try{
                     String attachmentName = gcAttachment.getAttachmentName();
                     String url = gcAttachment.getUrl();
+                    url = url.replaceAll("http:", "https:");
                     file += "<a  target='_blank' style='color: blue' href='"+ url +"'>"+ attachmentName +"</a><br/>";
                 }catch (Exception e){
                     e.printStackTrace();

+ 2 - 1
src/main/resources/mapper/GcBidExceptioNoticeMapper.xml

@@ -51,7 +51,8 @@
             gben.NOTICE_CONTENT noticeContent,
             gben.NOTICE_SENDTIME noticeSendTime,
             gct.REGION_CODE regionCode,
-            gcp.INDUSTRIES_TYPE industriesTypeCode,
+            /*gcp.INDUSTRIES_TYPE industriesTypeCode,*/
+            gct.TENDER_PROJECT_TYPE industriesTypeCode,
             gben.PLATFORM_CODE platformCode,
             gben.BULLETIN_TYPE bulletinTypeCode,
             gben.BULLETIN_DUTY bulletinDuty,

+ 2 - 1
src/main/resources/mapper/GcBidcandidatePostMapper.xml

@@ -56,7 +56,8 @@
             gcbp.PUBLICITY_REFER_TIME noticeSendTime,
             gcbp.PUBLICITY_TYPE noticeNature,
             gcp.REGION_CODE regionCode,
-            gcbp.INDUSTRIES_TYPE industriesTypeCode,
+            /*gcbp.INDUSTRIES_TYPE industriesTypeCode,*/
+            gct.TENDER_PROJECT_TYPE industriesTypeCode,
             gcbp.PLATFORM_CODE platformCode,
             gcbp.BULLETIN_DUTY bulletinDuty,
             gcbp.DATA_SOURCE_CODE dataSourceCode,

+ 2 - 1
src/main/resources/mapper/GcBidopenrecordMapper.xml

@@ -65,7 +65,8 @@
             gcb.BID_OPENING_TIME bidOpeningTime,
             gcb.BID_FINISH_TIME bidFinishTime,
             gct.REGION_CODE regionCode,
-            gcp.INDUSTRIES_TYPE industriesTypeCode,
+            /*gcp.INDUSTRIES_TYPE industriesTypeCode,*/
+            gct.TENDER_PROJECT_TYPE industriesTypeCode,
             gcb.PLATFORM_CODE platformCode,
             gcb.DATA_SOURCE_CODE dataSourceCode,
             gcb.BID_SECTION_CODES bidSectionCodes

+ 2 - 1
src/main/resources/mapper/GcBidpublicityMapper.xml

@@ -55,7 +55,8 @@
             gcb.NOTICE_SEND_TIME noticeSendTime,
             gcb.NOTICE_NATURE noticeNature,
             gct.REGION_CODE regionCode,
-            gcp.INDUSTRIES_TYPE industriesTypeCode,
+            /*gcp.INDUSTRIES_TYPE industriesTypeCode,*/
+            gct.TENDER_PROJECT_TYPE industriesTypeCode,
             gcb.PLATFORM_CODE platformCode,
             gcb.BULLETIN_TYPE bulletinTypeCode,
             gcb.BULLETIN_DUTY bulletinDuty,

+ 2 - 1
src/main/resources/mapper/GcNoticeandfileMapper.xml

@@ -111,7 +111,8 @@
         gcn.NOTICE_SEND_TIME noticeSendTime,
         gcn.NOTICE_NATURE noticeNature,
         gct.REGION_CODE regionCode,
-        gcp.INDUSTRIES_TYPE industriesTypeCode,
+        /*gcp.INDUSTRIES_TYPE industriesTypeCode,*/
+        gct.TENDER_PROJECT_TYPE industriesTypeCode,
         gcn.PLATFORM_CODE platformCode,
         gcn.BULLETIN_TYPE bulletinTypeCode,
         gcn.BULLETIN_DUTY bulletinDuty,

+ 2 - 1
src/main/resources/mapper/GcPerformanceMapper.xml

@@ -12,7 +12,8 @@
             gcpe.PERFORM_INFO noticeContent,
             gcpe.COMMIT_TIME noticeSendTime,
             gct.REGION_CODE regionCode,
-            gcp.INDUSTRIES_TYPE industriesTypeCode,
+            /*gcp.INDUSTRIES_TYPE industriesTypeCode,*/
+            gct.TENDER_PROJECT_TYPE industriesTypeCode,
             gcpe.PLATFORM_CODE platformCode,
             gcpe.ACCEPTER bulletinDuty,
             gcpe.DATA_SOURCE_CODE dataSourceCode,

+ 2 - 1
src/main/resources/mapper/GcPubContractMapper.xml

@@ -51,7 +51,8 @@
             gpc.CONTRACT_CONTENT noticeContent,
             gpc.CONTRACT_SIGN_TIME noticeSendTime,
             gct.REGION_CODE regionCode,
-            gcp.INDUSTRIES_TYPE industriesTypeCode,
+            /*gcp.INDUSTRIES_TYPE industriesTypeCode,*/
+            gct.TENDER_PROJECT_TYPE industriesTypeCode,
             gpc.PLATFORM_CODE platformCode,
             gpc.TENDERER_NAME bulletinDuty,
             gpc.DATA_SOURCE_CODE dataSourceCode,

+ 2 - 1
src/main/resources/mapper/GcTenderbidfileMapper.xml

@@ -41,7 +41,8 @@
             gctb.CLARIFY_CONTENT noticeContent,
             gctb.SUBMIT_TIME noticeSendTime,
             gct.REGION_CODE regionCode,
-            gcp.INDUSTRIES_TYPE industriesTypeCode,
+            /*gcp.INDUSTRIES_TYPE industriesTypeCode,*/
+            gct.TENDER_PROJECT_TYPE industriesTypeCode,
             gctb.PLATFORM_CODE platformCode,
             gctb.DATA_SOURCE_CODE dataSourceCode,
             gctb.BID_SECTION_CODE bidSectionCodes,