|
@@ -5,11 +5,9 @@ import (
|
|
|
"eta/eta_bridge/models/jiayue"
|
|
|
"eta/eta_bridge/models/response"
|
|
|
"eta/eta_bridge/services/alarm_msg"
|
|
|
- "eta/eta_bridge/utils"
|
|
|
"fmt"
|
|
|
"strconv"
|
|
|
"strings"
|
|
|
- "time"
|
|
|
)
|
|
|
|
|
|
// GetIndexFromJiaYue 获取嘉悦指标信息
|
|
@@ -190,25 +188,23 @@ func GetNewIndexAndDataFromJiaYue() (indexList []*response.IndexResp, err error)
|
|
|
indexPars := make([]interface{}, 0)
|
|
|
// TODO:查询两个小时之前的数据(待定)
|
|
|
//timeBefore := time.Now().Local().Add(-2 * time.Hour).Format(utils.FormatDateTime)
|
|
|
- //indexCond += ` CREATE_TIME <= :1 `
|
|
|
+ //indexCond += ` CREATE_TIME <= TO_DATE (:1, 'yyyy-mm-dd hh24:mi:ss') `
|
|
|
//indexPars = append(indexPars, timeBefore.Format(utils.FormatDateTime))
|
|
|
|
|
|
// TODO:测试
|
|
|
- endTime := time.Date(2023, 6, 8, 0, 0, 0, 0, time.Local).Format(utils.FormatDateTime)
|
|
|
- indexCond += fmt.Sprintf(`CREATE_TIME <= TO_DATE ('%s', 'yyyy-mm-dd hh24:mi:ss')`, endTime)
|
|
|
- //indexPars = append(indexPars, endTime)
|
|
|
- sourceArr := []string{"bloomberg", "bloomberg_tmp"}
|
|
|
- if len(sourceArr) > 0 {
|
|
|
- str := ``
|
|
|
- for _, s := range sourceArr {
|
|
|
- str += fmt.Sprintf(`'%s',`, s)
|
|
|
- }
|
|
|
- str = strings.TrimRight(str, ",")
|
|
|
- indexCond += fmt.Sprintf(` AND SOURCE_TYPE IN (%s)`, str)
|
|
|
- //for _, s := range sourceArr {
|
|
|
- // indexPars = append(indexPars, s)
|
|
|
- //}
|
|
|
- }
|
|
|
+ //endTime := time.Date(2023, 6, 8, 0, 0, 0, 0, time.Local).Format(utils.FormatDateTime)
|
|
|
+ //indexCond += fmt.Sprintf(`CREATE_TIME <= TO_DATE ('%s', 'yyyy-mm-dd hh24:mi:ss')`, endTime)
|
|
|
+ //sourceArr := []string{"bloomberg", "bloomberg_tmp"}
|
|
|
+ //if len(sourceArr) > 0 {
|
|
|
+ // str := ``
|
|
|
+ // for _, s := range sourceArr {
|
|
|
+ // str += fmt.Sprintf(`'%s',`, s)
|
|
|
+ // }
|
|
|
+ // str = strings.TrimRight(str, ",")
|
|
|
+ // indexCond += fmt.Sprintf(` AND SOURCE_TYPE IN (%s)`, str)
|
|
|
+ //}
|
|
|
+ indexCond = ` ID = :1`
|
|
|
+ indexPars = append(indexPars, 180399)
|
|
|
|
|
|
indexes, e := jiayue.GetDictIndex(indexCond, indexPars, "CREATE_TIME ASC")
|
|
|
if e != nil {
|
|
@@ -224,25 +220,27 @@ func GetNewIndexAndDataFromJiaYue() (indexList []*response.IndexResp, err error)
|
|
|
indexList = make([]*response.IndexResp, 0)
|
|
|
for _, v := range indexes {
|
|
|
// 指标数据
|
|
|
- dataCond := " INDEX_ID = :1"
|
|
|
- dataPars := make([]interface{}, 0)
|
|
|
- dataPars = append(dataPars, v.Id)
|
|
|
- indexData, e := jiayue.GetDictData(v.TableName, dataCond, dataPars)
|
|
|
- if e != nil {
|
|
|
- err = fmt.Errorf("GetDictData err: %s", e.Error())
|
|
|
- return
|
|
|
- }
|
|
|
+ //dataCond := " INDEX_ID = :1"
|
|
|
+ //dataPars := make([]interface{}, 0)
|
|
|
+ //dataPars = append(dataPars, v.Id)
|
|
|
+ //indexData, e := jiayue.GetDictData(v.TableName, dataCond, dataPars)
|
|
|
+ //if e != nil {
|
|
|
+ // err = fmt.Errorf("GetDictData err: %s", e.Error())
|
|
|
+ // return
|
|
|
+ //}
|
|
|
+ //
|
|
|
|
|
|
// 指标目录
|
|
|
menuCond := ` R.INDEX_ID = :1`
|
|
|
menuPars := make([]interface{}, 0)
|
|
|
menuPars = append(menuPars, v.Id)
|
|
|
- menus, e := jiayue.GetDictCategory(menuCond, menuPars, "")
|
|
|
+ menus, e := jiayue.GetIndexCategory(menuCond, menuPars, "")
|
|
|
if e != nil {
|
|
|
err = fmt.Errorf("GetDictCategory err: %s", e.Error())
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+ var indexData []jiayue.DictData
|
|
|
item := FormatItem2Resp(v, indexData, menus)
|
|
|
indexList = append(indexList, item)
|
|
|
}
|
|
@@ -255,6 +253,7 @@ func FormatItem2Resp(item jiayue.DictIndex, dictData []jiayue.DictData, dictMenu
|
|
|
res.Id = item.Id
|
|
|
res.IndexCode = item.Code
|
|
|
res.IndexName = item.Name
|
|
|
+ res.SourceType = item.SourceType
|
|
|
res.Unit = item.Unit
|
|
|
res.Frequency = item.Frequency
|
|
|
res.LastDate = item.DateLast
|
|
@@ -274,6 +273,7 @@ func FormatItem2Resp(item jiayue.DictIndex, dictData []jiayue.DictData, dictMenu
|
|
|
res.MenuData.Id = firstMenu.Id
|
|
|
res.MenuData.Type = firstMenu.Type
|
|
|
res.MenuData.Code = firstMenu.Code
|
|
|
+ res.MenuData.Name = firstMenu.Name
|
|
|
res.MenuData.Icon = firstMenu.Icon
|
|
|
res.MenuData.Sort = firstMenu.Sorting
|
|
|
res.MenuData.ParentId = firstMenu.ParentId
|