Roc 2 年之前
父節點
當前提交
2d39b14415
共有 3 個文件被更改,包括 3 次插入4 次删除
  1. 1 2
      controllers/chart.go
  2. 1 1
      services/data/chart_info.go
  3. 1 1
      services/data/edb_info.go

+ 1 - 2
controllers/chart.go

@@ -367,7 +367,7 @@ func (this *ChartController) ChartInfoRefresh() {
 	//	return
 	//}
 
-	err = data.ChartInfoRefreshV1(chartInfo.ChartInfoId)
+	err = data.ChartInfoRefreshV2(chartInfo.ChartInfoId)
 	if err != nil {
 		br.Msg = "刷新失败"
 		br.ErrMsg = "刷新图表关联指标信息失败,Err:" + err.Error()
@@ -429,4 +429,3 @@ func GetLeadUnitEn(unit string) (unitEn string) {
 	}
 	return
 }
-

+ 1 - 1
services/data/chart_info.go

@@ -448,7 +448,7 @@ func ChartInfoRefreshV2(chartInfoId int) (err error) {
 	}
 
 	// 批量刷新
-	err = EdbInfoRefreshAllFromBaseV3(edbIdList, false)
+	err = EdbInfoRefreshAllFromBase(edbIdList, false)
 	if err != nil {
 		return
 	}

+ 1 - 1
services/data/edb_info.go

@@ -14,7 +14,7 @@ import (
 // @author Roc
 // @datetime 2022-09-16 11:04:44
 // @description 将原有的单个指标刷新,调整为批量多个指标刷新
-func EdbInfoRefreshAllFromBaseV3(edbInfoIdList []int, refreshAll bool) (err error) {
+func EdbInfoRefreshAllFromBase(edbInfoIdList []int, refreshAll bool) (err error) {
 	var errmsg string
 	defer func() {
 		if err != nil {