|
@@ -120,11 +120,18 @@ func InitChartEdbRelation() {
|
|
|
if !ok1 {
|
|
|
continue
|
|
|
}
|
|
|
+ if chartInfo.Source == utils.CHART_SOURCE_CROSS_HEDGING { //过滤掉跨品种分析的图表
|
|
|
+ continue
|
|
|
+ }
|
|
|
edbInfo, ok2 := edbInfoMap[v.EdbInfoId]
|
|
|
if !ok2 {
|
|
|
continue
|
|
|
}
|
|
|
- //todo 引用时间
|
|
|
+ // 去掉预测指标
|
|
|
+ if edbInfo.EdbInfoType == 1 {
|
|
|
+ continue
|
|
|
+ }
|
|
|
+
|
|
|
tmp := &data_manage.EdbInfoRelation{
|
|
|
ReferObjectId: v.ChartInfoId,
|
|
|
ReferObjectType: utils.EDB_RELATION_CHART,
|
|
@@ -152,7 +159,7 @@ func InitChartEdbRelation() {
|
|
|
continue
|
|
|
}
|
|
|
name1 := fmt.Sprintf("%d-%d", v.ChartInfoId, childEdbMapping.FromEdbInfoId)
|
|
|
- if _, ok2 := existRelationMap[name1]; !ok2 { //如果已经被直接引用了,则无需添加到间接引用记录中
|
|
|
+ if _, ok2 := existRelationMap[name1]; ok2 { //如果已经被直接引用了,则无需添加到间接引用记录中
|
|
|
continue
|
|
|
}
|
|
|
tmp1 := &data_manage.EdbInfoRelation{
|
|
@@ -238,10 +245,15 @@ func InitChartCrossVariety() {
|
|
|
break
|
|
|
}
|
|
|
chartIds := make([]int, 0)
|
|
|
+ chartIdMap := make(map[int]struct{})
|
|
|
tagIds := make([]int, 0)
|
|
|
tagIdsMap := make(map[int]struct{})
|
|
|
tagChartMap := make(map[int][]*cross_variety.ChartInfoCrossVariety)
|
|
|
for _, v := range list {
|
|
|
+ if _, ok := chartIdMap[v.ChartInfoId]; !ok {
|
|
|
+ chartIdMap[v.ChartInfoId] = struct{}{}
|
|
|
+ chartIds = append(chartIds, v.ChartInfoId)
|
|
|
+ }
|
|
|
if _, ok := tagIdsMap[v.ChartXTagId]; !ok {
|
|
|
tagIds = append(tagIds, v.ChartXTagId)
|
|
|
tagIdsMap[v.ChartXTagId] = struct{}{}
|
|
@@ -267,6 +279,18 @@ func InitChartCrossVariety() {
|
|
|
tagChartMap[v.ChartYTagId] = chartCross
|
|
|
}
|
|
|
}
|
|
|
+ chartInfoMap := make(map[int]*data_manage.ChartInfo)
|
|
|
+ if len(chartIds) > 0 {
|
|
|
+ // 查询图表信息
|
|
|
+ chartInfoList, e := data_manage.GetChartInfoByChartInfoIds(chartIds)
|
|
|
+ if e != nil {
|
|
|
+ err = fmt.Errorf("查询图表信息列表失败 Err:%s", e)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ for _, v := range chartInfoList {
|
|
|
+ chartInfoMap[v.ChartInfoId] = v
|
|
|
+ }
|
|
|
+ }
|
|
|
chartTagVarietyList, e := cross_variety.GetChartTagVarietyEdbInfoIdsByTagIds(tagIds)
|
|
|
if e != nil {
|
|
|
err = fmt.Errorf("查询指标信息列表失败 Err:%s", e)
|
|
@@ -314,9 +338,20 @@ func InitChartCrossVariety() {
|
|
|
if chartCross, ok2 := tagChartMap[tag.ChartTagId]; ok2 {
|
|
|
for _, crossItem := range chartCross {
|
|
|
if _, ok3 := chartInfoCrossMap[crossItem.ChartInfoId]; !ok3 {
|
|
|
- chartInfoCrossMap[crossItem.ChartInfoId] = struct{}{}
|
|
|
- chartInfoCrossList = append(chartInfoCrossList, crossItem)
|
|
|
- chartIds = append(chartIds, crossItem.ChartInfoId)
|
|
|
+ chartInfo, chartOk := chartInfoMap[crossItem.ChartInfoId]
|
|
|
+ if !chartOk { //表示图表不存在
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ // 查询真正有用的指标ID
|
|
|
+ var config cross_variety.ChartConfigReq
|
|
|
+ e := json.Unmarshal([]byte(chartInfo.ExtraConfig), &config)
|
|
|
+ if e != nil {
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ if utils.InArrayByInt(config.VarietyList, tag.ChartVarietyId) {
|
|
|
+ chartInfoCrossMap[crossItem.ChartInfoId] = struct{}{}
|
|
|
+ chartInfoCrossList = append(chartInfoCrossList, crossItem)
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -327,17 +362,6 @@ func InitChartCrossVariety() {
|
|
|
chartInfoCrossList = make([]*cross_variety.ChartInfoCrossVariety, 0)
|
|
|
}
|
|
|
|
|
|
- /*// 查询图表信息
|
|
|
- chartInfoList, e := data_manage.GetChartInfoByChartInfoIds(chartIds)
|
|
|
- if e != nil {
|
|
|
- err = fmt.Errorf("查询图表信息列表失败 Err:%s", e)
|
|
|
- return
|
|
|
- }
|
|
|
- chartInfoMap := make(map[int]*data_manage.ChartInfo)
|
|
|
- for _, v := range chartInfoList {
|
|
|
- chartInfoMap[v.ChartInfoId] = v
|
|
|
- }
|
|
|
- */
|
|
|
//查询引用关系列表,
|
|
|
chartEdbRelationList, e := data_manage.GetEdbInfoRelationByReferObjectIds(chartIds, utils.EDB_RELATION_CHART)
|
|
|
if e != nil {
|
|
@@ -358,7 +382,10 @@ func InitChartCrossVariety() {
|
|
|
if !ok2 {
|
|
|
continue
|
|
|
}
|
|
|
- //todo 引用时间
|
|
|
+ // 去掉预测指标
|
|
|
+ if edbInfo.EdbInfoType == 1 {
|
|
|
+ continue
|
|
|
+ }
|
|
|
tmp := &data_manage.EdbInfoRelation{
|
|
|
ReferObjectId: item.ChartInfoId,
|
|
|
ReferObjectType: utils.EDB_RELATION_CHART,
|
|
@@ -386,7 +413,7 @@ func InitChartCrossVariety() {
|
|
|
continue
|
|
|
}
|
|
|
name1 := fmt.Sprintf("%d-%d", item.ChartInfoId, childEdbMapping.FromEdbInfoId)
|
|
|
- if _, ok2 := existRelationMap[name1]; !ok2 { //如果已经被直接引用了,则无需添加到间接引用记录中
|
|
|
+ if _, ok2 := existRelationMap[name1]; ok2 { //如果已经被直接引用了,则无需添加到间接引用记录中
|
|
|
continue
|
|
|
}
|
|
|
|
|
@@ -531,6 +558,10 @@ func InitCalendarIndicatorRelation() {
|
|
|
existRelationMap[name] = struct{}{}
|
|
|
}
|
|
|
for edbInfoId, edbInfo := range edbInfoMap {
|
|
|
+ // 去掉预测指标
|
|
|
+ if edbInfo.EdbInfoType == 1 {
|
|
|
+ continue
|
|
|
+ }
|
|
|
nowTime := time.Now()
|
|
|
items, ok := edbInfoMatterMap[edbInfoId]
|
|
|
if ok {
|
|
@@ -564,7 +595,7 @@ func InitCalendarIndicatorRelation() {
|
|
|
continue
|
|
|
}
|
|
|
name1 := fmt.Sprintf("%d-%d", v.FeCalendarMatterId, childEdbMapping.FromEdbInfoId)
|
|
|
- if _, ok2 := existRelationMap[name1]; !ok2 { //如果已经被直接引用了,则无需添加到间接引用记录中
|
|
|
+ if _, ok2 := existRelationMap[name1]; ok2 { //如果已经被直接引用了,则无需添加到间接引用记录中
|
|
|
continue
|
|
|
}
|
|
|
tmp1 := &data_manage.EdbInfoRelation{
|
|
@@ -704,7 +735,10 @@ func InitExcelEdbRelation() {
|
|
|
if !ok2 {
|
|
|
continue
|
|
|
}
|
|
|
- //todo 引用时间
|
|
|
+ // 去掉预测指标
|
|
|
+ if edbInfo.EdbInfoType == 1 {
|
|
|
+ continue
|
|
|
+ }
|
|
|
tmp := &data_manage.EdbInfoRelation{
|
|
|
ReferObjectId: v.ExcelInfoId,
|
|
|
ReferObjectType: utils.EDB_RELATION_TABLE,
|
|
@@ -732,7 +766,7 @@ func InitExcelEdbRelation() {
|
|
|
continue
|
|
|
}
|
|
|
name1 := fmt.Sprintf("%d-%d", v.ExcelInfoId, childEdbMapping.FromEdbInfoId)
|
|
|
- if _, ok2 := existRelationMap[name1]; !ok2 { //如果已经被直接引用了,则无需添加到间接引用记录中
|
|
|
+ if _, ok2 := existRelationMap[name1]; ok2 { //如果已经被直接引用了,则无需添加到间接引用记录中
|
|
|
continue
|
|
|
}
|
|
|
tmp1 := &data_manage.EdbInfoRelation{
|
|
@@ -886,7 +920,10 @@ func InitSandBoxEdbRelation() {
|
|
|
if !ok2 {
|
|
|
continue
|
|
|
}
|
|
|
- //todo 引用时间
|
|
|
+ // 去掉预测指标
|
|
|
+ if edbInfo.EdbInfoType == 1 {
|
|
|
+ continue
|
|
|
+ }
|
|
|
tmp := &data_manage.EdbInfoRelation{
|
|
|
ReferObjectId: v.SandboxId,
|
|
|
ReferObjectType: utils.EDB_RELATION_SANDBOX,
|
|
@@ -913,7 +950,7 @@ func InitSandBoxEdbRelation() {
|
|
|
continue
|
|
|
}
|
|
|
name1 := fmt.Sprintf("%d-%d", v.SandboxId, childEdbMapping.FromEdbInfoId)
|
|
|
- if _, ok2 := existRelationMap[name1]; !ok2 { //如果已经被直接引用了,则无需添加到间接引用记录中
|
|
|
+ if _, ok2 := existRelationMap[name1]; ok2 { //如果已经被直接引用了,则无需添加到间接引用记录中
|
|
|
continue
|
|
|
}
|
|
|
tmp1 := &data_manage.EdbInfoRelation{
|