Merge pull request #3542 from dataease/pr@dev@fix_report_view_data_repeat

fix(定时报告): 两个任务选同一个仪表板不同视图数据覆盖
This commit is contained in:
Junjun
2022-10-31 15:41:31 +08:00
committed by GitHub

View File

@@ -68,6 +68,9 @@ public class ExcelUtils {
if (StringUtils.isNotBlank(folderId)) {
folderPath = BASE_ROOT + folderId + "/";
}
folderPath += Thread.currentThread().getId() + "/";
if (!FileUtil.exist(folderPath)) {
FileUtil.mkdir(folderPath);
}