123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863 |
- package data_manage
- import (
- "encoding/json"
- "eta/eta_mobile/models/data_manage/line_equation/request"
- "eta/eta_mobile/models/mgo"
- "eta/eta_mobile/services/alarm_msg"
- "eta/eta_mobile/utils"
- "fmt"
- "github.com/beego/beego/v2/client/orm"
- "github.com/rdlucklib/rdluck_tools/paging"
- "go.mongodb.org/mongo-driver/bson"
- "strconv"
- "strings"
- "time"
- )
- type EdbInfo struct {
- EdbInfoId int `orm:"column(edb_info_id);pk"`
- EdbInfoType int `description:"指标类型,0:普通指标,1:预测指标"`
- SourceName string `description:"来源名称"`
- Source int `description:"来源id"`
- EdbCode string `description:"指标编码"`
- EdbName string `description:"指标名称"`
- EdbNameEn string `description:"英文指标名称"`
- EdbNameSource string `description:"指标名称来源"`
- Frequency string `description:"频率"`
- Unit string `description:"单位"`
- UnitEn string `description:"英文单位"`
- StartDate string `description:"起始日期"`
- EndDate string `description:"终止日期"`
- ClassifyId int `description:"分类id"`
- SysUserId int
- SysUserRealName string
- UniqueCode string `description:"指标唯一编码"`
- CreateTime time.Time
- ModifyTime time.Time
- MinValue float64 `description:"指标最小值"`
- MaxValue float64 `description:"指标最大值"`
- CalculateFormula string `description:"计算公式"`
- EdbType int `description:"指标类型:1:基础指标,2:计算指标"`
- Sort int `description:"排序字段"`
- LatestDate string `description:"数据最新日期(实际日期)"`
- LatestValue float64 `description:"数据最新值(实际值)"`
- EndValue float64 `description:"数据的最新值(预测日期的最新值)"`
- MoveType int `description:"移动方式:1:领先(默认),2:滞后"`
- MoveFrequency string `description:"移动频度"`
- NoUpdate int8 `description:"是否停止更新,0:继续更新;1:停止更新"`
- ServerUrl string `description:"服务器地址"`
- ChartImage string `description:"图表图片"`
- Calendar string `description:"公历/农历" orm:"default(公历);"`
- DataDateType string `orm:"column(data_date_type);size(255);null;default(交易日)"`
- ManualSave int `description:"是否有手动保存过上下限: 0-否; 1-是"`
- EmptyType int `description:"空值处理类型(0查找前后35天,1不计算,2前值填充,3后值填充,4等于0)"`
- MaxEmptyType int `description:"MAX、MIN公式空值处理类型(1、等于0;2、跳过空值)"`
- TerminalCode string `description:"终端编码,用于配置在机器上"`
- DataUpdateTime string `description:"最近一次数据发生变化的时间"`
- ErDataUpdateDate string `description:"本次更新,数据发生变化的最早日期"`
- SourceIndexName string `description:"数据源中的指标名称"`
- SubSource int `description:"子数据来源:0:经济数据库,1:日期序列"`
- SubSourceName string `description:"子数据来源名称"`
- IndicatorCode string `description:"指标代码"`
- StockCode string `description:"证券代码"`
- Extra string `description:"指标额外配置"`
- IsJoinPermission int `description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
- }
- type EdbInfoFullClassify struct {
- *EdbInfo
- CorrelationStr string `description:"相关性系数字符串"`
- ClassifyList []*EdbClassifyIdItems
- HaveOperaAuth bool `description:"是否有数据权限,默认:false"`
- }
- func AddEdbInfo(item *EdbInfo) (lastId int64, err error) {
- o := orm.NewOrmUsingDB("data")
- lastId, err = o.Insert(item)
- return
- }
- type BaseEdbNameItem struct {
- EdbInfoId int `description:"指标id"`
- EdbInfoType int `description:"指标类型,0:普通指标,1:预测指标"`
- SourceName string `description:"来源名称"`
- Source int `description:"来源id"`
- EdbCode string `description:"指标编码"`
- EdbName string `description:"指标名称"`
- EdbNameEn string `description:"指标英文名称"`
- Frequency string `description:"频率"`
- Unit string `description:"单位"`
- UnitEn string `description:"英文单位"`
- HaveOperaAuth bool `description:"是否有数据权限,默认:false"`
- }
- type BaseEdbInfoResp struct {
- List []*BaseEdbNameItem
- }
- // GetEdbInfoAll 用于分类展示
- func GetEdbInfoAll(edbInfoType uint8) (items []*EdbClassifyItems, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT edb_info_id,classify_id,edb_name_source AS classify_name,edb_name_en AS classify_name_en,unique_code,source_name,source,sys_user_id,sys_user_real_name,start_date,edb_code,edb_type FROM edb_info WHERE edb_info_type = ? order by sort asc,edb_info_id asc`
- _, err = o.Raw(sql, edbInfoType).QueryRows(&items)
- return
- }
- // GetPredictEdbInfoAll 用于分类展示(预测指标)
- func GetPredictEdbInfoAll(edbInfoType uint8) (items []*EdbClassifyItems, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT edb_info_id,classify_id,edb_name AS classify_name,edb_name_en AS classify_name_en,unique_code,source_name,source,sys_user_id,sys_user_real_name,start_date,edb_code,edb_type FROM edb_info WHERE edb_info_type = ? order by sort asc,edb_info_id asc`
- _, err = o.Raw(sql, edbInfoType).QueryRows(&items)
- return
- }
- // 用于分类展示
- func GetEdbInfoAllList() (items []*EdbInfo, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info `
- _, err = o.Raw(sql).QueryRows(&items)
- return
- }
- // 指标检索数据
- type EdbInfoSearch struct {
- EdbCode string `description:"指标编码"`
- StartDate string `description:"起始日期"`
- EndDate string `description:"终止日期"`
- EdbName string `description:"指标名称"`
- Unit string `description:"单位"`
- Frequency string `description:"频率"`
- DataList []*EdbInfoSearchData
- StockList []*StockInfo `description:"时序数据"`
- }
- type StockInfo struct {
- StockCode string
- EdbCode string
- DataList []*EdbInfoSearchData
- }
- type EdbInfoSearchData struct {
- DataTime string `description:"数据日期"`
- Value float64 `description:"数据"`
- }
- type BaseIndexInfo struct {
- IndexName string `description:"数据日期"`
- Unit string `description:"单位"`
- Frequency string `description:"频率"`
- }
- type EdbInfoSearchResp struct {
- SearchItem *EdbInfoSearch `description:"指标分类"`
- Status int `description:"1:数据已存在于弘则数据库,2:新数据,3:数据已存在于弘则数据库,但是当前账号无权限"`
- ClassifyList []*EdbClassifySimplify
- StockSearchList []*EdbInfoSearch
- }
- func GetEdbInfoByEdbCode(source int, edbCode string) (item *EdbInfo, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE source=? AND edb_code=? `
- err = o.Raw(sql, source, edbCode).QueryRow(&item)
- return
- }
- func GetEdbInfoById(edbInfoId int) (item *EdbInfo, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE edb_info_id=? `
- err = o.Raw(sql, edbInfoId).QueryRow(&item)
- return
- }
- // GetEdbInfoByUniqueCode
- // @Description: 根据uniqueCode获取指标详情
- // @author: Roc
- // @datetime 2024-01-18 13:40:01
- // @param uniqueCode string
- // @return item *EdbInfo
- // @return err error
- func GetEdbInfoByUniqueCode(uniqueCode string) (item *EdbInfo, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE unique_code=? `
- err = o.Raw(sql, uniqueCode).QueryRow(&item)
- return
- }
- // GetEdbInfoByIdList 根据指标id集合 获取 指标列表
- func GetEdbInfoByIdList(edbInfoIdList []int) (items []*EdbInfo, err error) {
- num := len(edbInfoIdList)
- if num <= 0 {
- return
- }
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE edb_info_id in (` + utils.GetOrmInReplace(num) + `) `
- _, err = o.Raw(sql, edbInfoIdList).QueryRows(&items)
- return
- }
- type AddEdbInfoReq struct {
- Source int `description:"来源id"`
- EdbCode string `description:"指标编码"`
- EdbName string `description:"指标名称"`
- Frequency string `description:"频率"`
- Unit string `description:"单位"`
- ClassifyId int `description:"分类id"`
- StartDate string `description:"起始日期"`
- EndDate string `description:"终止日期"`
- }
- func DeleteEdbInfoAndData(edbInfoId, source, subSource int) (err error) {
- o := orm.NewOrmUsingDB("data")
- to, err := o.Begin()
- if err != nil {
- return
- }
- defer func() {
- if err != nil {
- _ = to.Rollback()
- } else {
- _ = to.Commit()
- }
- }()
- // 删除指标信息
- sql := ` DELETE FROM edb_info WHERE edb_info_id=? `
- _, err = to.Raw(sql, edbInfoId).Exec()
- if err != nil {
- return
- }
- // 删除指标的明细数据
- if source == utils.DATA_SOURCE_BUSINESS && utils.UseMongo {
- err = deleteAllEdbDataByMongo(to, edbInfoId, source, subSource)
- } else if source == utils.DATA_SOURCE_THS && subSource == utils.DATA_SUB_SOURCE_HIGH_FREQUENCY && utils.UseMongo {
- mogDataObj := mgo.EdbDataThsHf{}
- err = mogDataObj.RemoveMany(bson.M{"edb_info_id": edbInfoId})
- } else {
- err = deleteAllEdbDataByMysql(to, edbInfoId, source, subSource)
- }
- if err != nil {
- return
- }
- //calculateTableName := GetEdbInfoCalculateTableName(source)
- //if calculateTableName != "" {
- // sql = ` DELETE FROM %s WHERE edb_info_id=? `
- // sql = fmt.Sprintf(sql, calculateTableName)
- // _, err = to.Raw(sql, edbInfoId).Exec()
- // return
- //}
- //return
- // 删除计算指标的关系
- sql = ` DELETE FROM edb_info_calculate_mapping WHERE edb_info_id=? `
- _, err = to.Raw(sql, edbInfoId).Exec()
- // 删除预测指标的配置
- sql = ` DELETE FROM predict_edb_conf WHERE predict_edb_info_id=? `
- _, err = to.Raw(sql, edbInfoId).Exec()
- return
- }
- // deleteAllEdbDataByMysql
- // @Description: 删除指标的明细数据(mysql)
- // @author: Roc
- // @datetime 2024-05-09 13:31:54
- // @param to orm.TxOrmer
- // @param edbInfoId int
- // @param source int
- // @param subSource int
- // @return err error
- func deleteAllEdbDataByMysql(to orm.TxOrmer, edbInfoId, source, subSource int) (err error) {
- tableName := GetEdbDataTableName(source, subSource)
- if tableName == `` {
- return
- }
- sql := fmt.Sprintf(` DELETE FROM %s WHERE edb_info_id=? `, tableName)
- _, err = to.Raw(sql, edbInfoId).Exec()
- return
- }
- // deleteAllEdbDataByMongo
- // @Description: 删除指标的明细数据(mongo)
- // @author: Roc
- // @datetime 2024-05-09 13:31:37
- // @param to orm.TxOrmer
- // @param edbInfoId int
- // @param source int
- // @param subSource int
- // @return err error
- func deleteAllEdbDataByMongo(to orm.TxOrmer, edbInfoId, source, subSource int) (err error) {
- mogDataObj := mgo.EdbDataBusiness{}
- err = mogDataObj.RemoveMany(bson.M{"edb_info_id": edbInfoId})
- return
- }
- func GetEdbInfoCountByCondition(condition string, pars []interface{}) (count int, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT COUNT(1) AS count FROM edb_info WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- err = o.Raw(sql, pars).QueryRow(&count)
- return
- }
- type EditEdbInfoReq struct {
- EdbInfoId int `description:"指标ID"`
- EdbName string `description:"指标名称"`
- Frequency string `description:"频率"`
- Unit string `description:"单位"`
- ClassifyId int `description:"分类id"`
- CalculateFormula string `description:"计算公式"`
- }
- type EditEdbEnInfoReq struct {
- EdbInfoId int `description:"指标ID"`
- EdbNameEn string `description:"英文指标名称"`
- UnitEn string `description:"英文单位"`
- }
- // EditEdbBaseInfoReq
- // @Description: 修改指标基础信息请求参数
- type EditEdbBaseInfoReq struct {
- EdbInfoId int `description:"指标ID"`
- EdbName string `description:"指标名称"`
- Unit string `description:"指标单位"`
- }
- func ModifyEdbInfo(item *EditEdbInfoReq) (err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` UPDATE edb_info
- SET
- edb_name =?,
- edb_name_source =?,
- frequency = ?,
- unit = ?,
- classify_id = ?,
- modify_time = NOW()
- WHERE edb_info_id = ?`
- _, err = o.Raw(sql, item.EdbName, item.EdbName, item.Frequency, item.Unit, item.ClassifyId, item.EdbInfoId).Exec()
- return
- }
- // ModifyEdbEnInfo 修改指标英文信息
- func ModifyEdbEnInfo(item *EditEdbEnInfoReq) (err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` UPDATE edb_info
- SET
- edb_name_en =?,
- unit_en = ?,
- modify_time = NOW()
- WHERE edb_info_id = ?`
- _, err = o.Raw(sql, item.EdbNameEn, item.UnitEn, item.EdbInfoId).Exec()
- return
- }
- type EdbInfoList struct {
- EdbInfoId int `orm:"column(edb_info_id);pk"`
- EdbInfoType int `description:"指标类型,0:普通指标,1:预测指标"`
- SourceName string `description:"来源名称"`
- Source int `description:"来源id"`
- EdbCode string `description:"指标编码"`
- EdbNameEn string `description:"英文指标名称"`
- EdbName string `description:"指标名称"`
- Frequency string `description:"频率"`
- FrequencyEn string `description:"英文频率"`
- Unit string `description:"单位"`
- UnitEn string `description:"英文单位"`
- StartDate string `description:"起始日期"`
- EndDate string `description:"终止日期"`
- LatestDate string `description:"数据最新日期(实际日期)"`
- LatestValue float64 `description:"数据最新值(实际值)"`
- EndValue float64 `description:"数据的最新值(预测日期的最新值)"`
- ClassifyId int `description:"分类id"`
- UniqueCode string `description:"指标唯一编码"`
- SysUserId int `description:"创建人id"`
- SysUserRealName string `description:"创建人姓名"`
- ModifyTime string `description:"最新修改时间"`
- CreateTime string `description:"创建时间"`
- EdbNameAlias string `json:"-" description:"指标名称,别名"`
- EdbType int `description:"指标类型:1:基础指标,2:计算指标"`
- ChartImage string `description:"图表图片"`
- RuleType int `description:"预测规则,1:最新,2:固定值"`
- FixedValue float64 `description:"固定值"`
- DataList []*EdbData `description:"实际指标数据"`
- PredictDataList []*EdbData `description:"预测指标数据"`
- Button EdbClassifyItemsButton `description:"操作权限"`
- IsEnEdb bool `description:"是否展示英文标识"`
- DataInsertConfig EdbDataInsertConfigItem `description:"指标数据插入配置"`
- DataDateType string `description:"数据日期类型,枚举值:交易日、自然日"`
- EmptyType int `description:"空值处理类型(0查找前后35天,1不计算,2前值填充,3后值填充,4等于0)"`
- MaxEmptyType int `description:"MAX、MIN公式空值处理类型(1、等于0;2、跳过空值)"`
- SubSource int `description:"子数据来源:0:经济数据库,1:日期序列"`
- SubSourceName string `description:"子数据来源名称"`
- IndicatorCode string `description:"指标代码"`
- StockCode string `description:"证券代码"`
- NoUpdate int8 `description:"是否停止更新,0:继续更新;1:停止更新"`
- IsJoinPermission int `description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
- HaveOperaAuth bool `description:"是否有数据权限,默认:false"`
- }
- type EdbDataInsertConfigItem struct {
- Date string `description:"插入的日期"`
- RealDate string `description:"实际最晚的日期"`
- Value string `description:"插入的值"`
- }
- type EdbData struct {
- EdbDataId int `orm:"column(edb_data_id);pk"`
- EdbInfoId int
- DataTime string
- Value float64
- }
- type EdbInfoListResp struct {
- Paging *paging.PagingItem
- Item *EdbInfoList
- ClassifyList []*EdbClassifyIdItems
- }
- func GetEdbInfoByCondition(condition string, pars []interface{}) (item *EdbInfoList, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- err = o.Raw(sql, pars).QueryRow(&item)
- return
- }
- func GetEdbDataCountByCondition(condition string, pars []interface{}, source, subSource int) (count int, err error) {
- o := orm.NewOrmUsingDB("data")
- tableName := GetEdbDataTableName(source, subSource)
- sql := ` SELECT COUNT(1) AS count FROM %s WHERE 1=1 `
- sql = fmt.Sprintf(sql, tableName)
- if condition != "" {
- sql += condition
- }
- err = o.Raw(sql, pars).QueryRow(&count)
- return
- }
- func GetEdbDataListByCondition(condition string, pars []interface{}, source, subSource, pageSize, startSize int) (item []*EdbData, err error) {
- o := orm.NewOrmUsingDB("data")
- tableName := GetEdbDataTableName(source, subSource)
- sql := ` SELECT * FROM %s WHERE 1=1 `
- sql = fmt.Sprintf(sql, tableName)
- if condition != "" {
- sql += condition
- }
- sql += ` ORDER BY data_time DESC `
- sql += ` LIMIT ?,? `
- _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&item)
- return
- }
- // GetAllEdbDataListByCondition 根据条件获取所有的数据
- func GetAllEdbDataListByCondition(condition string, pars []interface{}, source, subSource int) (item []*EdbData, err error) {
- o := orm.NewOrmUsingDB("data")
- tableName := GetEdbDataTableName(source, subSource)
- sql := ` SELECT * FROM %s WHERE 1=1 `
- sql = fmt.Sprintf(sql, tableName)
- if condition != "" {
- sql += condition
- }
- sql += ` ORDER BY data_time DESC `
- _, err = o.Raw(sql, pars).QueryRows(&item)
- return
- }
- func GetEdbInfoByNewest() (item *EdbInfoList, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE 1=1 ORDER BY modify_time DESC LIMIT 1 `
- err = o.Raw(sql).QueryRow(&item)
- return
- }
- func ModifyEdbInfoModifyTime(edbInfoId int64) (err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` UPDATE edb_info SET modify_time = NOW() WHERE edb_info_id = ? `
- _, err = o.Raw(sql, edbInfoId).Exec()
- return
- }
- type MoveEdbInfoReq struct {
- EdbInfoId int `description:"指标ID"`
- PrevEdbInfoId int `description:"上一个指标ID"`
- NextEdbInfoId int `description:"下一个指标ID"`
- ClassifyId int `description:"分类id"`
- }
- func MoveEdbInfo(edbInfoId, classifyId int) (err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` UPDATE edb_info
- SET
- classify_id = ?
- WHERE edb_info_id = ?`
- _, err = o.Raw(sql, classifyId, edbInfoId).Exec()
- return
- }
- // GetEdbInfoByName 根据名称获取普通的指标
- func GetEdbInfoByName(edbName string) (items []*EdbInfoList, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE edb_name=? AND edb_info_type = 0 `
- _, err = o.Raw(sql, edbName).QueryRows(&items)
- return
- }
- // GetPredictEdbInfoByName 根据指标名称获取预测指标
- func GetPredictEdbInfoByName(edbName string) (items []*EdbInfoList, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE edb_name=? AND edb_info_type = 1 `
- _, err = o.Raw(sql, edbName).QueryRows(&items)
- return
- }
- func GetEdbInfoByEnName(edbNameEn string) (items []*EdbInfoList, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE edb_name_en=? AND edb_info_type = 0 `
- _, err = o.Raw(sql, edbNameEn).QueryRows(&items)
- return
- }
- func ModifyEdbInfoNameSource(edbNameSource string, edbInfoId int) (err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` UPDATE edb_info SET edb_name_source=? WHERE edb_info_id = ? `
- _, err = o.Raw(sql, edbNameSource, edbInfoId).Exec()
- return
- }
- func GetChartEdbMappingCount(edbInfoId int) (count int, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT COUNT(1) AS count FROM chart_edb_mapping WHERE edb_info_id=? `
- err = o.Raw(sql, edbInfoId).QueryRow(&count)
- return
- }
- type ChartEdbInfo struct {
- EdbInfoId int `description:"指标id"`
- EdbName string `description:"指标名称"`
- SourceName string `json:"-"`
- EdbNameAlias string `json:"-" description:"指标名称,别名"`
- }
- func EdbInfoSearchByKeyWord(keyword string) (searchList []*ChartEdbInfo, err error) {
- pars := make([]interface{}, 0)
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT edb_info_id,edb_name,source_name FROM edb_info WHERE 1=1 AND edb_info_type = 0 `
- if keyword != "" {
- sql += ` AND (edb_name LIKE ? OR edb_code LIKE ? ) `
- pars = append(pars, utils.GetLikeKeyword(keyword), utils.GetLikeKeyword(keyword))
- }
- sql += ` ORDER BY create_time DESC `
- _, err = o.Raw(sql, pars...).QueryRows(&searchList)
- return
- }
- type EdbInfoMaxAndMinInfo struct {
- MinDate string `description:"最小日期"`
- MaxDate string `description:"最大日期"`
- MinValue float64 `description:"最小值"`
- MaxValue float64 `description:"最大值"`
- LatestValue float64 `description:"最新值"`
- }
- // GetEdbInfoMaxAndMinInfo
- // @Description: 获取指标最大最小值
- // @author: Roc
- // @datetime 2024-05-07 15:34:00
- // @param source int
- // @param subSource int
- // @param edbCode string
- // @return item *EdbInfoMaxAndMinInfo
- // @return err error
- func GetEdbInfoMaxAndMinInfo(source, subSource int, edbCode string) (item *EdbInfoMaxAndMinInfo, err error) {
- // 自有数据需要额外处理(从mongo获取)
- if source == utils.DATA_SOURCE_BUSINESS && utils.UseMongo {
- return GetEdbInfoMaxAndMinInfoByMongo(source, subSource, edbCode)
- }
- if source == utils.DATA_SOURCE_THS && subSource == utils.DATA_SUB_SOURCE_HIGH_FREQUENCY && utils.UseMongo {
- return GetThsHfEdbInfoMaxAndMinInfoByMongo(source, subSource, edbCode)
- }
- // 默认走mysql
- return GetEdbInfoMaxAndMinInfoByMysql(source, subSource, edbCode)
- }
- // GetEdbInfoMaxAndMinInfoByMysql
- // @Description: 从mysql中获取指标最大最小值
- // @author: Roc
- // @datetime 2024-05-07 15:33:43
- // @param source int
- // @param subSource int
- // @param edbCode string
- // @return item *EdbInfoMaxAndMinInfo
- // @return err error
- func GetEdbInfoMaxAndMinInfoByMysql(source, subSource int, edbCode string) (item *EdbInfoMaxAndMinInfo, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ``
- tableName := GetEdbDataTableName(source, subSource)
- sql = ` SELECT MIN(data_time) AS min_date,MAX(data_time) AS max_date,MIN(value) AS min_value,MAX(value) AS max_value FROM %s WHERE edb_code=? `
- sql = fmt.Sprintf(sql, tableName)
- err = o.Raw(sql, edbCode).QueryRow(&item)
- if err != nil {
- return
- }
- var latest_value float64
- sql = ` SELECT value AS latest_value FROM %s WHERE edb_code=? ORDER BY data_time DESC LIMIT 1 `
- sql = fmt.Sprintf(sql, tableName)
- err = o.Raw(sql, edbCode).QueryRow(&latest_value)
- item.LatestValue = latest_value
- return
- }
- // GetEdbInfoMaxAndMinInfoByMongo
- // @Description: 从mongo中获取指标最大最小值
- // @author: Roc
- // @datetime 2024-05-07 15:33:53
- // @param source int
- // @param subSource int
- // @param edbCode string
- // @return item *EdbInfoMaxAndMinInfo
- // @return err error
- func GetEdbInfoMaxAndMinInfoByMongo(source, subSource int, edbCode string) (item *EdbInfoMaxAndMinInfo, err error) {
- mogDataObj := new(mgo.EdbDataBusiness)
- pipeline := []bson.M{
- {"$match": bson.M{"edb_code": edbCode}},
- {"$group": bson.M{
- "_id": nil,
- "min_date": bson.M{"$min": "$data_time"},
- "max_date": bson.M{"$max": "$data_time"},
- "min_value": bson.M{"$min": "$value"},
- "max_value": bson.M{"$max": "$value"},
- }},
- {"$project": bson.M{"_id": 0}}, // 可选,如果不需要_id字段
- }
- result, err := mogDataObj.GetEdbInfoMaxAndMinInfo(pipeline)
- if err != nil {
- fmt.Println("EdbDataBusiness getEdbDataBusinessList Err:" + err.Error())
- return
- }
- if !result.MaxDate.IsZero() {
- whereQuery := bson.M{"edb_code": edbCode, "data_time": result.MaxDate}
- selectParam := bson.D{{"value", 1}, {"_id", 0}}
- latestValue, tmpErr := mogDataObj.GetLatestValue(whereQuery, selectParam)
- if tmpErr != nil {
- err = tmpErr
- return
- }
- result.LatestValue = latestValue.Value
- result.EndValue = latestValue.Value
- }
- item = &EdbInfoMaxAndMinInfo{
- MinDate: result.MinDate.Format(utils.FormatDate),
- MaxDate: result.MaxDate.Format(utils.FormatDate),
- MinValue: result.MinValue,
- MaxValue: result.MaxValue,
- LatestValue: result.LatestValue,
- }
- return
- }
- func ModifyEdbInfoMaxAndMinInfo(edbInfoId int, item *EdbInfoMaxAndMinInfo) (err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` UPDATE edb_info SET start_date=?,end_date=?,min_value=?,max_value=?,is_update=2,latest_date=?,latest_value=?,modify_time=NOW() WHERE edb_info_id=? `
- _, err = o.Raw(sql, item.MinDate, item.MaxDate, item.MinValue, item.MaxValue, item.MaxDate, item.LatestValue, edbInfoId).Exec()
- return
- }
- func GetEdbInfoFilter(condition string, pars []interface{}) (list []*EdbInfoList, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE 1=1 AND edb_info_type = 0 `
- if condition != "" {
- sql += condition
- }
- sql += ` ORDER BY create_time DESC `
- _, err = o.Raw(sql, pars).QueryRows(&list)
- return
- }
- type AddEdbInfoResp struct {
- EdbInfoId int `description:"指标ID"`
- UniqueCode string `description:"指标唯一编码"`
- ClassifyId int `description:"分类id"`
- ExistEdbName []string `description:"重复指标名称"`
- }
- // GetEdbInfoCalculateListByCondition 获取指标关系列表
- func GetEdbInfoCalculateListByCondition(condition string, pars []interface{}) (items []*EdbInfoCalculateMapping, err error) {
- o := orm.NewOrmUsingDB("data")
- //calculateTableName := GetEdbInfoCalculateTableName(source)
- //if calculateTableName == "" {
- // err = errors.New("无效的表名")
- // return
- //}
- sql := ` SELECT * FROM edb_info_calculate_mapping WHERE 1=1 `
- //sql = fmt.Sprintf(sql, calculateTableName)
- if condition != "" {
- sql += condition
- }
- _, err = o.Raw(sql, pars).QueryRows(&items)
- return
- }
- // GetEdbInfoAllCalculateByEdbInfoIdList 根据指标id集合 获取基础指标对应的所有计算指标
- func GetEdbInfoAllCalculateByEdbInfoIdList(edbInfoIdList []int) (list []*EdbInfo, err error) {
- num := len(edbInfoIdList)
- if num <= 0 {
- return
- }
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT b.* FROM edb_info_calculate_mapping AS a
- INNER JOIN edb_info AS b ON a.edb_info_id=b.edb_info_id
- WHERE a.from_edb_info_id in (` + utils.GetOrmInReplace(num) + `)
- GROUP BY a.edb_info_id
- ORDER BY a.edb_info_id ASC `
- _, err = o.Raw(sql, edbInfoIdList).QueryRows(&list)
- return
- }
- func GetRefreshEdbInfoFromBase(edbInfoId, source int) (baseEdbInfoArr, calculateInfoArr []*EdbInfo, err error) {
- calculateList, err := GetEdbInfoCalculateMap(edbInfoId, source)
- if err != nil && err.Error() != utils.ErrNoRow() {
- return
- }
- for _, item := range calculateList {
- if item.EdbInfoId == edbInfoId { // 如果查出来关联的指标就是自己的话,那么就过滤
- continue
- }
- if item.EdbType == 1 {
- baseEdbInfoArr = append(baseEdbInfoArr, item)
- } else {
- calculateInfoArr = append(calculateInfoArr, item)
- newBaseEdbInfoArr, newCalculateInfoArr, _ := GetRefreshEdbInfoFromBase(item.EdbInfoId, item.Source)
- baseEdbInfoArr = append(baseEdbInfoArr, newBaseEdbInfoArr...)
- calculateInfoArr = append(calculateInfoArr, newCalculateInfoArr...)
- }
- }
- return
- }
- func ModifyEdbInfoDataStatus(edbInfoId int64, source, subSource int, edbCode string) (err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ``
- tableName := GetEdbDataTableName(source, subSource)
- sql = ` UPDATE %s SET edb_info_id=?,modify_time=NOW() WHERE edb_code=? `
- sql = fmt.Sprintf(sql, tableName)
- _, err = o.Raw(sql, edbInfoId, edbCode).Exec()
- return
- }
- // GetFirstEdbInfoByClassifyId 获取当前分类下,且排序数相同 的排序第一条的数据
- func GetFirstEdbInfoByClassifyId(classifyId int) (item *EdbInfo, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE classify_id=? order by sort asc,edb_info_id asc limit 1`
- err = o.Raw(sql, classifyId).QueryRow(&item)
- return
- }
- // UpdateEdbInfoSortByClassifyId 根据分类id更新排序
- func UpdateEdbInfoSortByClassifyId(classifyId, nowSort int, prevEdbInfoId int, updateSort string) (err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` update edb_info set sort = ` + updateSort + ` WHERE classify_id=?`
- if prevEdbInfoId > 0 {
- sql += ` AND ( sort > ? or ( edb_info_id > ` + fmt.Sprint(prevEdbInfoId) + ` and sort=` + fmt.Sprint(nowSort) + ` )) `
- } else {
- sql += ` AND ( sort > ? )`
- }
- _, err = o.Raw(sql, classifyId, nowSort).Exec()
- return
- }
- // Update 更新指标基础信息
- func (edbInfo *EdbInfo) Update(cols []string) (err error) {
- o := orm.NewOrmUsingDB("data")
- _, err = o.Update(edbInfo, cols...)
- return
- }
- type EdbInfoDataResp struct {
- EdbInfo *EdbInfo
- DataList []*EdbDataList
- }
- type EdbInfoDataFullClassifyResp struct {
- EdbInfo *EdbInfoFullClassify
- DataList []*EdbDataList
- }
- type EdbInfoReplaceReq struct {
- OldEdbInfoId int `description:"原指标ID"`
- NewEdbInfoId int `description:"替换为指标ID"`
- }
- // EdbInfoReplaceV2 替换指标v2版本(更换时间:2022年01月05日15:33:42)
- //func EdbInfoReplaceV2(oldEdbInfo, newEdbInfo *EdbInfo, sysAdminId int, sysAdminRealName string) (mappingList,replaceChartTotal, replaceCalculateTotal int, err error) {
- // defer func() {
- // if err != nil {
- // fmt.Println("ERR:", err.Error())
- // }
- // }()
- //
- // // 替换关联表中的source_edb_info_id
- // mappingList, replaceChartTotal, replaceCalculateTotal, err := replaceChartEdb(oldEdbInfo, newEdbInfo)
- // if err != nil {
- // return
- // }
- // err = replaceRelationEdbInfo(mappingList, oldEdbInfo, newEdbInfo, sysAdminId, sysAdminRealName)
- // return
- //}
- // ReplaceChartEdb 替换图表中的指标
- func ReplaceChartEdb(oldEdbInfo, newEdbInfo *EdbInfo) (relationEdbInfoIdList []int, replaceChartTotal, replaceCalculateTotal int, err error) {
- var errmsg string
- relationEdbInfoIdList = make([]int, 0) // 关联的指标id
- logMsg := `` // 记录替换的日志
- o := orm.NewOrmUsingDB("data")
- to, err := o.Begin()
- if err != nil {
- return
- }
- defer func() {
- if err != nil {
- _ = to.Rollback()
- } else {
- _ = to.Commit()
- if logMsg != `` {
- utils.FileLog.Info(fmt.Sprintf("替换指标记录,旧的指标id:%d,新的指标id:%d;%s", oldEdbInfo.EdbInfoId, newEdbInfo.EdbInfoId, logMsg))
- }
- }
- if errmsg != "" {
- fmt.Println("errmsg:" + errmsg)
- }
- if err != nil && errmsg != "" {
- go alarm_msg.SendAlarmMsg("替换图表中的指标失败提醒,errmsg:"+errmsg, 3)
- //go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"替换指标失败提醒", "errmsg:"+errmsg, utils.EmailSendToUsers)
- }
- }()
- //替换图表
- {
- chartEdbMappingList := make([]*ChartEdbInfoMapping, 0)
- csql := `SELECT * FROM chart_edb_mapping WHERE edb_info_id=?`
- _, err = to.Raw(csql, oldEdbInfo.EdbInfoId).QueryRows(&chartEdbMappingList)
- if err != nil {
- errmsg = "获取指标关联图表信息失败:Err:" + err.Error()
- return
- }
- replaceChartTotal = len(chartEdbMappingList)
- // 查询所有的相关的图表信息
- chartInfoIds := make([]string, 0)
- if len(chartEdbMappingList) > 0 {
- for _, chartEdbMapping := range chartEdbMappingList {
- chartInfoIds = append(chartInfoIds, strconv.Itoa(chartEdbMapping.ChartInfoId))
- }
- }
- if len(chartInfoIds) > 0 {
- chartInfoList, e := GetChartInfoListByChartIdList(chartInfoIds)
- if e != nil {
- err = e
- errmsg = "获取图表信息失败:Err:" + e.Error()
- return
- }
- for _, chartInfo := range chartInfoList {
- updateStr := make([]string, 0)
- if chartInfo.EdbInfoIds != "" && strings.Contains(chartInfo.EdbInfoIds, strconv.Itoa(oldEdbInfo.EdbInfoId)) {
- //需要更换
- //解析字符串
- edbInfoIds := strings.Split(chartInfo.EdbInfoIds, ",")
- for i, edbInfoId := range edbInfoIds {
- if edbInfoId == strconv.Itoa(oldEdbInfo.EdbInfoId) {
- edbInfoIds[i] = strconv.Itoa(newEdbInfo.EdbInfoId)
- }
- }
- chartInfo.EdbInfoIds = strings.Join(edbInfoIds, ",")
- updateStr = append(updateStr, "EdbInfoIds")
- }
- if chartInfo.ExtraConfig != "" {
- //判断是否是拟合方程或者散点图截面图
- if chartInfo.Source == utils.CHART_SOURCE_LINE_EQUATION {
- //解析配置内容
- var lineChartInfoConfig request.LineChartInfoReq
- err = json.Unmarshal([]byte(chartInfo.ExtraConfig), &lineChartInfoConfig)
- if err != nil {
- errmsg = "获取图表配置信息失败 json.Unmarshal:Err:" + err.Error()
- return
- }
- xEdbInfoIdList := lineChartInfoConfig.XEdbInfoIdList
- yEdbInfoIdList := lineChartInfoConfig.YEdbInfoIdList
- if len(xEdbInfoIdList) > 0 {
- // 循环判断是否存在
- for k, xEdbInfoId := range xEdbInfoIdList {
- if xEdbInfoId == oldEdbInfo.EdbInfoId {
- xEdbInfoIdList[k] = newEdbInfo.EdbInfoId
- }
- }
- }
- if len(yEdbInfoIdList) > 0 {
- // 循环判断是否存在
- for k, yEdbInfoId := range yEdbInfoIdList {
- if yEdbInfoId == oldEdbInfo.EdbInfoId {
- yEdbInfoIdList[k] = newEdbInfo.EdbInfoId
- }
- }
- }
- // 替换新的指标信息
- lineChartInfoConfig.XEdbInfoIdList = xEdbInfoIdList
- lineChartInfoConfig.YEdbInfoIdList = yEdbInfoIdList
- // 重新序列化
- lineChartInfoConfigJson, e := json.Marshal(lineChartInfoConfig)
- if e != nil {
- err = e
- errmsg = "图表配置信息序列化失败:json.Marshal Err: " + e.Error()
- return
- }
- lineChartInfoConfigStr := string(lineChartInfoConfigJson)
- // 更新图表配置信息
- chartInfo.ExtraConfig = lineChartInfoConfigStr
- updateStr = append(updateStr, "ExtraConfig")
- } else if chartInfo.ChartType == utils.CHART_TYPE_SECTION_SCATTER {
- //解析配置内容
- var tmpExtraConfig SectionScatterReq
- err = json.Unmarshal([]byte(chartInfo.ExtraConfig), &tmpExtraConfig)
- if err != nil {
- errmsg = "获取截面散点图配置信息失败 json.Unmarshal:Err:" + err.Error()
- return
- }
- //找到指标信息,并替换
- if len(tmpExtraConfig.SeriesList) > 0 {
- for k1, series := range tmpExtraConfig.SeriesList {
- for k2, item := range series.EdbInfoList {
- if item.XEdbInfoId == oldEdbInfo.EdbInfoId {
- tmpExtraConfig.SeriesList[k1].EdbInfoList[k2].XEdbInfoId = newEdbInfo.EdbInfoId
- }
- if item.YEdbInfoId == oldEdbInfo.EdbInfoId {
- tmpExtraConfig.SeriesList[k1].EdbInfoList[k2].YEdbInfoId = newEdbInfo.EdbInfoId
- }
- }
- }
- }
- // 重新序列化
- sectionScatterConfigJson, e := json.Marshal(tmpExtraConfig)
- if e != nil {
- err = e
- errmsg = "图表配置信息序列化失败:json.Marshal Err: " + e.Error()
- return
- }
- sectionScatterConfigStr := string(sectionScatterConfigJson)
- // 更新图表配置信息
- chartInfo.ExtraConfig = sectionScatterConfigStr
- updateStr = append(updateStr, "ExtraConfig")
- }
- }
- if len(updateStr) > 0 {
- updateStr = append(updateStr, "ModifyTime")
- chartInfo.ModifyTime = time.Now()
- err = chartInfo.Update(updateStr)
- if err != nil {
- errmsg = "更新图表信息失败:chartInfo.Update Err: " + err.Error()
- return
- }
- }
- }
- }
- if len(chartEdbMappingList) > 0 {
- chartInfoIdList := make([]string, 0)
- for _, mv := range chartEdbMappingList {
- //获取图表所有指标信息
- chartEdbList := make([]*ChartEdbInfoMapping, 0)
- csql := `SELECT * FROM chart_edb_mapping WHERE chart_info_id=?`
- _, err = to.Raw(csql, mv.ChartInfoId).QueryRows(&chartEdbList)
- if err != nil {
- errmsg = "获取图表所有指标信息失败:Err:" + err.Error()
- return
- }
- var minData, maxData float64
- minData = newEdbInfo.MinValue
- maxData = newEdbInfo.MaxValue
- for _, cv := range chartEdbList {
- if mv.IsAxis == cv.IsAxis {
- if minData > cv.MinData {
- minData = cv.MinData
- }
- if maxData < cv.MaxData {
- maxData = cv.MaxData
- }
- }
- }
- //修改图表关联指标
- rsql := ` UPDATE chart_edb_mapping SET edb_info_id=?,max_data=?,min_data=?,modify_time=NOW() WHERE chart_edb_mapping_id=? `
- _, err = to.Raw(rsql, newEdbInfo.EdbInfoId, maxData, minData, mv.ChartEdbMappingId).Exec()
- if err != nil {
- errmsg = "更新图库指标信息失败:Err:" + err.Error()
- return
- }
- chartInfoIdList = append(chartInfoIdList, fmt.Sprint(mv.ChartInfoId))
- }
- logMsg += `涉及到的图表id:` + strings.Join(chartInfoIdList, ",") + ";"
- }
- }
- //替换计算指标
- {
- //获取所有包含的计算指标
- mappingList := make([]*EdbInfoCalculateMapping, 0)
- msql := ` SELECT * FROM edb_info_calculate_mapping WHERE from_edb_info_id=? GROUP BY edb_info_id `
- _, err = to.Raw(msql, oldEdbInfo.EdbInfoId).QueryRows(&mappingList)
- if err != nil {
- errmsg = "获取计算指标关联基础指标信息失败:Err:" + err.Error()
- return
- }
- replaceCalculateTotal = len(mappingList)
- //计算指标
- if len(mappingList) > 0 {
- edbInfoIdList := make([]string, 0)
- for _, mv := range mappingList {
- //如果即将替换的指标与当前指标id一致,那么就退出当前循环,进入下一循环
- if mv.EdbInfoId == newEdbInfo.EdbInfoId {
- continue
- }
- //替换原指标
- msql := `UPDATE edb_info_calculate_mapping SET from_edb_info_id=?,from_edb_code=?,from_edb_name=?,from_source=?,from_source_name=? WHERE edb_info_calculate_mapping_id=? `
- _, err = to.Raw(msql, newEdbInfo.EdbInfoId, newEdbInfo.EdbCode, newEdbInfo.EdbName, newEdbInfo.Source, newEdbInfo.SourceName, mv.EdbInfoCalculateMappingId).Exec()
- if err != nil {
- return
- }
- relationEdbInfoIdList = append(relationEdbInfoIdList, mv.EdbInfoId)
- edbInfoIdList = append(edbInfoIdList, fmt.Sprint(mv.EdbInfoId))
- }
- logMsg += `涉及到的指标id:` + strings.Join(edbInfoIdList, ",") + ";"
- }
- }
- // 替换预测指标中的来源指标
- {
- //获取所有包含的计算指标
- predictEdbConfList := make([]*PredictEdbConf, 0)
- msql := ` SELECT * FROM predict_edb_conf WHERE source_edb_info_id=? GROUP BY predict_edb_info_id `
- _, err = to.Raw(msql, oldEdbInfo.EdbInfoId).QueryRows(&predictEdbConfList)
- if err != nil {
- errmsg = "获取关联的预测指标信息失败:Err:" + err.Error()
- return
- }
- replaceCalculateTotal += len(predictEdbConfList)
- //替换预测指标的来源指标
- msql = `UPDATE predict_edb_conf SET source_edb_info_id=? WHERE source_edb_info_id=? `
- _, err = to.Raw(msql, newEdbInfo.EdbInfoId, oldEdbInfo.EdbInfoId).Exec()
- if err != nil {
- return
- }
- if len(predictEdbConfList) > 0 {
- edbInfoIdList := make([]string, 0)
- for _, v := range predictEdbConfList {
- relationEdbInfoIdList = append(relationEdbInfoIdList, v.PredictEdbInfoId)
- edbInfoIdList = append(edbInfoIdList, fmt.Sprint(v.PredictEdbInfoId))
- }
- logMsg += `涉及到的预测指标id:` + strings.Join(edbInfoIdList, ",") + ";"
- }
- }
- return
- }
- type EdbInfoView struct {
- EdbInfoId int `orm:"column(edb_info_id);pk"`
- EdbInfoType int `description:"指标类型,0:普通指标,1:预测指标"`
- SourceName string `description:"来源名称"`
- Source int `description:"来源id"`
- EdbCode string `description:"指标编码"`
- EdbName string `description:"指标名称"`
- EdbNameSource string `description:"指标名称来源"`
- Frequency string `description:"频率"`
- Unit string `description:"单位"`
- StartDate string `description:"起始日期"`
- EndDate string `description:"终止日期"`
- ClassifyId int `description:"分类id"`
- SysUserId int
- SysUserRealName string
- UniqueCode string `description:"指标唯一编码"`
- CreateTime string
- ModifyTime string
- MinValue float64 `description:"指标最小值"`
- MaxValue float64 `description:"指标最大值"`
- CalculateFormula string `description:"计算公式"`
- EdbType int `description:"指标类型:1:基础指标,2:计算指标"`
- Sort int `description:"排序字段"`
- IsUpdate int `description:"当天是否已更新,1:未更新,2:已更新"`
- LatestDate string `description:"数据最新日期(实际日期)"`
- LatestValue float64 `description:"数据最新值(实际值)"`
- SubSource int `description:"子数据来源:0:经济数据库,1:日期序列"`
- SubSourceName string `description:"子数据来源名称"`
- IndicatorCode string `description:"指标代码"`
- StockCode string `description:"证券代码"`
- EndValue float64 `description:"数据的最新值(预测日期的最新值)"`
- }
- // 获取指标的所有计算指标,以及计算指标所依赖计算指标
- func GetAllCalculateByEdbInfoId(edbInfoId int) (mappingList []*EdbInfoCalculateMapping, err error) {
- o := orm.NewOrmUsingDB("data")
- msql := ` SELECT * FROM edb_info_calculate_mapping WHERE from_edb_info_id=? GROUP BY edb_info_id `
- _, err = o.Raw(msql, edbInfoId).QueryRows(&mappingList)
- if err != nil {
- return
- }
- return
- }
- func GetAllCalculate(edbInfoId int, edbInfoMap map[int]int) (mappingList []*EdbInfoCalculateMapping, err error) {
- calculateList, err := GetAllCalculateByEdbInfoId(edbInfoId)
- if err != nil && err.Error() != utils.ErrNoRow() {
- return
- }
- for _, item := range calculateList {
- _, ok := edbInfoMap[item.EdbInfoId]
- if !ok {
- edbInfoMap[item.EdbInfoId] = item.EdbInfoId
- mappingList = append(mappingList, item)
- newCalculateInfoArr, _ := GetAllCalculate(item.EdbInfoId, edbInfoMap)
- mappingList = append(mappingList, newCalculateInfoArr...)
- }
- }
- return
- }
- // GetAllCalculateByEdbInfoIdV2 获取计算指标的所有所依赖的指标(基础指标+计算指标)
- func GetAllCalculateByEdbInfoIdV2(edbInfoId int) (mappingList []*EdbInfoCalculateMapping, err error) {
- o := orm.NewOrmUsingDB("data")
- msql := ` SELECT * FROM edb_info_calculate_mapping WHERE edb_info_id=? GROUP BY from_edb_info_id `
- _, err = o.Raw(msql, edbInfoId).QueryRows(&mappingList)
- if err != nil {
- return
- }
- return
- }
- // GetAllCalculateV2 获取所有的指标(如果下层指标包含了待替换指标,那么就不加入)
- func GetAllCalculateV2(oldEdbInfoId, replaceEdbInfoId int, edbInfoMap map[int]int) (mappingList []*EdbInfoCalculateMapping, err error) {
- calculateList, err := GetAllCalculateByEdbInfoId(oldEdbInfoId)
- if err != nil && err.Error() != utils.ErrNoRow() {
- return
- }
- tmpMappingList := make([]*EdbInfoCalculateMapping, 0)
- for _, item := range calculateList {
- //如果计算指标里面存在即将替换的指标id,那么退出当前循环,进入下一循环
- if item.EdbInfoId == replaceEdbInfoId {
- err = fmt.Errorf("指标重复1")
- return
- }
- //获取该指标的依赖指标列表,如果依赖指标列表中存在即将替换的指标,那么过滤该指标
- childCalculateList, tmpErr := GetAllCalculateByEdbInfoIdV2(item.EdbInfoId)
- if tmpErr != nil && tmpErr.Error() != utils.ErrNoRow() {
- err = tmpErr
- return
- }
- for _, childCalculate := range childCalculateList {
- if childCalculate.FromEdbInfoId == replaceEdbInfoId {
- err = fmt.Errorf("指标重复2")
- return
- }
- }
- _, ok := edbInfoMap[item.EdbInfoId]
- if !ok {
- edbInfoMap[item.EdbInfoId] = item.EdbInfoId
- newCalculateInfoArr, tmpErr := GetAllCalculateV2(item.EdbInfoId, replaceEdbInfoId, edbInfoMap)
- if tmpErr != nil {
- err = tmpErr
- continue
- } else {
- mappingList = append(mappingList, item)
- tmpMappingList = append(tmpMappingList, newCalculateInfoArr...)
- }
- }
- }
- mappingList = append(mappingList, tmpMappingList...)
- return
- }
- // EdbInfoFilterDataResp 搜索指标列表数据返回
- type EdbInfoFilterDataResp struct {
- Paging *paging.PagingItem
- List []*EdbInfoList
- }
- // GetEdbInfoFilterList 获取指指标列表数据接口
- func GetEdbInfoFilterList(condition string, pars []interface{}, startSize, pageSize int) (total int64, list []*EdbInfoList, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT count(1) total FROM edb_info where 1=1 ` + condition + ` ORDER BY edb_info_id DESC `
- err = o.Raw(sql, pars).QueryRow(&total)
- if err != nil {
- return
- }
- sql = ` SELECT * FROM edb_info where 1=1 ` + condition + ` ORDER BY edb_info_id DESC LIMIT ?,? `
- _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&list)
- return
- }
- // SetEdbInfoImageReq 设置指标图片
- type SetEdbInfoImageReq struct {
- EdbInfoId int `description:"指标ID"`
- ImageUrl string `description:"指标图片地址"`
- }
- // GetNextEdbInfoByCondition 根据条件获取下一个指标
- func GetNextEdbInfoByCondition(condition string, pars []interface{}) (item *EdbInfo, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- sql += " ORDER BY sort asc , edb_info_id asc LIMIT 1 "
- err = o.Raw(sql, pars).QueryRow(&item)
- return
- }
- // GetNextEdbInfo 根据分类id获取下一个 指标
- func GetNextEdbInfo(classifyId, classifySort, classifyType, edbInfoType int) (item *EdbInfo, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT b.* FROM edb_classify AS a
- INNER JOIN edb_info AS b ON a.classify_id=b.classify_id
- WHERE (a.sort>? OR (a.sort=? and a.classify_id>?) )
- AND a.classify_type=? AND b.edb_info_type=?
- ORDER BY a.sort ASC,b.sort asc,b.edb_info_id asc
- LIMIT 1 `
- err = o.Raw(sql, classifySort, classifySort, classifyId, classifyType, edbInfoType).QueryRow(&item)
- return
- }
- // GetEdbInfoByEdbCodeList 根据指标code集合获取指标列表
- func GetEdbInfoByEdbCodeList(source int, edbCodeList []string) (items []*EdbInfo, err error) {
- num := len(edbCodeList)
- if num <= 0 {
- return
- }
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE source=? AND edb_code in (` + utils.GetOrmInReplace(num) + `) `
- _, err = o.Raw(sql, source, edbCodeList).QueryRows(&items)
- return
- }
- // GetEdbInfoByConditionCount 根据条件获取指标列表数据总数
- func GetEdbInfoByConditionCount(condition string, pars []interface{}) (count int, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT COUNT(1) AS count FROM edb_info WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- err = o.Raw(sql, pars).QueryRow(&count)
- return
- }
- // GetEdbInfoListByCondition 根据条件获取指标列表数据
- func GetEdbInfoListByCondition(condition string, pars []interface{}, startSize, pageSize int, orderDesc string) (items []*EdbInfoList, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- if orderDesc == `` {
- orderDesc = ` ASC `
- }
- sql += ` ORDER BY edb_info_id `
- sql += orderDesc
- sql += ` LIMIT ?,? `
- _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
- return
- }
- // GetEdbInfoListV2ByCondition 根据条件获取指标列表数据(EdbInfo原始数据结构)
- func GetEdbInfoListV2ByCondition(condition string, pars []interface{}, startSize, pageSize int) (items []*EdbInfo, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- sql += ` ORDER BY edb_info_id ASC LIMIT ?,? `
- _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
- return
- }
- // GetEdbInfoListGroupByUserId 根据指标id列表、用户分组获取指标信息
- func GetEdbInfoListGroupByUserId(edbIdList []string) (items []*EdbInfo, err error) {
- num := len(edbIdList)
- if num <= 0 {
- return
- }
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE edb_info_id in (` + utils.GetOrmInReplace(num) + `) GROUP BY sys_user_id `
- _, err = o.Raw(sql, edbIdList).QueryRows(&items)
- return
- }
- // GetEdbInfoListByEdbInfoId
- // @Description: 根据指标id列表获取列表信息
- // @param edbIdList
- // @return items
- // @return err
- func GetEdbInfoListByEdbInfoId(edbIdList []string) (items []*EdbInfo, err error) {
- num := len(edbIdList)
- if num <= 0 {
- return
- }
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE edb_info_id in (` + utils.GetOrmInReplace(num) + `) `
- _, err = o.Raw(sql, edbIdList).QueryRows(&items)
- return
- }
- // GetEdbInfoListByUserId
- // @Description: 根据指标id列表获取列表信息
- // @param userIdList []int
- // @param edbInfoType int
- // @return items
- // @return err
- func GetEdbInfoListByUserId(userIdList []int, edbInfoType int) (items []*EdbInfo, err error) {
- num := len(userIdList)
- if num <= 0 {
- return
- }
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE edb_info_type = ? AND sys_user_id in (` + utils.GetOrmInReplace(num) + `) `
- _, err = o.Raw(sql, edbInfoType, userIdList).QueryRows(&items)
- return
- }
- // ModifyEdbInfoUserIdByCodeList 根据指标code列表修改创建人
- func ModifyEdbInfoUserIdByCodeList(edbIdList []string, userId int, userName string) (err error) {
- num := len(edbIdList)
- if num <= 0 {
- return
- }
- o := orm.NewOrmUsingDB("data")
- sql := `UPDATE edb_info SET sys_user_id=?,sys_user_real_name=? WHERE edb_info_id in (` + utils.GetOrmInReplace(num) + `) `
- _, err = o.Raw(sql, userId, userName, edbIdList).Exec()
- return
- }
- // ModifyEdbInfoUserIdByOldUserId
- // @Description: 根据旧用户id修改新用户id
- // @author: Roc
- // @datetime 2024-03-25 19:17:09
- // @param edbIdList []string
- // @param userId int
- // @param userName string
- // @return err error
- func ModifyEdbInfoUserIdByOldUserId(oldUserIdList []int, edbInfoType, userId int, userName string) (err error) {
- num := len(oldUserIdList)
- if num <= 0 {
- return
- }
- o := orm.NewOrmUsingDB("data")
- sql := `UPDATE edb_info SET sys_user_id=?,sys_user_real_name=? WHERE sys_user_id in (` + utils.GetOrmInReplace(num) + `) and edb_info_type = ?`
- _, err = o.Raw(sql, userId, userName, oldUserIdList, edbInfoType).Exec()
- return
- }
- // MoveEdbChartList 图表/指标信息
- type MoveEdbChartList struct {
- DataId string `description:"指标/图表唯一id"`
- Code string `description:"指标code"`
- Name string `description:"指标/图表名称"`
- NameEn string `description:"指标/图表名称"`
- ClassifyName string `description:"分类名称"`
- ClassifyNameEn string `description:"分类名称"`
- CreateUserId int `description:"创建人id"`
- CreateUserName string `description:"创建人名称"`
- }
- // MoveEdbChartListResp 更改创建人返回数据
- type MoveEdbChartListResp struct {
- Paging *paging.PagingItem
- List []MoveEdbChartList
- }
- type EdbChartClassifyResp struct {
- List []*EdbChartClassify
- }
- type EdbChartClassify struct {
- ClassifyId int
- ClassifyName string
- ParentId int
- IsJoinPermission int `description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
- Child []*EdbChartClassify
- }
- // EdbInfoDataSeasonalResp 指标季节性数据返回
- type EdbInfoDataSeasonalResp struct {
- EdbInfo *EdbInfo
- DataList interface{}
- }
- // SetEdbDataInsertConfigReq 设置插入规则的请求
- type SetEdbDataInsertConfigReq struct {
- EdbInfoId int `description:"指标ID"`
- Date string `description:"日期"`
- Value string `description:"值"`
- }
- // GetEdbInfoByClassifyId 用于分类展示
- func GetEdbInfoByClassifyId(classifyId, edbInfoType, adminId int) (items []*EdbClassifyItems, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT edb_info_id,classify_id,edb_name AS classify_name,edb_name_en AS classify_name_en,unique_code,source_name,source,sys_user_id,sys_user_real_name,start_date,edb_code,edb_type, sort,is_join_permission FROM edb_info WHERE classify_id = ? AND edb_info_type = ?`
- pars := []interface{}{classifyId, edbInfoType}
- // 如果筛选了用户id
- if adminId > 0 {
- sql += ` AND sys_user_id = ? `
- pars = append(pars, adminId)
- }
- sql += ` order by sort asc,edb_info_id asc `
- _, err = o.Raw(sql, pars).QueryRows(&items)
- return
- }
- type EdbAndClassify struct {
- EdbInfoId int `description:"指标id"`
- EdbCode string `description:"指标code"`
- UniqueCode string `description:"唯一code"`
- EdbName string `description:"指标名称"`
- ClassifyId int `description:"所属分类id"`
- FirstClassifyId int `description:"第1级的分类id"`
- FirstClassifyName string `description:"第1级的分类名称"`
- SecondClassifyId int `description:"第2级的分类id"`
- SecondClassifyName string `description:"第2级的分类名称"`
- }
- // GetEdbInfoAndClassifyListByEdbIdList 根据指标id列表获取 指标及分类信息
- func GetEdbInfoAndClassifyListByEdbIdList(edbIdList []int) (items []*EdbAndClassify, err error) {
- num := len(edbIdList)
- if num <= 0 {
- return
- }
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT a.edb_info_id,a.edb_code,a.unique_code,a.edb_name,a.classify_id FROM edb_info AS a
- WHERE a.edb_info_id in (` + utils.GetOrmInReplace(num) + `) `
- _, err = o.Raw(sql, edbIdList).QueryRows(&items)
- return
- }
- // TraceEdbInfoResp 指标追溯数据返回
- type TraceEdbInfoResp struct {
- EdbInfoId int `description:"指标id"`
- EdbInfoType int `description:"指标类型: 0-普通指标; 1-预测指标"`
- EdbName string `description:"指标名称"`
- EdbNameEn string `description:"指标英文名称"`
- EdbType int `description:"指标类型: 1-基础指标; 2-计算指标"`
- RuleTitle string `description:"指标规则"`
- RuleTitleEn string `description:"指标规则(英文)"`
- UniqueCode string `description:"唯一编码"`
- ClassifyId int `description:"分类ID"`
- Child []TraceEdbInfoResp `description:"下级来源"`
- IsStop int8 `description:"是否终止"`
- EdbInfo *EdbInfo `description:"指标信息" json:"-"`
- HaveOperaAuth bool `description:"是否有数据权限,默认:false"`
- }
- // BeforeAndAfterDateDataResp 前后几期数据
- type BeforeAndAfterDateDataResp struct {
- List []*EdbDataList `description:"list"`
- Date string `description:"实际日期"`
- ShowValue string `description:"展示值"`
- }
- // GetEdbInfoAdminList
- func GetEdbInfoAdminList(edbType int) (list []int, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT sys_user_id FROM edb_info WHERE edb_info_type = ? GROUP BY sys_user_id `
- _, err = o.Raw(sql, edbType).QueryRows(&list)
- return
- }
- type EdbInfoExistCheckResp struct {
- IndexExist bool `description:"指标是否存在:true,存在,false:不存在"`
- ExistStockCodeArr []string `description:"存在的证券代码"`
- ExistEdbCodeArr []string `description:"存在的指标代码"`
- ExistClassifyId []int `description:"存在的分类id"`
- ExistIndexId []int `description:"存在的指标id"`
- ExistEdbInfo []*EdbInfo `description:"存在的指标"`
- }
- type BatchAddEdbInfoReq struct {
- BatchList []*BatchAddEdbInfo
- }
- type BatchAddEdbInfo struct {
- Source int `description:"来源id"`
- EdbName string `description:"指标名称"`
- Frequency string `description:"频率"`
- Unit string `description:"单位"`
- ClassifyId int `description:"分类id"`
- StockCode string `description:"证券代码"`
- EdbCode string `description:"指标编码"`
- }
- func GetEdbInfoWsdMaxAndMinInfo(source, subSource int, edbCode string) (item *EdbInfoMaxAndMinInfo, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ``
- tableName := GetEdbDataTableNameAndSubSource(source, subSource)
- sql = ` SELECT MIN(data_time) AS min_date,MAX(data_time) AS max_date,MIN(value) AS min_value,MAX(value) AS max_value FROM %s WHERE edb_code=? `
- sql = fmt.Sprintf(sql, tableName)
- err = o.Raw(sql, edbCode).QueryRow(&item)
- if err != nil {
- return
- }
- var latest_value float64
- sql = ` SELECT value AS latest_value FROM %s WHERE edb_code=? ORDER BY data_time DESC LIMIT 1 `
- sql = fmt.Sprintf(sql, tableName)
- err = o.Raw(sql, edbCode).QueryRow(&latest_value)
- item.LatestValue = latest_value
- return
- }
- // GetEdbInfoByNames 根据名称获取普通的指标
- func GetEdbInfoByNames(edbNames string) (items []*EdbInfoList, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT * FROM edb_info WHERE edb_name IN (` + edbNames + `) AND edb_info_type = 0 `
- _, err = o.Raw(sql).QueryRows(&items)
- return
- }
- func GetSmmEdbInfoMaxAndMinInfo(edbCodes []string) (item *EdbInfoMaxAndMinInfo, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ``
- sql = ` SELECT MIN(data_time) AS min_date,MAX(data_time) AS max_date,MIN(value) AS min_value,MAX(value) AS max_value FROM edb_data_ys WHERE edb_code IN (` + utils.GetOrmInReplace(len(edbCodes)) + `)`
- err = o.Raw(sql, edbCodes).QueryRow(&item)
- if err != nil {
- return
- }
- var latest_value float64
- sql = ` SELECT value AS latest_value FROM edb_data_ys WHERE edb_code IN (` + utils.GetOrmInReplace(len(edbCodes)) + `) ORDER BY data_time DESC LIMIT 1 `
- err = o.Raw(sql, edbCodes).QueryRow(&latest_value)
- item.LatestValue = latest_value
- return
- }
- type EdbInfoSmmExistCheckResp struct {
- EdbInfoExistCheckResp
- ExistAll bool `description:"是否全部重复"`
- }
- // GetEdbBaseInfoList
- // @Description: 获取指标库数据列表
- // @author: Roc
- // @datetime 2024-01-10 14:28:22
- // @param condition string
- // @param pars []interface{}
- // @param orderBy string
- // @param startSize int
- // @param pageSize int
- // @return total int
- // @return items []*BaseRefreshEdbInfo
- // @return err error
- func GetEdbBaseInfoList(condition string, pars []interface{}, orderBy string, startSize, pageSize int) (total int, items []*BaseRefreshEdbInfo, err error) {
- o := orm.NewOrmUsingDB("data")
- // 数量汇总
- totalSql := ` SELECT count(1) FROM edb_info WHERE 1=1 `
- if condition != "" {
- totalSql += condition
- }
- err = o.Raw(totalSql, pars).QueryRow(&total)
- if err != nil {
- return
- }
- // 列表数据
- sql := ` SELECT edb_info_id as edb_info_id, classify_id as classify_id,edb_code as index_code,edb_name as index_name,end_date,end_value,sys_user_id,sys_user_real_name,frequency,no_update as is_stop,terminal_code FROM edb_info WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- if orderBy != "" {
- sql += ` ORDER BY ` + orderBy
- } else {
- sql += ` ORDER BY edb_info_id ASC `
- }
- sql += ` LIMIT ?,? `
- _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
- return
- }
- // ModifyEdbInfoUpdateStatus
- // @Description: 修改指标库停更状态
- // @author: Roc
- // @datetime 2024-01-08 16:23:31
- // @param edbIdList []int
- // @param indexCodeList []string
- // @param isStop int
- // @return err error
- func ModifyEdbInfoUpdateStatus(edbIdList []int, isStop int) (err error) {
- idNum := len(edbIdList)
- if idNum <= 0 {
- return
- }
- o, err := orm.NewOrmUsingDB("data").Begin()
- if err != nil {
- return
- }
- defer func() {
- if err != nil {
- _ = o.Rollback()
- return
- }
- _ = o.Commit()
- }()
- // 更改指标的更新状态
- sql := ` UPDATE edb_info SET no_update = ? WHERE edb_info_id IN (` + utils.GetOrmInReplace(idNum) + `) `
- _, err = o.Raw(sql, isStop, edbIdList).Exec()
- if err != nil {
- return
- }
- return
- }
- func GetEdbInfoCount(source int, edbCode string) (count int, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT COUNT(1) AS count FROM edb_info
- WHERE source=? AND edb_code = ?`
- err = o.Raw(sql, source, edbCode).QueryRow(&count)
- return
- }
- // GetEdbInfoByNameArr 根据名称获取指标
- func GetEdbInfoByNameArr(names []string, edbInfoType int) (items []*EdbInfo, err error) {
- if len(names) == 0 {
- return
- }
- o := orm.NewOrmUsingDB("data")
- sql := fmt.Sprintf(`SELECT edb_info_id, edb_code, edb_name FROM edb_info WHERE edb_name IN (%s) AND edb_info_type = ? `, utils.GetOrmInReplace(len(names)))
- _, err = o.Raw(sql, names, edbInfoType).QueryRows(&items)
- return
- }
- // GetEdbCodesBySource 根据来源获取指标编码
- func GetEdbCodesBySource(source int) (items []*EdbInfo, err error) {
- o := orm.NewOrmUsingDB("data")
- sql := ` SELECT edb_info_id, edb_code, unique_code, classify_id FROM edb_info WHERE source = ? `
- _, err = o.Raw(sql, source).QueryRows(&items)
- return
- }
- // GetAllEdbDataListData
- // @Description: 获取指标的所有数据
- // @author: Roc
- // @datetime 2024-05-07 15:18:27
- // @param edbInfoId int
- // @param source int
- // @param subSource int
- // @param startDataTime string
- // @return dataList []*EdbData
- // @return err error
- func GetAllEdbDataListData(edbInfoId, source, subSource int, startDataTime string) (dataList []*EdbData, err error) {
- // 自有数据需要额外处理(从mongo获取)
- if source == utils.DATA_SOURCE_BUSINESS && utils.UseMongo {
- return getAllDataByMongo(edbInfoId, source, subSource, startDataTime)
- }
- if source == utils.DATA_SOURCE_THS && subSource == utils.DATA_SUB_SOURCE_HIGH_FREQUENCY && utils.UseMongo {
- return getThsHfAllDataByMongo(edbInfoId, source, subSource, startDataTime)
- }
- // 默认走mysql
- return getAllDataByMysql(edbInfoId, source, subSource, startDataTime)
- }
- // getAllDataByMysql
- // @Description: 从mysql获取指标的所有数据
- // @author: Roc
- // @datetime 2024-05-07 15:18:41
- // @param edbInfoId int
- // @param source int
- // @param subSource int
- // @param startDataTime string
- // @return dataList []*data_manage.EdbData
- // @return err error
- func getAllDataByMysql(edbInfoId, source, subSource int, startDataTime string) (dataList []*EdbData, err error) {
- dataList = make([]*EdbData, 0)
- var dataCondition string
- var dataPars []interface{}
- dataCondition += ` AND edb_info_id=? `
- dataPars = append(dataPars, edbInfoId)
- // 结束日期
- if startDataTime != "" {
- dataCondition += ` AND data_time > ? `
- dataPars = append(dataPars, startDataTime)
- }
- // 获取列表数据
- dataList, err = GetAllEdbDataListByCondition(dataCondition, dataPars, source, subSource)
- if err != nil {
- return
- }
- return
- }
- // getAllDataByMongo
- // @Description: 从mongo获取指标的所有数据
- // @author: Roc
- // @datetime 2024-05-07 15:18:53
- // @param edbInfoId int
- // @param source int
- // @param subSource int
- // @param startDataTime string
- // @return dataList []*data_manage.EdbData
- // @return err error
- func getAllDataByMongo(edbInfoId, source, subSource int, startDataTime string) (dataList []*EdbData, err error) {
- dataList = make([]*EdbData, 0)
- mogDataObj := mgo.EdbDataBusiness{}
- // 构建查询条件
- queryConditions := bson.M{
- "edb_info_id": edbInfoId,
- }
- // 数据日期
- dateCondition, err := mgo.BuildDateCondition(startDataTime, "")
- if err != nil {
- return
- }
- if len(dateCondition) > 0 {
- queryConditions["data_time"] = dateCondition
- }
- // 获取列表数据
- tmpDataList, tmpErr := mogDataObj.GetAllDataList(queryConditions, []string{"-data_time"})
- if tmpErr != nil {
- err = tmpErr
- return
- }
- for k, v := range tmpDataList {
- dataList = append(dataList, &EdbData{
- EdbDataId: k + 1,
- EdbInfoId: v.EdbInfoId,
- DataTime: v.DataTime.Format(utils.FormatDate),
- Value: v.Value,
- })
- }
- return
- }
- type ReplaceEdbInfoItem struct {
- OldEdbInfo *EdbInfo
- NewEdbInfo *EdbInfo
- }
- func GetThsHfEdbInfoMaxAndMinInfoByMongo(source, subSource int, edbCode string) (item *EdbInfoMaxAndMinInfo, err error) {
- mogDataObj := new(mgo.EdbDataThsHf)
- pipeline := []bson.M{
- {"$match": bson.M{"edb_code": edbCode}},
- {"$group": bson.M{
- "_id": nil,
- "min_date": bson.M{"$min": "$data_time"},
- "max_date": bson.M{"$max": "$data_time"},
- "min_value": bson.M{"$min": "$value"},
- "max_value": bson.M{"$max": "$value"},
- }},
- {"$project": bson.M{"_id": 0}}, // 可选,如果不需要_id字段
- }
- result, err := mogDataObj.GetEdbInfoMaxAndMinInfo(pipeline)
- if err != nil {
- fmt.Println("EdbDataThsHf getEdbDataThsHfList Err:" + err.Error())
- return
- }
- if !result.MaxDate.IsZero() {
- whereQuery := bson.M{"edb_code": edbCode, "data_time": result.MaxDate}
- selectParam := bson.D{{"value", 1}, {"_id", 0}}
- latestValue, tmpErr := mogDataObj.GetLatestValue(whereQuery, selectParam)
- if tmpErr != nil {
- err = tmpErr
- return
- }
- result.LatestValue = latestValue.Value
- result.EndValue = latestValue.Value
- }
- item = &EdbInfoMaxAndMinInfo{
- MinDate: result.MinDate.Format(utils.FormatDate),
- MaxDate: result.MaxDate.Format(utils.FormatDate),
- MinValue: result.MinValue,
- MaxValue: result.MaxValue,
- LatestValue: result.LatestValue,
- }
- return
- }
- func getThsHfAllDataByMongo(edbInfoId, source, subSource int, startDataTime string) (dataList []*EdbData, err error) {
- dataList = make([]*EdbData, 0)
- mogDataObj := mgo.EdbDataThsHf{}
- // 构建查询条件
- queryConditions := bson.M{
- "edb_info_id": edbInfoId,
- }
- // 开始日期
- dateCondition, err := mgo.BuildDateCondition(startDataTime, "")
- if err != nil {
- return
- }
- if len(dateCondition) > 0 {
- queryConditions["data_time"] = dateCondition
- }
- // 获取列表数据
- tmpDataList, tmpErr := mogDataObj.GetAllDataList(queryConditions, []string{"-data_time"})
- if tmpErr != nil {
- err = tmpErr
- return
- }
- for k, v := range tmpDataList {
- dataList = append(dataList, &EdbData{
- EdbDataId: k + 1,
- EdbInfoId: v.EdbInfoId,
- DataTime: v.DataTime.Format(utils.FormatDate),
- Value: v.Value,
- })
- }
- return
- }
|