|
@@ -1397,6 +1397,11 @@ func GetPredictDataListByPredictEdbConfList(edbInfo, sourceEdbInfoItem *EdbInfo,
|
|
|
|
|
|
// GetPredictEdbDataListAll 获取该预测指标所有的数据 ,order:1升序,其余值为降序
|
|
|
func GetPredictEdbDataListAll(edbInfo *EdbInfo, order int) (items []*EdbInfoSearchData, err error) {
|
|
|
+ items, err = GetEdbDataListAll(edbInfo.Source, edbInfo.SubSource, FindEdbDataListAllCond{
|
|
|
+ EdbInfoId: edbInfo.EdbInfoId,
|
|
|
+ }, order)
|
|
|
+
|
|
|
+ return
|
|
|
if edbInfo.Source == utils.DATA_SOURCE_PREDICT { //普通的预测指标是没有入库数据的,直接往配置里面获取
|
|
|
items, _, err, _ = GetPredictDataListByPredictEdbInfo(edbInfo, 1, "")
|
|
|
} else {
|