|
@@ -6,22 +6,35 @@ import (
|
|
|
"eta/eta_hub/models/data_manage"
|
|
|
"eta/eta_hub/utils"
|
|
|
"fmt"
|
|
|
+ "sort"
|
|
|
"strings"
|
|
|
"time"
|
|
|
)
|
|
|
|
|
|
// TraceEdbInfoByEdbInfoId 指标追溯
|
|
|
-func TraceEdbInfoByEdbInfoId(edbInfoId int) (traceEdbInfo data_manage.TraceEdbInfoResp, err error) {
|
|
|
- edbInfo, err := data_manage.GetEdbInfoById(edbInfoId)
|
|
|
- if err != nil {
|
|
|
- return
|
|
|
+func TraceEdbInfoByEdbInfoId(edbInfoId int, edbInfoCode string) (traceEdbInfo data_manage.TraceEdbInfoResp, err error) {
|
|
|
+ var edbInfo *data_manage.EdbInfo
|
|
|
+ edbInfoOb := new(data_manage.EdbInfo)
|
|
|
+ if edbInfoId > 0 {
|
|
|
+ edbInfo, err = data_manage.GetEdbInfoById(edbInfoId)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }else if edbInfoCode != "" {
|
|
|
+ edbInfo, err = edbInfoOb.GetItemByEdbCode(edbInfoCode)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ edbInfoId = edbInfo.EdbInfoId
|
|
|
}
|
|
|
+
|
|
|
edbInfoRuleMap := make(map[int]string, 0)
|
|
|
edbMappingMap := make(map[int][]*data_manage.EdbInfoCalculateMappingInfo)
|
|
|
//edbInfoRuleMap[edbInfoId] = getEdbRuleTitle(edbInfo)
|
|
|
traceEdbInfo = data_manage.TraceEdbInfoResp{
|
|
|
//EdbInfoId: edbInfo.EdbInfoId,
|
|
|
EdbInfoId: edbInfoId,
|
|
|
+ EdbCode: edbInfo.EdbCode,
|
|
|
EdbInfoType: edbInfo.EdbInfoType,
|
|
|
EdbName: edbInfo.EdbName,
|
|
|
EdbType: edbInfo.EdbType,
|
|
@@ -88,6 +101,7 @@ func traceEdbInfoByEdbInfoId(edbInfoId int, traceEdbInfo data_manage.TraceEdbInf
|
|
|
tmpEdbInfoId := v.FromEdbInfoId
|
|
|
tmpTraceEdbInfo := data_manage.TraceEdbInfoResp{
|
|
|
EdbInfoId: tmpEdbInfoId,
|
|
|
+ EdbCode: v.FromEdbCode,
|
|
|
EdbInfoType: v.FromEdbInfoType,
|
|
|
EdbType: v.FromEdbType,
|
|
|
UniqueCode: v.FromUniqueCode,
|
|
@@ -130,7 +144,7 @@ func handleTraceEdbInfo(traceEdbInfoResp data_manage.TraceEdbInfoResp, parentEdb
|
|
|
}
|
|
|
|
|
|
//traceEdbInfoResp.EdbName = edbInfo.EdbName
|
|
|
- traceEdbInfoResp.EdbName, traceEdbInfoResp.RuleTitle = getEdbRuleTitle(edbInfo, parentEdbInfo, traceEdbInfoResp.Child, edbInfoMap, edbMappingMap)
|
|
|
+ traceEdbInfoResp.EdbName, _, traceEdbInfoResp.RuleTitle, _ = getEdbRuleTitle(edbInfo, parentEdbInfo, traceEdbInfoResp.Child, edbInfoMap, edbMappingMap)
|
|
|
|
|
|
if traceEdbInfoResp.Child != nil && len(traceEdbInfoResp.Child) > 0 {
|
|
|
for k, v := range traceEdbInfoResp.Child {
|
|
@@ -146,9 +160,11 @@ func handleTraceEdbInfo(traceEdbInfoResp data_manage.TraceEdbInfoResp, parentEdb
|
|
|
}
|
|
|
|
|
|
// getEdbRule 获取规则名称
|
|
|
-func getEdbRuleTitle(edbInfo, parentEdbInfo *data_manage.EdbInfo, childList []data_manage.TraceEdbInfoResp, edbInfoMap map[int]*data_manage.EdbInfo, edbMappingMap map[int][]*data_manage.EdbInfoCalculateMappingInfo) (edbName, ruleTitle string) {
|
|
|
+func getEdbRuleTitle(edbInfo, parentEdbInfo *data_manage.EdbInfo, childList []data_manage.TraceEdbInfoResp, edbInfoMap map[int]*data_manage.EdbInfo, edbMappingMap map[int][]*data_manage.EdbInfoCalculateMappingInfo) (edbName, edbNameEn, ruleTitle, ruleTitleEn string) {
|
|
|
edbName = edbInfo.EdbName
|
|
|
+ edbNameEn = edbInfo.EdbNameEn
|
|
|
ruleTitle = `来源于` + edbInfo.SourceName
|
|
|
+ ruleTitleEn = `Source From: ` + edbInfo.SourceName
|
|
|
|
|
|
if parentEdbInfo != nil {
|
|
|
edbMappingList, ok := edbMappingMap[parentEdbInfo.EdbInfoId]
|
|
@@ -161,6 +177,7 @@ func getEdbRuleTitle(edbInfo, parentEdbInfo *data_manage.EdbInfo, childList []da
|
|
|
for _, v := range edbMappingList {
|
|
|
if v.FromEdbInfoId == edbInfo.EdbInfoId {
|
|
|
edbName = fmt.Sprintf("%s(%s)", edbInfo.EdbName, v.FromTag)
|
|
|
+ edbNameEn = fmt.Sprintf("%s(%s)", edbInfo.EdbNameEn, v.FromTag)
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -168,12 +185,16 @@ func getEdbRuleTitle(edbInfo, parentEdbInfo *data_manage.EdbInfo, childList []da
|
|
|
for _, v := range edbMappingList {
|
|
|
if v.FromEdbInfoId == edbInfo.EdbInfoId {
|
|
|
tmpName := ``
|
|
|
+ tmpNameEn := ``
|
|
|
if v.FromTag == `A` {
|
|
|
tmpName = `拼接日期前`
|
|
|
+ tmpNameEn = `Before Concatenation Date:`
|
|
|
} else if v.FromTag == `B` {
|
|
|
tmpName = `拼接日期后`
|
|
|
+ tmpNameEn = `After Concatenation Date:`
|
|
|
}
|
|
|
edbName = fmt.Sprintf("%s(%s)", edbInfo.EdbName, tmpName)
|
|
|
+ edbNameEn = fmt.Sprintf("%s(%s)", edbInfo.EdbNameEn, tmpNameEn)
|
|
|
}
|
|
|
}
|
|
|
case utils.DATA_SOURCE_CALCULATE_NHCC, utils.DATA_SOURCE_PREDICT_CALCULATE_NHCC: //计算指标(拟合残差)
|
|
@@ -181,18 +202,23 @@ func getEdbRuleTitle(edbInfo, parentEdbInfo *data_manage.EdbInfo, childList []da
|
|
|
//(需对上游指标+自变量,领先10天/因变量)
|
|
|
if v.FromEdbInfoId == edbInfo.EdbInfoId {
|
|
|
tmpName := ``
|
|
|
+ tmpNameEn := ``
|
|
|
if v.FromTag == `A` {
|
|
|
tmpName = fmt.Sprintf(`自变量,领先%d天`, v.MoveValue)
|
|
|
+ tmpNameEn = fmt.Sprintf(`Independent Variable, Lead %d Days:`, v.MoveValue)
|
|
|
} else if v.FromTag == `B` {
|
|
|
tmpName = `因变量`
|
|
|
+ tmpNameEn = `Dependent Variable`
|
|
|
}
|
|
|
edbName = fmt.Sprintf("%s(%s)", edbInfo.EdbName, tmpName)
|
|
|
+ edbNameEn = fmt.Sprintf("%s(%s)", edbInfo.EdbNameEn, tmpNameEn)
|
|
|
}
|
|
|
}
|
|
|
case utils.DATA_SOURCE_CALCULATE_CORRELATION: // 滚动相关性
|
|
|
for _, v := range edbMappingList {
|
|
|
if v.FromEdbInfoId == edbInfo.EdbInfoId {
|
|
|
edbName = fmt.Sprintf("%s(%s)", edbInfo.EdbName, v.FromTag)
|
|
|
+ edbNameEn = fmt.Sprintf("%s(%s)", edbInfo.EdbNameEn, v.FromTag)
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -210,42 +236,55 @@ func getEdbRuleTitle(edbInfo, parentEdbInfo *data_manage.EdbInfo, childList []da
|
|
|
// 规则
|
|
|
switch edbInfo.Source {
|
|
|
case utils.DATA_SOURCE_CALCULATE, utils.DATA_SOURCE_PREDICT_CALCULATE:
|
|
|
- ruleTitle = "=" + edbInfo.CalculateFormula
|
|
|
+ ruleTitle = formatCalculateFormula(edbInfo.CalculateFormula)
|
|
|
case utils.DATA_SOURCE_CALCULATE_LJZZY, utils.DATA_SOURCE_PREDICT_CALCULATE_LJZZY:
|
|
|
ruleTitle = `累计转月值计算`
|
|
|
+ ruleTitleEn = `Cumulative to Monthly Calculation`
|
|
|
case utils.DATA_SOURCE_CALCULATE_TBZ, utils.DATA_SOURCE_PREDICT_CALCULATE_TBZ:
|
|
|
ruleTitle = `同比值计算`
|
|
|
+ ruleTitleEn = `Year-on-Year Value Calculation`
|
|
|
case utils.DATA_SOURCE_CALCULATE_TCZ, utils.DATA_SOURCE_PREDICT_CALCULATE_TCZ:
|
|
|
ruleTitle = `同差值计算`
|
|
|
+ ruleTitleEn = `Yearly Difference Calculation`
|
|
|
case utils.DATA_SOURCE_CALCULATE_NSZYDPJJS, utils.DATA_SOURCE_PREDICT_CALCULATE_NSZYDPJJS:
|
|
|
ruleTitle = fmt.Sprintf("N数值移动均值计算(N=%s)", edbInfo.CalculateFormula)
|
|
|
+ ruleTitleEn = fmt.Sprintf("N-Value Moving Average Calculation(N=%s)", edbInfo.CalculateFormula)
|
|
|
case utils.DATA_SOURCE_CALCULATE_HBZ, utils.DATA_SOURCE_PREDICT_CALCULATE_HBZ:
|
|
|
ruleTitle = fmt.Sprintf("N数值环比值计算(N=%s)", edbInfo.CalculateFormula)
|
|
|
+ ruleTitleEn = fmt.Sprintf("N-Value Sequential Comparison Calculation(N=%s)", edbInfo.CalculateFormula)
|
|
|
case utils.DATA_SOURCE_CALCULATE_HCZ, utils.DATA_SOURCE_PREDICT_CALCULATE_HCZ:
|
|
|
ruleTitle = fmt.Sprintf("N数值环差值计算(N=%s)", edbInfo.CalculateFormula)
|
|
|
+ ruleTitleEn = fmt.Sprintf("N-Value Sequential Difference Calculation(N=%s)", edbInfo.CalculateFormula)
|
|
|
case utils.DATA_SOURCE_CALCULATE_TIME_SHIFT, utils.DATA_SOURCE_PREDICT_CALCULATE_TIME_SHIFT:
|
|
|
moveType := `领先`
|
|
|
+ moveTypeEn := `Lead`
|
|
|
if edbInfo.MoveType == 2 {
|
|
|
moveType = "滞后"
|
|
|
+ moveTypeEn = `Lag`
|
|
|
}
|
|
|
ruleTitle = fmt.Sprintf("时间移位计算(%s%s%s)", moveType, edbInfo.CalculateFormula, edbInfo.MoveFrequency)
|
|
|
+ ruleTitleEn = fmt.Sprintf("Time Shift Calculation(%s%s%s)", moveTypeEn, edbInfo.CalculateFormula, edbInfo.MoveFrequency)
|
|
|
case utils.DATA_SOURCE_CALCULATE_BP, utils.DATA_SOURCE_PREDICT_CALCULATE_BP: // 变频
|
|
|
childFrequency := ``
|
|
|
if len(childList) > 0 {
|
|
|
if childEdbInfo, ok := edbInfoMap[childList[0].EdbInfoId]; ok {
|
|
|
childFrequency = childEdbInfo.Frequency
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
ruleTitle = fmt.Sprintf("升频计算(%s转%s)", childFrequency, edbInfo.Frequency)
|
|
|
+ ruleTitleEn = fmt.Sprintf("Upsampling Calculation(%s转%s)", childFrequency, edbInfo.Frequency)
|
|
|
case utils.DATA_SOURCE_CALCULATE_ZJPJ, utils.DATA_SOURCE_PREDICT_CALCULATE_ZJPJ: // 直接拼接
|
|
|
ruleTitle = fmt.Sprintf("直接拼接计算(%s)", edbInfo.CalculateFormula)
|
|
|
+ ruleTitleEn = fmt.Sprintf("Direct Concatenation Calculation(%s)", edbInfo.CalculateFormula)
|
|
|
case utils.DATA_SOURCE_CALCULATE_LJZTBPJ, utils.DATA_SOURCE_PREDICT_CALCULATE_LJZTBPJ: // 累计值同比拼
|
|
|
ruleTitle = fmt.Sprintf("累计值同比值拼接计算(%s)", edbInfo.CalculateFormula)
|
|
|
+ ruleTitleEn = fmt.Sprintf("Cumulative Year-on-Year Concatenation Calculation(%s)", edbInfo.CalculateFormula)
|
|
|
case utils.DATA_SOURCE_PYTHON:
|
|
|
ruleTitle = `代码运算`
|
|
|
+ ruleTitleEn = `Code Computation`
|
|
|
case utils.DATA_SOURCE_CALCULATE_CJJX, utils.DATA_SOURCE_PREDICT_CALCULATE_CJJX:
|
|
|
ruleTitle = fmt.Sprintf("超季节性计算(N=%s,%s)", edbInfo.CalculateFormula, edbInfo.Calendar)
|
|
|
+ ruleTitleEn = fmt.Sprintf("Super Seasonality Calculation(N=%s,%s)", edbInfo.CalculateFormula, edbInfo.Calendar)
|
|
|
case utils.DATA_SOURCE_CALCULATE_NHCC, utils.DATA_SOURCE_PREDICT_CALCULATE_NHCC: //计算指标(拟合残差)
|
|
|
var startDate, endDate string
|
|
|
dateList := strings.Split(edbInfo.CalculateFormula, ",")
|
|
@@ -254,10 +293,13 @@ func getEdbRuleTitle(edbInfo, parentEdbInfo *data_manage.EdbInfo, childList []da
|
|
|
endDate = dateList[1]
|
|
|
}
|
|
|
ruleTitle = fmt.Sprintf("拟合残差计算(%s至%s)", startDate, endDate)
|
|
|
+ ruleTitleEn = fmt.Sprintf("Fit Residual Calculation(%s至%s)", startDate, endDate)
|
|
|
case utils.DATA_SOURCE_CALCULATE_ADJUST:
|
|
|
ruleTitle = `数据调整`
|
|
|
+ ruleTitleEn = `Data Adjustment`
|
|
|
case utils.DATA_SOURCE_CALCULATE_NH, utils.DATA_SOURCE_PREDICT_CALCULATE_NH:
|
|
|
ruleTitle = `年化计算`
|
|
|
+ ruleTitleEn = `Annualization Calculation`
|
|
|
case utils.DATA_SOURCE_CALCULATE_KSZS, utils.DATA_SOURCE_PREDICT_CALCULATE_KSZS: // 扩散指数->53
|
|
|
type KszsConfig struct {
|
|
|
DateType int `description:"扩散指标日期;1:全部指标日期并集;2:部分指标日期并集"`
|
|
@@ -313,8 +355,10 @@ func getEdbRuleTitle(edbInfo, parentEdbInfo *data_manage.EdbInfo, childList []da
|
|
|
}
|
|
|
}
|
|
|
ruleTitle = fmt.Sprintf("扩散指数计算(%s至%s)", startDate.Format(utils.FormatDate), endDate.Format(utils.FormatDate))
|
|
|
+ ruleTitleEn = fmt.Sprintf("Diffusion Index Calculation(%s to %s)", startDate.Format(utils.FormatDate), endDate.Format(utils.FormatDate))
|
|
|
case utils.DATA_SOURCE_STOCK_PLANT:
|
|
|
ruleTitle = `来源于装置分析`
|
|
|
+ ruleTitleEn = `Derived from Plant Analysis`
|
|
|
case utils.DATA_SOURCE_CALCULATE_CORRELATION:
|
|
|
type EdbCalculateFormula struct {
|
|
|
BaseCalculateValue int `description:"基础计算窗口"`
|
|
@@ -330,6 +374,7 @@ func getEdbRuleTitle(edbInfo, parentEdbInfo *data_manage.EdbInfo, childList []da
|
|
|
return
|
|
|
}
|
|
|
ruleTitle = fmt.Sprintf("滚动相关性(计算窗口%d%s,B领先A%d%s)", correlationConf.CalculateValue, correlationConf.CalculateUnit, correlationConf.LeadValue, correlationConf.LeadUnit)
|
|
|
+ ruleTitleEn = fmt.Sprintf("Rolling Correlation (Calculation Window %d%s, B Leads A %d%s)", correlationConf.CalculateValue, correlationConf.CalculateUnit, correlationConf.LeadValue, correlationConf.LeadUnit)
|
|
|
case utils.DATA_SOURCE_CALCULATE_JP, utils.DATA_SOURCE_PREDICT_CALCULATE_JP:
|
|
|
childFrequency := ``
|
|
|
if len(childList) > 0 {
|
|
@@ -339,8 +384,10 @@ func getEdbRuleTitle(edbInfo, parentEdbInfo *data_manage.EdbInfo, childList []da
|
|
|
|
|
|
}
|
|
|
ruleTitle = fmt.Sprintf("降频计算(%s转%s,%s)", childFrequency, edbInfo.Frequency, edbInfo.CalculateFormula)
|
|
|
+ ruleTitleEn = fmt.Sprintf("Downsampling Calculation(%s to %s,%s)", childFrequency, edbInfo.Frequency, edbInfo.CalculateFormula)
|
|
|
case utils.DATA_SOURCE_CALCULATE_STANDARD_DEVIATION:
|
|
|
ruleTitle = fmt.Sprintf("标准差(滚动%s期)", edbInfo.CalculateFormula)
|
|
|
+ ruleTitleEn = fmt.Sprintf("Standard Deviation (Rolling %s Periods)", edbInfo.CalculateFormula)
|
|
|
case utils.DATA_SOURCE_CALCULATE_PERCENTILE, utils.DATA_SOURCE_PREDICT_CALCULATE_PERCENTILE:
|
|
|
type TempCalculate struct {
|
|
|
CalculateValue int `description:"计算窗口"`
|
|
@@ -351,9 +398,78 @@ func getEdbRuleTitle(edbInfo, parentEdbInfo *data_manage.EdbInfo, childList []da
|
|
|
return
|
|
|
}
|
|
|
ruleTitle = fmt.Sprintf("百分位(时间长度%d%s)", cf.CalculateValue, cf.CalculateUnit)
|
|
|
+ ruleTitle = fmt.Sprintf("Percentile (Time Length %d%s)", cf.CalculateValue, cf.CalculateUnit)
|
|
|
case utils.DATA_SOURCE_CALCULATE_ZSXY, utils.DATA_SOURCE_PREDICT_CALCULATE_ZSXY:
|
|
|
ruleTitle = `指数修匀计算`
|
|
|
+ ruleTitle = `Index Smoothing Calculation`
|
|
|
}
|
|
|
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+func formatCalculateFormula(calculateFormula string) (ruleTitle string) {
|
|
|
+ var tmpCalculateFormula []map[string]string
|
|
|
+ if e := json.Unmarshal([]byte(calculateFormula), &tmpCalculateFormula); e != nil {
|
|
|
+ ruleTitle = "=" + calculateFormula
|
|
|
+ return
|
|
|
+ }
|
|
|
+ newCalculateFormula := make([]map[string]string, 0)
|
|
|
+ sort.Slice(tmpCalculateFormula, func(i, j int) bool {
|
|
|
+ return compareDates(tmpCalculateFormula[i]["d"], tmpCalculateFormula[j]["d"])
|
|
|
+ })
|
|
|
+
|
|
|
+ for i, entry := range tmpCalculateFormula {
|
|
|
+ if formula, ok := entry["f"]; ok {
|
|
|
+ singleFormula := make(map[string]string)
|
|
|
+ singleFormula["公式"] = formula
|
|
|
+ singleFormula["日期"] = determineDateRange(i, len(tmpCalculateFormula), tmpCalculateFormula)
|
|
|
+ newCalculateFormula = append(newCalculateFormula, singleFormula)
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ if b, e := json.Marshal(newCalculateFormula); e != nil {
|
|
|
+ ruleTitle = "=" + calculateFormula
|
|
|
+ } else {
|
|
|
+ ruleTitle = "=" + string(b)
|
|
|
+ }
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+// compareDates 日期比较 date1 < date2 --> true
|
|
|
+func compareDates(date1, date2 string) bool {
|
|
|
+ if date1 == "" {
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ if date2 == "" {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+
|
|
|
+ date1Parsed, err := time.Parse(utils.FormatDate, date1)
|
|
|
+ if err != nil {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ date2Parsed, err := time.Parse(utils.FormatDate, date2)
|
|
|
+ if err != nil {
|
|
|
+ return false
|
|
|
+ }
|
|
|
+
|
|
|
+ return date1Parsed.Before(date2Parsed)
|
|
|
+}
|
|
|
+
|
|
|
+func determineDateRange(index, totalLength int, formulas []map[string]string) string {
|
|
|
+ if totalLength == 1 {
|
|
|
+ return "全部"
|
|
|
+ }
|
|
|
+
|
|
|
+ currentDate := formulas[index]["d"]
|
|
|
+ if index == 0 {
|
|
|
+ return formulas[totalLength-1]["d"] + "(含)之后"
|
|
|
+ }
|
|
|
+ if index == totalLength-1 {
|
|
|
+ return formulas[1]["d"] + "之前"
|
|
|
+ }
|
|
|
+ if index >= 1 && index < totalLength-1 {
|
|
|
+ return fmt.Sprintf("%s(含)——%s", currentDate, formulas[index+1]["d"])
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|