|
@@ -206,7 +206,7 @@ func GetMixedTableCellData(mixedTableReq request.MixedTableReq) (newMixedTableCe
|
|
|
if val, ok2 := tmpDateValMap[relationDate]; ok2 {
|
|
|
|
|
|
cellKeyVal[cell.Uid] = val
|
|
|
- cell.ShowValue = utils.FormatTableDataShowValue(val)
|
|
|
+ cell.ShowValue = utils.FormatMixTableDataShowValue(val)
|
|
|
}
|
|
|
} else {
|
|
|
|
|
@@ -237,7 +237,7 @@ func GetMixedTableCellData(mixedTableReq request.MixedTableReq) (newMixedTableCe
|
|
|
}
|
|
|
}
|
|
|
cellKeyVal[cell.Uid] = finalVal
|
|
|
- cell.ShowValue = utils.FormatTableDataShowValue(finalVal)
|
|
|
+ cell.ShowValue = utils.FormatMixTableDataShowValue(finalVal)
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
@@ -271,7 +271,7 @@ func GetMixedTableCellData(mixedTableReq request.MixedTableReq) (newMixedTableCe
|
|
|
if val, ok2 := tmpDateValMap[cell.DataTime]; ok2 {
|
|
|
|
|
|
cellKeyVal[cell.Uid] = val
|
|
|
- cell.ShowValue = utils.FormatTableDataShowValue(val)
|
|
|
+ cell.ShowValue = utils.FormatMixTableDataShowValue(val)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -382,7 +382,7 @@ func GetMixedTableCellData(mixedTableReq request.MixedTableReq) (newMixedTableCe
|
|
|
}
|
|
|
val := tmpDataMap[cellDateTime]
|
|
|
cellKeyVal[cell.Uid] = val
|
|
|
- cell.ShowValue = utils.FormatTableDataShowValue(val)
|
|
|
+ cell.ShowValue = utils.FormatMixTableDataShowValue(val)
|
|
|
case request.DateCalculateDataDT:
|
|
|
dateCalculateList = append(dateCalculateList, cell.Uid)
|
|
|
|
|
@@ -436,7 +436,7 @@ func GetMixedTableCellData(mixedTableReq request.MixedTableReq) (newMixedTableCe
|
|
|
}
|
|
|
|
|
|
cellKeyVal[cell.Uid] = val
|
|
|
- cell.ShowValue = utils.FormatTableDataShowValue(val)
|
|
|
+ cell.ShowValue = utils.FormatMixTableDataShowValue(val)
|
|
|
config[cellPosition.Column][cellPosition.Row] = cell
|
|
|
|
|
|
}
|
|
@@ -1053,7 +1053,7 @@ func handlerDateCalculate(dateCalculateList []string, calculateCellMap map[strin
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- cell.ShowValue = utils.FormatTableDataShowValue(val)
|
|
|
+ cell.ShowValue = utils.FormatMixTableDataShowValue(val)
|
|
|
config[cellPosition.Column][cellPosition.Row] = cell
|
|
|
}
|
|
|
}
|