Browse Source

Merge branch 'feature/fix_excel_decimal_cf' of eta_server/eta_api into debug

baoziqiang 5 months ago
parent
commit
06c215984a
1 changed files with 44 additions and 1 deletions
  1. 44 1
      services/data/excel/mixed_table.go

+ 44 - 1
services/data/excel/mixed_table.go

@@ -1261,15 +1261,29 @@ func handleMixCellShowStyle(showStyleList []string, calculateCellMap map[string]
 				return
 			}
 			if styleConf.Pn != 0 || styleConf.Nt != "" {
-				val = changePointDecimalPlaces(val, styleConf.Pn, styleConf.Nt, isPercent)
+				val := changePointDecimalPlaces(val, styleConf.Pn, styleConf.Nt, isPercent)
 				cell.ShowFormatValue = val
+				// 修复历史数据,没有保存小数位数, 重置小数位数
+				styleConf.Decimal = new(int)
+				hasPercent := false
+				if styleConf.Nt == "percent" || isPercent {
+					hasPercent = true
+				}
+				*styleConf.Decimal = getDecimalLen(val, hasPercent)
+				styleConf.Pn = 0
+			} else if styleConf.Decimal != nil {
+				cell.ShowFormatValue = roundNumber(cell.ShowValue, *styleConf.Decimal)
 			} else {
 				cell.ShowFormatValue = cell.ShowValue
 			}
 			// 前端传过来的json中有可能有glObj,需要去掉
+<<<<<<< HEAD
+			styleConf.GlObj = nil
+=======
 			if styleConf.GlObj != nil {
 				styleConf.GlObj = nil
 			}
+>>>>>>> 2b87a411fbc8b3f0f69825135dc8f61df939c1bc
 			tmpStyleConf, err := json.Marshal(styleConf)
 			if err == nil {
 				cell.ShowStyle = string(tmpStyleConf)
@@ -1280,6 +1294,35 @@ func handleMixCellShowStyle(showStyleList []string, calculateCellMap map[string]
 	return
 }
 
+func getDecimalLen(str string, isPercent bool) (decimalPlaces int) {
+	dotIndex := strings.Index(str, ".") // 查找小数点的位置
+	if dotIndex == -1 {
+		decimalPlaces = 0
+	} else {
+		decimalPlaces = len(str) - dotIndex - 1
+	}
+	if isPercent && decimalPlaces >= 1 {
+		decimalPlaces -= 1
+	}
+	return
+}
+
+func roundNumber(num string, decimalPlaces int) string {
+	hasPercent := false
+	if strings.Contains(num, "%") {
+		hasPercent = true
+		num = strings.Trim(num, "%")
+	}
+	numFloat, _ := strconv.ParseFloat(num, 64)
+	numFloat, _ = decimal.NewFromFloat(numFloat).Round(int32(decimalPlaces)).Float64()
+
+	numStr := strconv.FormatFloat(numFloat, 'f', decimalPlaces, 64)
+	if hasPercent {
+		numStr += "%"
+	}
+	return numStr
+}
+
 // changePointDecimalPlaces 小数点位数加减和百分比格式
 func changePointDecimalPlaces(str string, changeNum int, numberType string, isPercent bool) (newStr string) {
 	newStr = str