Merge pull request #11288 from dataease/pr@dev-v2@perf_report_retry

perf(X-Pack): 定时报告-重试任务从本地文件读取报告信息
This commit is contained in:
fit2cloud-chenyw
2024-07-31 14:39:46 +08:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -118,9 +118,9 @@ public class CoreVisualizationExportManage {
for (int i = 0; i < headKeys.size(); i++) {
String key = headKeys.get(i);
Object val = row.get(key);
if (ObjectUtils.isEmpty(val))
if (ObjectUtils.isEmpty(val)) {
tempList.add(StringUtils.EMPTY);
if (fieldTypes.get(i) == 3) {
} else if (fieldTypes.get(i) == 3) {
tempList.add(filterInvalidDecimal(val.toString()));
} else {
tempList.add(val.toString());