Selaa lähdekoodia

Merge branch 'feature/eta1.5.6_excel' into debug

xyxie 1 vuosi sitten
vanhempi
commit
b859e06e52
2 muutettua tiedostoa jossa 46 lisäystä ja 23 poistoa
  1. 10 10
      models/data_manage/excel/request/mixed_table.go
  2. 36 13
      services/data/excel/mixed_table.go

+ 10 - 10
models/data_manage/excel/request/mixed_table.go

@@ -35,16 +35,16 @@ type MixedTableReq struct {
 
 // MixedTableCellDataReq 混合表格单元格参数
 type MixedTableCellDataReq struct {
-	Uid             string `description:"单元格唯一标识"`
-	DataType        int    `description:"数据类型,1:日期,2:指标,3:自定义文本,4:插值"`
-	DataTime        string `description:"所属日期"`
-	DataTimeType    int    `description:"日期类型:0:手动输入日期(固定日期);1:导入系统日期;;3:导入指标日期(指标库的最新日期);"`
-	EdbInfoId       int    `description:"指标id"`
-	ShowValue       string `description:"展示值"`
-	Value           string `description:"实际值和配置"`
-	Extra           string `description:"额外参数"`
-	ShowStyle       string `description:"展示的样式配置"`
-	ShowFormatValue string `description:"样式处理后的值"`
+	Uid             string      `description:"单元格唯一标识"`
+	DataType        int         `description:"数据类型,1:日期,2:指标,3:自定义文本,4:插值"`
+	DataTime        string      `description:"所属日期"`
+	DataTimeType    int         `description:"日期类型:0:手动输入日期(固定日期);1:导入系统日期;;3:导入指标日期(指标库的最新日期);"`
+	EdbInfoId       int         `description:"指标id"`
+	ShowValue       string      `description:"展示值"`
+	Value           string      `description:"实际值和配置"`
+	Extra           string      `description:"额外参数"`
+	ShowStyle       string      `description:"展示的样式配置"`
+	ShowFormatValue interface{} `description:"样式处理后的值"`
 }
 
 // CellRelationConf

+ 36 - 13
services/data/excel/mixed_table.go

@@ -10,6 +10,7 @@ import (
 	"fmt"
 	"github.com/shopspring/decimal"
 	"github.com/yidane/formula"
+	"math"
 	"sort"
 	"strconv"
 	"strings"
@@ -1198,11 +1199,16 @@ func handleMixCellShowStyle(showStyleList []string, calculateCellMap map[string]
 			}
 
 			cell := config[cellPosition.Column][cellPosition.Row]
-			_, e := strconv.ParseFloat(cell.ShowValue, 64) // 将字符串转换成float类型
-			if e != nil {                                  // 如果没有错误发生则返回true,说明该字符串是一个合法的数字
+			val := cell.ShowValue
+			isPercent := false
+			if strings.Contains(val, "%") {
+				isPercent = true
+				val = strings.Trim(val, "%")
+			}
+			_, e := strconv.ParseFloat(val, 64) // 将字符串转换成float类型
+			if e != nil {                       // 如果没有错误发生则返回true,说明该字符串是一个合法的数字
 				continue
 			}
-			val := cell.ShowValue
 			var styleConf request.MixCellShowStyle
 			err = json.Unmarshal([]byte(cell.ShowStyle), &styleConf)
 			if err != nil {
@@ -1210,7 +1216,7 @@ func handleMixCellShowStyle(showStyleList []string, calculateCellMap map[string]
 				return
 			}
 
-			val = changePointDecimalPlaces(cell.ShowValue, styleConf.Pn, styleConf.Nt)
+			val = changePointDecimalPlaces(val, styleConf.Pn, styleConf.Nt, isPercent)
 			cell.ShowFormatValue = val
 			config[cellPosition.Column][cellPosition.Row] = cell
 		}
@@ -1219,11 +1225,8 @@ func handleMixCellShowStyle(showStyleList []string, calculateCellMap map[string]
 }
 
 // changePointDecimalPlaces 小数点位数加减和百分比格式
-func changePointDecimalPlaces(str string, changeNum int, numberType string) (newStr string) {
+func changePointDecimalPlaces(str string, changeNum int, numberType string, isPercent bool) (newStr string) {
 	newStr = str
-	if changeNum == 0 { //无需改变
-		return
-	}
 	var decimalPlaces int               // 计算小数位数
 	dotIndex := strings.Index(str, ".") // 查找小数点的位置
 	if dotIndex == -1 {
@@ -1231,16 +1234,36 @@ func changePointDecimalPlaces(str string, changeNum int, numberType string) (new
 	} else {
 		decimalPlaces = len(str) - dotIndex - 1
 	}
+
 	// 把字符串转成浮点数
 	val, _ := strconv.ParseFloat(str, 64)
-	// 如果有,则处理百分位,
-	if numberType == "percent" {
-		val = val * 100
+
+	if isPercent {
+		if numberType == "number" { //百分数转成小数
+			t := math.Mod(val, 100)
+			if t != 0 { //表明有余数,那就会存在小数点
+				decimalPlaces = decimalPlaces + 2
+			}
+			val = val / 100
+		}
+	} else {
+		if numberType == "percent" {
+			val = val * 100
+			decimalPlaces = decimalPlaces - 2
+			if decimalPlaces < 0 {
+				decimalPlaces = 0
+			}
+		}
 	}
-	decimalPlaces += changeNum
+	if decimalPlaces == 0 && changeNum < 0 {
+		decimalPlaces = 0
+	} else {
+		decimalPlaces += changeNum
+	}
+
 	val, _ = decimal.NewFromFloat(val).Round(int32(decimalPlaces)).Float64()
 	newStr = fmt.Sprintf("%v", val)
-	if numberType == "percent" {
+	if numberType == "percent" || isPercent {
 		newStr += "%"
 	}
 	return