|
@@ -88,7 +88,7 @@ public class ComListLogic {
|
|
|
.eq(isNotice != null, ComList::getIsNotice, isNotice)
|
|
|
.like(StringUtils.isNotEmpty(title), ComList::getTitle, title)
|
|
|
.like(StringUtils.isNotEmpty(remark), ComList::getRemark, remark)
|
|
|
- .like(StringUtils.isNotEmpty(remark), ComList::getRemark, remark)
|
|
|
+ .eq( ComList::getType, "CENTER")
|
|
|
.orderByDesc(ComList::getCreateTime)
|
|
|
.page(new Page<>(pageNo, pageSize));
|
|
|
//不返回密码
|
|
@@ -132,7 +132,7 @@ public class ComListLogic {
|
|
|
bean.setTitle(title);
|
|
|
bean.setComListId(comList.getId());
|
|
|
bean.setFileName(title);
|
|
|
- bean.setWebsitId(adminUser.getAdminWebsitIds().get(0));
|
|
|
+ bean.setWebsitId(adminUser.getUserName());
|
|
|
bean.setFileUrl(file);
|
|
|
bean.setIsDownload(false);
|
|
|
bean.setCreateTime(new Date());
|
|
@@ -143,8 +143,7 @@ public class ComListLogic {
|
|
|
//上传主文件到oss,并记录
|
|
|
//CommonFile commonFile = commonLogic.uploadFile(file);
|
|
|
|
|
|
- String url = ossUtil.getUrl(file);
|
|
|
- InputStream inputStream = commonLogic.getFileInputStreamByUrl(url);
|
|
|
+ InputStream inputStream = commonLogic.getFileInputStreamByUrl(file);
|
|
|
List<Object> objects = ExcelUtils.importExcel(inputStream);
|
|
|
//拆分excel并上传oss
|
|
|
List<Map<String, Object>> fileUrls = this.createExcel(objects);
|
|
@@ -221,9 +220,8 @@ public class ComListLogic {
|
|
|
if (StringUtils.isEmpty(comDetail.getWebsitId())) {
|
|
|
continue;
|
|
|
}
|
|
|
- String fileUrl = ossUtil.getUrlWw(comDetail.getFileUrl());
|
|
|
Map<String, Object> map = new HashMap<>();
|
|
|
- map.put("fileUrl", fileUrl);
|
|
|
+ map.put("fileUrl", comDetail.getFileUrl());
|
|
|
map.put("fileName", comDetail.getWebsitId() + "-(" + comDetail.getTitle() + ").xlsx");
|
|
|
files.add(map);
|
|
|
}
|
|
@@ -334,9 +332,11 @@ public class ComListLogic {
|
|
|
// log.error("上传文件失败",e);
|
|
|
// }
|
|
|
//});
|
|
|
+
|
|
|
+ String ossUrl = ossUtil.getAccessUrl() + filePath;
|
|
|
Map<String, Object> mp = new HashMap<>();
|
|
|
mp.put("websitNumber", websitNumber);
|
|
|
- mp.put("filePath", filePath);
|
|
|
+ mp.put("filePath", ossUrl);
|
|
|
fileUrls.add(mp);
|
|
|
}
|
|
|
log.info("【中心下发文件3】" + DateUtils.formatDate(new Date()));
|