mirror of
https://github.com/dataease/dataease.git
synced 2026-06-13 01:01:20 +08:00
fix(X-Pack): 定时报告-导出汇总表数据限制了 1000 条
This commit is contained in:
committed by
fit2cloud-chenyw
parent
9e0b0b13b2
commit
13deeafe2e
@@ -154,7 +154,7 @@ public class CoreVisualizationExportManage {
|
||||
ChartViewDTO chartViewDTO = null;
|
||||
request.setIsExcelExport(true);
|
||||
String type = request.getType();
|
||||
if (StringUtils.equals("table-info", type)) {
|
||||
if (StringUtils.equalsAnyIgnoreCase(type, "table-info", "table-normal")) {
|
||||
request.setResultCount(Math.toIntExact(ExportCenterUtils.getExportLimit("view")));
|
||||
request.setResultMode(ChartConstants.VIEW_RESULT_MODE.ALL);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user