|
@@ -348,18 +348,116 @@ type EdbInfoCalculateBatchSaveReq struct {
|
|
|
|
|
|
// EdbInfoCalculateBatchEditReq 编辑计算指标的请求参数
|
|
|
type EdbInfoCalculateBatchEditReq struct {
|
|
|
- EdbName string `description:"指标名称"`
|
|
|
- Frequency string `description:"频度"`
|
|
|
- Unit string `description:"单位"`
|
|
|
- ClassifyId int `description:"分类id"`
|
|
|
- Formula string `description:"N值"`
|
|
|
- EdbInfoId int `description:"编辑指标id"`
|
|
|
- FromEdbInfoId int `description:"计算来源指标id"`
|
|
|
- Source int `description:"来源:1:同花顺,2:wind,3:彭博,4:指标运算,5:累计值转月,6:同比值,7:同差值,8:N数值移动平均计算,12:环比值,13:环差值,14:变频"`
|
|
|
- MoveType int `description:"移动方式:1:领先(默认),2:滞后"`
|
|
|
- MoveFrequency string `description:"移动频度:天/周/月/季/年"`
|
|
|
- EdbInfoIdArr []struct {
|
|
|
+ AdminId int `description:"添加人id"`
|
|
|
+ AdminName string `description:"添加人名称"`
|
|
|
+ EdbInfoId int `description:"编辑指标id"`
|
|
|
+ EdbName string `description:"指标名称"`
|
|
|
+ Frequency string `description:"频度"`
|
|
|
+ Unit string `description:"单位"`
|
|
|
+ ClassifyId int `description:"分类id"`
|
|
|
+ Formula string `description:"N值/移动天数"`
|
|
|
+ FromEdbInfoId int `description:"计算来源指标id"`
|
|
|
+ Source int `description:"来源:1:同花顺,2:wind,3:彭博,4:指标运算,5:累计值转月,6:同比值,7:同差值,8:N数值移动平均计算,12:环比值,13:环差值,14:变频"`
|
|
|
+ CalculateFormula string `description:"计算公式"`
|
|
|
+ EdbInfoIdArr []struct {
|
|
|
EdbInfoId int `description:"指标id"`
|
|
|
FromTag string `description:"指标对应标签"`
|
|
|
}
|
|
|
+ MoveType int `description:"移动方式:1:领先(默认),2:滞后"`
|
|
|
+ MoveFrequency string `description:"移动频度:天/周/月/季/年"`
|
|
|
+}
|
|
|
+
|
|
|
+// DeleteCalculateData 删除计算数据
|
|
|
+func DeleteCalculateData(edbInfoId int) (err error) {
|
|
|
+ o := orm.NewOrm()
|
|
|
+ sql := `DELETE FROM edb_data_calculate WHERE edb_info_id=?`
|
|
|
+ _, err = o.Raw(sql, edbInfoId).Exec()
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+// Calculate 重新计算
|
|
|
+func Calculate(edbInfoIdArr []*EdbInfo, edbInfoId int, edbCode, formulaStr string, edbInfoIdBytes []string) (err error) {
|
|
|
+ defer func() {
|
|
|
+ if err != nil {
|
|
|
+ utils.FileLog.Info("Calculate Err:%s" + err.Error())
|
|
|
+ }
|
|
|
+ }()
|
|
|
+ saveDataMap := make(map[string]map[int]float64)
|
|
|
+ for _, v := range edbInfoIdArr {
|
|
|
+ var condition string
|
|
|
+ var pars []interface{}
|
|
|
+ condition += " AND edb_info_id=? "
|
|
|
+ pars = append(pars, v.EdbInfoId)
|
|
|
+ dataList, err := GetEdbDataListAll(condition, pars, v.Source, 1)
|
|
|
+ if err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ dataMap := make(map[string]float64)
|
|
|
+ for _, dv := range dataList {
|
|
|
+ if val, ok := saveDataMap[dv.DataTime]; ok {
|
|
|
+ if _, ok := val[v.EdbInfoId]; !ok {
|
|
|
+ val[v.EdbInfoId] = dv.Value
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ temp := make(map[int]float64)
|
|
|
+ temp[v.EdbInfoId] = dv.Value
|
|
|
+ saveDataMap[dv.DataTime] = temp
|
|
|
+ }
|
|
|
+ }
|
|
|
+ item := new(CalculateItems)
|
|
|
+ item.EdbInfoId = v.EdbInfoId
|
|
|
+ item.DataMap = dataMap
|
|
|
+ }
|
|
|
+ formulaMap := services.CheckFormula(formulaStr)
|
|
|
+ addSql := ` INSERT INTO edb_data_calculate(edb_info_id,edb_code,data_time,value,create_time,modify_time,status,data_timestamp) values `
|
|
|
+ nowStr := time.Now().Format(utils.FormatDateTime)
|
|
|
+ var isAdd bool
|
|
|
+ for sk, sv := range saveDataMap {
|
|
|
+ formulaStr = strings.ToUpper(formulaStr)
|
|
|
+ formulaFormStr := ReplaceFormula(edbInfoIdArr, sv, formulaMap, formulaStr, edbInfoIdBytes)
|
|
|
+ if formulaStr == "" {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if formulaFormStr != "" {
|
|
|
+ expression := formula.NewExpression(formulaFormStr)
|
|
|
+ calResult, err := expression.Evaluate()
|
|
|
+ if err != nil {
|
|
|
+ err = errors.New("计算失败:Err:" + err.Error() + ";formulaStr:" + formulaFormStr)
|
|
|
+ fmt.Println(err)
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ calVal, err := calResult.Float64()
|
|
|
+ if err != nil {
|
|
|
+ err = errors.New("计算失败:获取计算值失败 Err:" + err.Error() + ";formulaStr:" + formulaFormStr)
|
|
|
+ fmt.Println(err)
|
|
|
+ return err
|
|
|
+ }
|
|
|
+
|
|
|
+ //需要存入的数据
|
|
|
+ {
|
|
|
+ dataTime, _ := time.Parse(utils.FormatDate, sk)
|
|
|
+ timestamp := dataTime.UnixNano() / 1e6
|
|
|
+ timeStr := fmt.Sprintf("%d", timestamp)
|
|
|
+ addSql += "("
|
|
|
+ addSql += strconv.Itoa(edbInfoId) + "," + "'" + edbCode + "'" + "," + "'" + sk + "'" + "," + utils.SubFloatToString(calVal, 4) + "," + "'" + nowStr + "'" +
|
|
|
+ "," + "'" + nowStr + "'" + "," + "1"
|
|
|
+ addSql += "," + "'" + timeStr + "'"
|
|
|
+ addSql += "),"
|
|
|
+ isAdd = true
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ fmt.Println("formulaFormStr is empty")
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if isAdd {
|
|
|
+ addSql = strings.TrimRight(addSql, ",")
|
|
|
+ o := orm.NewOrm()
|
|
|
+ _, err = o.Raw(addSql).Exec()
|
|
|
+
|
|
|
+ if err != nil {
|
|
|
+ fmt.Println("AddEdbDataCalculate Err:" + err.Error())
|
|
|
+ return err
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return
|
|
|
}
|