Browse Source

Merge branch 'ETA_1.4.4' into debug

zwxi 1 year ago
parent
commit
b6495a415f
3 changed files with 152 additions and 7 deletions
  1. 126 0
      controllers/data_manage/edb_info.go
  2. 17 7
      controllers/data_manage/smm_api.go
  3. 9 0
      routers/commentsRouter.go

+ 126 - 0
controllers/data_manage/edb_info.go

@@ -5369,3 +5369,129 @@ func (this *EdbInfoController) EdbInfoBatchAdd() {
 	br.Data = resp
 	br.IsAddLog = true
 }
+
+// SmmExistCheck
+// @Title 新增指标-检验指标是否存在接口-smm
+// @Description 新增指标-检验指标是否存在接口-smm
+// @Param   SubSource   query   int  true       "子数据来源:0:经济数据库,1:日期序列"
+// @Param   EdbCode   query   string  false       "指标编码/指标代码"
+// @Param   StockCode   query   string  false       "证券代码"
+// @Success 200 {object} data_manage.EdbInfoExistCheckResp
+// @router /edb_info/smm/exist/check [get]
+func (this *EdbInfoController) SmmExistCheck() {
+	br := new(models.BaseResponse).Init()
+	defer func() {
+		this.Data["json"] = br
+		this.ServeJSON()
+	}()
+	selectAll, err := this.GetBool("SelectAll",false)
+	if err!= nil {
+		br.Msg = "参数解析失败"
+		br.ErrMsg = "参数解析失败,Err:" + err.Error()
+		return
+	}
+	types := this.GetString("Types")
+	frequency := this.GetString("Frequency")
+	dataState := this.GetString("DataState")
+	keyword := this.GetString("Keyword")
+	edbCode := this.GetString("EdbCode")
+	edbCode = strings.Trim(edbCode, "\t")
+	edbCode = strings.Trim(edbCode, " ")
+	edbCode = strings.Replace(edbCode, "\t", "", -1)
+
+	if edbCode == "" {
+		br.Msg = "请输入指标ID"
+		return
+	}
+
+	var edbCodeArr []string
+
+	if selectAll {
+		var condition string
+		var pars []interface{}
+
+		if types != "" {
+			typeArr := strings.Split(types,",")
+			for i, v := range typeArr {
+				typeStr := "type_"
+				typeStr += fmt.Sprintf("%d", i+1)
+				condition += " AND "+typeStr+" =? "
+				pars = append(pars, v)
+			}
+		}
+
+		if dataState != "" {
+			if dataState == "normal" {
+				condition += " AND (data_state = 'normal' OR data_state = '') "
+				pars = append(pars)
+			} else {
+				condition += " AND data_state = ? "
+				pars = append(pars, dataState)
+			}
+		}
+
+		if keyword != "" {
+			condition += " AND (index_name LIKE ? OR index_code LIKE ?) "
+			pars = utils.GetLikeKeywordPars(pars, keyword, 2)
+		}
+
+		if frequency != "" {
+			condition += " AND frequency = ? "
+			pars = append(pars, frequency)
+		}
+
+		sortStr := " modify_time desc "
+
+		indexList, err := data_manage.GetSmmIndexDataList(condition, sortStr, pars, 1, 1000)
+		if err != nil {
+			br.Msg = "获取指标列表失败"
+			br.ErrMsg = "获取指标列表失败,Err:" + err.Error()
+			return
+		}
+
+		for _, v := range indexList {
+			edbCodeArr = append(edbCodeArr, v.IndexCode)
+		}
+
+	} else {
+		edbCodeArr = strings.Split(edbCode, ",")
+	}
+
+	if len(edbCodeArr) > 30 {
+		br.Msg = "最多只能选择30个指标"
+		return
+	}
+
+	indexList, err := data_manage.GetEdbInfoByEdbCodeList(utils.DATA_SOURCE_YS, edbCodeArr)
+	if err != nil && err.Error() != utils.ErrNoRow() {
+		br.Msg = "校验指标是否存在失败"
+		br.ErrMsg = "校验指标是否存在失败,Err:" + err.Error()
+		return
+	}
+	var existEdbCodeArr []string
+	var existClassifyId []int
+	var existIndexId []int
+
+	for _, indexItem := range indexList {
+		for _, ev := range edbCodeArr {
+			if strings.Contains(indexItem.EdbCode, ev) {
+				existEdbCodeArr = append(existEdbCodeArr, ev)
+				existClassifyId = append(existClassifyId, indexItem.ClassifyId)
+				existIndexId = append(existIndexId, indexItem.EdbInfoId)
+			}
+		}
+	}
+
+	resp := new(data_manage.EdbInfoExistCheckResp)
+	if len(indexList) > 0 {
+		resp.IndexExist = true
+	}
+	resp.ExistEdbCodeArr = existEdbCodeArr
+	resp.ExistClassifyId = existClassifyId
+	resp.ExistIndexId = existIndexId
+	resp.ExistEdbInfo = indexList
+	br.Ret = 200
+	br.Success = true
+	br.Msg = "获取成功"
+	br.Data = resp
+}

+ 17 - 7
controllers/data_manage/smm_api.go

@@ -50,7 +50,13 @@ func (this *EdbInfoController) SmmApiList() {
 	var pars []interface{}
 
 	if types != "" {
-
+		typeArr := strings.Split(types,",")
+		for i, v := range typeArr {
+			typeStr := "type_"
+			typeStr += fmt.Sprintf("%d", i+1)
+			condition += " AND "+typeStr+" =? "
+			pars = append(pars, v)
+		}
 	}
 
 	if frequency != "" {
@@ -152,17 +158,21 @@ func (this *EdbInfoController) SmmApiTypeList() {
 
 	// 初始化
 	for _, v := range typeList {
-		if _, ok := typeMap[v.Type1];!ok {
-			typeMap[v.Type1] = make(map[string][]string)
-		} else {
-			if _, ok := typeMap[v.Type1][v.Type2];!ok {
-				typeMap[v.Type1][v.Type2] = make([]string, 0)
+		if v.Type1 != ""{
+			if _, ok := typeMap[v.Type1];!ok {
+				typeMap[v.Type1] = make(map[string][]string)
+			} else {
+				if _, ok := typeMap[v.Type1][v.Type2];!ok {
+					typeMap[v.Type1][v.Type2] = make([]string, 0)
+				}
 			}
 		}
 	}
 
 	for _, v := range typeList {
-		typeMap[v.Type1][v.Type2] = append(typeMap[v.Type1][v.Type2], v.Type3)
+		if v.Type1 != ""{
+			typeMap[v.Type1][v.Type2] = append(typeMap[v.Type1][v.Type2], v.Type3)
+		}
 	}
 
 	for type1, type2Map := range typeMap {

+ 9 - 0
routers/commentsRouter.go

@@ -2959,6 +2959,15 @@ func init() {
             Filters: nil,
             Params: nil})
 
+    beego.GlobalControllerRouter["eta/eta_api/controllers/data_manage:EdbInfoController"] = append(beego.GlobalControllerRouter["eta/eta_api/controllers/data_manage:EdbInfoController"],
+        beego.ControllerComments{
+            Method: "SmmExistCheck",
+            Router: `/edb_info/smm/exist/check`,
+            AllowHTTPMethods: []string{"get"},
+            MethodParams: param.Make(),
+            Filters: nil,
+            Params: nil})
+
     beego.GlobalControllerRouter["eta/eta_api/controllers/data_manage:EdbInfoController"] = append(beego.GlobalControllerRouter["eta/eta_api/controllers/data_manage:EdbInfoController"],
         beego.ControllerComments{
             Method: "TraceEdbInfo",