|
@@ -139,6 +139,20 @@ public class NmResultNoticeSchedul implements Job {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ String noticeContent = record.getNoticeContent();
|
|
|
+ String fileUrl = record.getFile();
|
|
|
+ String file = "";
|
|
|
+ if(!ObjectUtils.isEmpty(fileUrl)){
|
|
|
+ file = "<br>附件:<br>";
|
|
|
+ file += "<a target='_blank' style='color: blue' href='"+ fileUrl +"'>附件</a><br/>";
|
|
|
+ }
|
|
|
+ //招标文件拼接地址
|
|
|
+ if(!ObjectUtils.isEmpty(noticeContent) && noticeContent != ""){
|
|
|
+ file = noticeContent + file;
|
|
|
+ }
|
|
|
+ record.setNoticeContent(file);
|
|
|
+
|
|
|
+
|
|
|
TenderDetailsVoUtils.isNull(record);
|
|
|
}
|
|
|
return tenderDetailsVoIPage.getRecords();
|