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
commit 596abb0401
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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());

@ -1 +1 @@
Subproject commit 564d1a52f2c751cf6e671208fc92fc240c21de70
Subproject commit 5dfbeaaf9c02463f0fb7b9589ae78bd09ab88fc4