|
@@ -1236,6 +1236,14 @@ func handleMixCellShowStyle(showStyleList []string, calculateCellMap map[string]
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+ if cell.ShowValue == "" {
|
|
|
+ _, err := strconv.ParseFloat(cell.Value, 64)
|
|
|
+ if err == nil {
|
|
|
+ val = cell.Value
|
|
|
+ cell.ShowValue = cell.Value
|
|
|
+ }
|
|
|
+ }
|
|
|
_, e := strconv.ParseFloat(val, 64)
|
|
|
if e != nil {
|
|
|
var styleConf request.MixCellShowStyle
|