|
@@ -194,6 +194,22 @@ public class GcTenderbidfilepublicitySchedul implements Job {
|
|
|
e.printStackTrace();
|
|
e.printStackTrace();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ String finalNoticeContent = "";
|
|
|
|
|
+ String noticeContent = record.getNoticeContent();
|
|
|
|
|
+ if(!ObjectUtils.isEmpty(noticeContent)){
|
|
|
|
|
+ finalNoticeContent = noticeContent;
|
|
|
|
|
+ }
|
|
|
|
|
+ if(!ObjectUtils.isEmpty(record.getFile())){
|
|
|
|
|
+ String fileUrl = record.getFile();
|
|
|
|
|
+ String file = "";
|
|
|
|
|
+ if(!ObjectUtils.isEmpty(fileUrl)){
|
|
|
|
|
+ file = "<br>附件:<br>";
|
|
|
|
|
+ file += "<a target='_blank' style='color: blue' href='"+ fileUrl +"' rel='noreferrer noopener nofollow' >附件</a><br/>";
|
|
|
|
|
+ }
|
|
|
|
|
+ finalNoticeContent = finalNoticeContent + file;
|
|
|
|
|
+ }
|
|
|
|
|
+ record.setNoticeContent(finalNoticeContent);
|
|
|
|
|
+
|
|
|
TenderDetailsVo aNull = TenderDetailsVoUtils.isNull(record);
|
|
TenderDetailsVo aNull = TenderDetailsVoUtils.isNull(record);
|
|
|
tenderDetailsVos.add(aNull);
|
|
tenderDetailsVos.add(aNull);
|
|
|
}
|
|
}
|