Browse Source

Merge branch 'bzq/fix_excel_history_data_cf' of eta_server/eta_chart_lib into debug

baoziqiang 5 months ago
parent
commit
551d0a08d5
1 changed files with 7 additions and 0 deletions
  1. 7 0
      services/excel/lucky_sheet.go

+ 7 - 0
services/excel/lucky_sheet.go

@@ -1255,6 +1255,13 @@ func GetTableDataByMixedTableData(config [][]request.MixedTableCellDataReq, hide
 						tmp.Ht = 2
 					}
 					tmp.Monitor = cell.ShowFormatValue
+					// 如果没有showValue, 则使用value
+					if cell.ShowValue == "" {
+						_, err := strconv.ParseFloat(cell.Value, 64)
+						if err == nil {
+							cell.ShowValue = cell.Value
+						}
+					}
 					_, err := strconv.ParseFloat(cell.ShowValue, 64)
 					if err == nil {
 						hasPercent := false