Browse Source

Merge branch 'feature/fix_excel_bug' of eta_server/eta_chart_lib into debug

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

+ 2 - 1
services/excel/lucky_sheet.go

@@ -1322,7 +1322,8 @@ func roundNumber(num string, decimalPlaces int, hasPercent bool) string {
 	if hasPercent {
 		numDecimal = numDecimal.Mul(decimal.NewFromInt(100))
 	}
-	numStr := numDecimal.Round(int32(decimalPlaces)).String()
+	numFloat, _ := numDecimal.Round(int32(decimalPlaces)).Float64()
+	numStr := strconv.FormatFloat(numFloat, 'f', decimalPlaces, 64)
 	if hasPercent {
 		numStr += "%"
 	}