|
@@ -194,7 +194,7 @@ public class WorkerComListLogic {
|
|
|
}
|
|
|
WorkerComList workerComList = workerComListService.getById(id);
|
|
|
|
|
|
- if (adminUser.getType() == 1 || adminUser.getNickName().contains(workerComList.getCreateBy())) {
|
|
|
+ if (adminUser.getType() == 1 || workerComList.getCreateBy().indexOf(adminUser.getNickName()) != -1) {
|
|
|
log.info("【中心文件下发下载】:{}", JSONObject.toJSONString(adminUser));
|
|
|
CommonUtils.downloadFile(workerComList.getFileUrl(),workerComList.getTitle()+".xlsx" , response);
|
|
|
} else {
|