|
@@ -145,7 +145,7 @@ type EdbDataList struct {
|
|
|
// GetEdbDataList 获取指标的数据(日期正序返回)
|
|
|
func GetEdbDataList(source, subSource, edbInfoId int, startDate, endDate string) (list []*EdbDataList, err error) {
|
|
|
// 自有数据需要额外处理(从mongo获取)
|
|
|
- if source == utils.DATA_SOURCE_BUSINESS {
|
|
|
+ if source == utils.DATA_SOURCE_BUSINESS && utils.UseMongo {
|
|
|
return getEdbDataListByMongo(source, subSource, edbInfoId, startDate, endDate)
|
|
|
}
|
|
|
|