edb_info.go 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151
  1. package data_manage
  2. import (
  3. "encoding/json"
  4. "eta_gn/eta_api/global"
  5. "eta_gn/eta_api/models/data_manage/line_equation/request"
  6. "eta_gn/eta_api/models/mgo"
  7. "eta_gn/eta_api/services/alarm_msg"
  8. "eta_gn/eta_api/utils"
  9. "fmt"
  10. "strconv"
  11. "strings"
  12. "time"
  13. "gorm.io/gorm"
  14. "go.mongodb.org/mongo-driver/bson"
  15. "github.com/rdlucklib/rdluck_tools/paging"
  16. )
  17. type EdbInfo struct {
  18. EdbInfoId int `gorm:"primaryKey" `
  19. EdbInfoType int `description:"指标类型,0:普通指标,1:预测指标"`
  20. SourceName string `description:"来源名称"`
  21. Source int `description:"来源id"`
  22. EdbCode string `description:"指标编码"`
  23. EdbName string `description:"指标名称"`
  24. EdbNameEn string `description:"英文指标名称"`
  25. EdbNameSource string `description:"指标名称来源"`
  26. Frequency string `description:"频率"`
  27. Unit string `description:"单位"`
  28. UnitEn string `description:"英文单位"`
  29. StartDate time.Time `description:"起始日期"`
  30. EndDate time.Time `description:"终止日期"`
  31. ClassifyId int `description:"分类id"`
  32. SysUserId int
  33. SysUserRealName string
  34. UniqueCode string `description:"指标唯一编码"`
  35. CreateTime time.Time
  36. ModifyTime time.Time
  37. BaseModifyTime time.Time
  38. MinValue float64 `description:"指标最小值"`
  39. MaxValue float64 `description:"指标最大值"`
  40. CalculateFormula string `description:"计算公式"`
  41. EdbType int `description:"指标类型:1:基础指标,2:计算指标"`
  42. Sort int `description:"排序字段"`
  43. LatestDate string `description:"数据最新日期(实际日期)"`
  44. LatestValue float64 `description:"数据最新值(实际值)"`
  45. EndValue float64 `description:"数据的最新值(预测日期的最新值)"`
  46. MoveType int `description:"移动方式:1:领先(默认),2:滞后"`
  47. MoveFrequency string `description:"移动频度"`
  48. NoUpdate int8 `description:"是否停止更新,0:继续更新;1:停止更新"`
  49. ServerUrl string `description:"服务器地址"`
  50. ChartImage string `description:"图表图片"`
  51. Calendar string `description:"公历/农历" orm:"default(公历);"`
  52. DataDateType string `orm:"column(data_date_type);size(255);null;default(交易日)"`
  53. ManualSave int `description:"是否有手动保存过上下限: 0-否; 1-是"`
  54. EmptyType int `description:"空值处理类型(0查找前后35天,1不计算,2前值填充,3后值填充,4等于0)"`
  55. MaxEmptyType int `description:"MAX、MIN公式空值处理类型(1、等于0;2、跳过空值)"`
  56. TerminalCode string `description:"终端编码,用于配置在机器上"`
  57. DataUpdateTime string `description:"最近一次数据发生变化的时间"`
  58. ErDataUpdateDate string `description:"本次更新,数据发生变化的最早日期"`
  59. SourceIndexName string `description:"数据源中的指标名称"`
  60. SubSource int `description:"子数据来源:0:经济数据库,1:日期序列"`
  61. SubSourceName string `description:"子数据来源名称"`
  62. IndicatorCode string `description:"指标代码"`
  63. StockCode string `description:"证券代码"`
  64. Extra string `description:"指标额外配置"`
  65. IsJoinPermission int `description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
  66. PublicStatus int `description:"公开状态;0:未公开;1:审批中;2:已驳回;3:已公开"`
  67. EdbPublicClassifyId int `description:"指标公开分类id"`
  68. }
  69. type EdbInfoFullClassify struct {
  70. //*EdbInfo
  71. *EdbInfoResp
  72. CorrelationStr string `description:"相关性系数字符串"`
  73. ClassifyList []*EdbClassifyIdItems
  74. HaveOperaAuth bool `description:"是否有数据权限,默认:false"`
  75. IsSupplierStop int `description:"是否供应商停更:1:停更,0:未停更"`
  76. }
  77. func AddEdbInfo(item *EdbInfo) (lastId int64, err error) {
  78. err = global.DmSQL["data"].Create(item).Error
  79. if err != nil {
  80. return
  81. }
  82. lastId = int64(item.EdbInfoId)
  83. return
  84. }
  85. type BaseEdbNameItem struct {
  86. EdbInfoId int `description:"指标id"`
  87. EdbInfoType int `description:"指标类型,0:普通指标,1:预测指标"`
  88. SourceName string `description:"来源名称"`
  89. Source int `description:"来源id"`
  90. EdbCode string `description:"指标编码"`
  91. EdbName string `description:"指标名称"`
  92. EdbNameEn string `description:"指标英文名称"`
  93. Frequency string `description:"频率"`
  94. Unit string `description:"单位"`
  95. UnitEn string `description:"英文单位"`
  96. HaveOperaAuth bool `description:"是否有数据权限,默认:false"`
  97. }
  98. type BaseEdbInfoResp struct {
  99. List []*BaseEdbNameItem
  100. }
  101. // 指标检索数据
  102. type EdbInfoSearch struct {
  103. EdbCode string `description:"指标编码"`
  104. StartDate string `description:"起始日期"`
  105. EndDate string `description:"终止日期"`
  106. EdbName string `description:"指标名称"`
  107. Unit string `description:"单位"`
  108. Frequency string `description:"频率"`
  109. DataList []*EdbInfoSearchData
  110. StockList []*StockInfo `description:"时序数据"`
  111. }
  112. type StockInfo struct {
  113. StockCode string
  114. EdbCode string
  115. DataList []*EdbInfoSearchData
  116. }
  117. type EdbInfoSearchData struct {
  118. DataTime string `description:"数据日期"`
  119. Value float64 `description:"数据"`
  120. }
  121. type BaseIndexInfo struct {
  122. IndexName string `description:"数据日期"`
  123. Unit string `description:"单位"`
  124. Frequency string `description:"频率"`
  125. }
  126. type EdbInfoSearchResp struct {
  127. SearchItem *EdbInfoSearch `description:"指标分类"`
  128. Status int `description:"1:数据已存在于国能数据库,2:新数据,3:数据已存在于国能数据库,但是当前账号无权限"`
  129. ClassifyList []*EdbClassifySimplify
  130. StockSearchList []*EdbInfoSearch
  131. }
  132. type EdbInfoMySteelChemicalCheckResp struct {
  133. Status int `description:"1:数据已存在于国能数据库,2:新数据,3:数据已存在于国能数据库,但是当前账号无权限"`
  134. }
  135. func GetEdbInfoByEdbCode(source int, edbCode string) (item *EdbInfo, err error) {
  136. sql := ` SELECT * FROM edb_info WHERE source=? AND edb_code=? `
  137. err = global.DmSQL["data"].Raw(sql, source, edbCode).First(&item).Error
  138. return
  139. }
  140. func GetEdbInfoListByEdbCodes(source int, edbCodes []string) (items []*EdbInfo, err error) {
  141. if len(edbCodes) == 0 {
  142. return
  143. }
  144. sql := ` SELECT * FROM edb_info WHERE source=? AND edb_code IN (` + utils.GetOrmInReplace(len(edbCodes)) + `) `
  145. err = global.DmSQL["data"].Raw(sql, source, edbCodes).Scan(&items).Error
  146. return
  147. }
  148. func (e *EdbInfo) AfterFind(db *gorm.DB) error {
  149. tmpTime, err := time.Parse(utils.FormatDateWallWithLoc, e.LatestDate)
  150. if err != nil {
  151. return nil
  152. }
  153. e.LatestDate = tmpTime.Format(utils.FormatDate)
  154. return nil
  155. }
  156. func GetEdbInfoById(edbInfoId int) (item *EdbInfo, err error) {
  157. sql := ` SELECT * FROM edb_info WHERE edb_info_id=? `
  158. err = global.DmSQL["data"].Raw(sql, edbInfoId).First(&item).Error
  159. return
  160. }
  161. // GetEdbInfoByUniqueCode
  162. // @Description: 根据uniqueCode获取指标详情
  163. // @author: Roc
  164. // @datetime 2024-01-18 13:40:01
  165. // @param uniqueCode string
  166. // @return item *EdbInfo
  167. // @return err error
  168. func GetEdbInfoByUniqueCode(uniqueCode string) (item *EdbInfo, err error) {
  169. sql := ` SELECT * FROM edb_info WHERE unique_code=? `
  170. err = global.DmSQL["data"].Raw(sql, uniqueCode).First(&item).Error
  171. return
  172. }
  173. // GetEdbInfoByIdList 根据指标id集合 获取 指标列表
  174. func GetEdbInfoByIdList(edbInfoIdList []int) (items []*EdbInfo, err error) {
  175. num := len(edbInfoIdList)
  176. if num <= 0 {
  177. return
  178. }
  179. o := global.DmSQL["data"]
  180. sql := ` SELECT * FROM edb_info WHERE edb_info_id in (` + utils.GetOrmInReplace(num) + `) `
  181. err = o.Raw(sql, edbInfoIdList).Find(&items).Error
  182. return
  183. }
  184. // MysteelChemicalDataBatchAddCheckReq 钢联化工指标批量添加校验
  185. type MysteelChemicalDataBatchAddCheckReq struct {
  186. IndexCodes []string `form:"IndexCodes" description:"全选为false时, 该数组为选中; 全选为true时, 该数组为不选的指标"`
  187. }
  188. type AddEdbInfoReq struct {
  189. Source int `description:"来源id"`
  190. EdbCode string `description:"指标编码"`
  191. EdbName string `description:"指标名称"`
  192. Frequency string `description:"频率"`
  193. Unit string `description:"单位"`
  194. ClassifyId int `description:"分类id"`
  195. StartDate string `description:"起始日期"`
  196. EndDate string `description:"终止日期"`
  197. }
  198. type NameCheckEdbInfoReq struct {
  199. EdbCode string `description:"指标编码"`
  200. EdbName string `description:"指标名称"`
  201. Frequency string `description:"频率"`
  202. }
  203. func DeleteEdbInfoAndData(edbInfoId, source, subSource int) (err error) {
  204. to := global.DmSQL["data"].Begin()
  205. defer func() {
  206. if err != nil {
  207. _ = to.Rollback()
  208. } else {
  209. _ = to.Commit()
  210. }
  211. }()
  212. // 删除指标信息
  213. sql := ` DELETE FROM edb_info WHERE edb_info_id=? `
  214. err = to.Exec(sql, edbInfoId).Error
  215. if err != nil {
  216. return
  217. }
  218. // 删除指标的明细数据
  219. if source == utils.DATA_SOURCE_BUSINESS && utils.UseMongo {
  220. err = deleteAllEdbDataByMongo(to, edbInfoId, source, subSource)
  221. } else if source == utils.DATA_SOURCE_THS && subSource == utils.DATA_SUB_SOURCE_HIGH_FREQUENCY && utils.UseMongo {
  222. mogDataObj := mgo.EdbDataThsHf{}
  223. err = mogDataObj.RemoveMany(bson.M{"edb_info_id": edbInfoId})
  224. } else {
  225. err = deleteAllEdbDataByMysql(to, edbInfoId, source, subSource)
  226. }
  227. if err != nil {
  228. return
  229. }
  230. // 删除计算指标的关系
  231. sql = ` DELETE FROM edb_info_calculate_mapping WHERE edb_info_id=? `
  232. err = to.Exec(sql, edbInfoId).Error
  233. if err != nil {
  234. return
  235. }
  236. // 删除预测指标的配置
  237. sql = ` DELETE FROM predict_edb_conf WHERE predict_edb_info_id=? `
  238. err = to.Exec(sql, edbInfoId).Error
  239. if err != nil {
  240. return
  241. }
  242. // 删除跨品种分析标签绑定的指标
  243. sql = ` DELETE FROM chart_tag_variety WHERE edb_info_id=?`
  244. err = to.Exec(sql, edbInfoId).Error
  245. if err != nil {
  246. return
  247. }
  248. return
  249. }
  250. // deleteAllEdbDataByMysql
  251. // @Description: 删除指标的明细数据(mysql)
  252. // @author: Roc
  253. // @datetime 2024-05-09 13:31:54
  254. // @param to orm.TxOrmer
  255. // @param edbInfoId int
  256. // @param source int
  257. // @param subSource int
  258. // @return err error
  259. func deleteAllEdbDataByMysql(to *gorm.DB, edbInfoId, source, subSource int) (err error) {
  260. tableName := GetEdbDataTableName(source, subSource)
  261. if tableName == `` {
  262. return
  263. }
  264. sql := fmt.Sprintf(` DELETE FROM %s WHERE edb_info_id=? `, tableName)
  265. err = to.Exec(sql, edbInfoId).Error
  266. return
  267. }
  268. // deleteAllEdbDataByMongo
  269. // @Description: 删除指标的明细数据(mongo)
  270. // @author: Roc
  271. // @datetime 2024-05-09 13:31:37
  272. // @param to orm.TxOrmer
  273. // @param edbInfoId int
  274. // @param source int
  275. // @param subSource int
  276. // @return err error
  277. func deleteAllEdbDataByMongo(to *gorm.DB, edbInfoId, source, subSource int) (err error) {
  278. mogDataObj := mgo.EdbDataBusiness{}
  279. err = mogDataObj.RemoveMany(bson.M{"edb_info_id": edbInfoId})
  280. return
  281. }
  282. func GetEdbInfoCountByCondition(condition string, pars []interface{}) (count int, err error) {
  283. o := global.DmSQL["data"]
  284. sql := ` SELECT COUNT(1) AS count FROM edb_info WHERE 1=1 `
  285. if condition != "" {
  286. sql += condition
  287. }
  288. err = o.Raw(sql, pars...).Scan(&count).Error
  289. return
  290. }
  291. type EditEdbInfoReq struct {
  292. EdbInfoId int `description:"指标ID"`
  293. EdbName string `description:"指标名称"`
  294. Frequency string `description:"频率"`
  295. Unit string `description:"单位"`
  296. ClassifyId int `description:"分类id"`
  297. CalculateFormula string `description:"计算公式"`
  298. }
  299. type EditEdbEnInfoReq struct {
  300. EdbInfoId int `description:"指标ID"`
  301. EdbNameEn string `description:"英文指标名称"`
  302. UnitEn string `description:"英文单位"`
  303. }
  304. // EditEdbBaseInfoReq
  305. // @Description: 修改指标基础信息请求参数
  306. type EditEdbBaseInfoReq struct {
  307. EdbInfoId int `description:"指标ID"`
  308. EdbName string `description:"指标名称"`
  309. Unit string `description:"指标单位"`
  310. }
  311. // ModifyEdbEnInfo 修改指标英文信息
  312. func ModifyEdbEnInfo(item *EditEdbEnInfoReq) (err error) {
  313. o := global.DmSQL["data"]
  314. sql := ` UPDATE edb_info
  315. SET
  316. edb_name_en =?,
  317. unit_en = ?,
  318. modify_time = NOW()
  319. WHERE edb_info_id = ?`
  320. err = o.Exec(sql, item.EdbNameEn, item.UnitEn, item.EdbInfoId).Error
  321. return
  322. }
  323. type EdbInfoList struct {
  324. EdbInfoId int `orm:"column(edb_info_id);pk" gorm:"primaryKey" `
  325. EdbInfoType int `description:"指标类型,0:普通指标,1:预测指标"`
  326. SourceName string `description:"来源名称"`
  327. Source int `description:"来源id"`
  328. EdbCode string `description:"指标编码"`
  329. EdbNameEn string `description:"英文指标名称"`
  330. EdbName string `description:"指标名称"`
  331. Frequency string `description:"频率"`
  332. FrequencyEn string `description:"英文频率"`
  333. Unit string `description:"单位"`
  334. UnitEn string `description:"英文单位"`
  335. StartDate string `description:"起始日期"`
  336. EndDate string `description:"终止日期"`
  337. LatestDate string `description:"数据最新日期(实际日期)"`
  338. LatestValue float64 `description:"数据最新值(实际值)"`
  339. EndValue float64 `description:"数据的最新值(预测日期的最新值)"`
  340. ClassifyId int `description:"分类id"`
  341. UniqueCode string `description:"指标唯一编码"`
  342. SysUserId int `description:"创建人id"`
  343. SysUserRealName string `description:"创建人姓名"`
  344. ModifyTime string `description:"最新修改时间"`
  345. CreateTime string `description:"创建时间"`
  346. EdbNameAlias string `json:"-" description:"指标名称,别名"`
  347. EdbType int `description:"指标类型:1:基础指标,2:计算指标"`
  348. ChartImage string `description:"图表图片"`
  349. RuleType int `description:"预测规则,1:最新,2:固定值"`
  350. FixedValue float64 `description:"固定值"`
  351. DataList []*EdbData `gorm:"-" description:"实际指标数据"`
  352. PredictDataList []*EdbData `gorm:"-" description:"预测指标数据"`
  353. Button EdbClassifyItemsButton `gorm:"-" description:"操作权限"`
  354. IsEnEdb bool `description:"是否展示英文标识"`
  355. DataInsertConfig EdbDataInsertConfigItem `gorm:"-" description:"指标数据插入配置"`
  356. DataDateType string `description:"数据日期类型,枚举值:交易日、自然日"`
  357. EmptyType int `description:"空值处理类型(0查找前后35天,1不计算,2前值填充,3后值填充,4等于0)"`
  358. MaxEmptyType int `description:"MAX、MIN公式空值处理类型(1、等于0;2、跳过空值)"`
  359. SubSource int `description:"子数据来源:0:经济数据库,1:日期序列"`
  360. SubSourceName string `description:"子数据来源名称"`
  361. IndicatorCode string `description:"指标代码"`
  362. StockCode string `description:"证券代码"`
  363. NoUpdate int8 `description:"是否停止更新,0:继续更新;1:停止更新"`
  364. IsJoinPermission int `description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
  365. HaveOperaAuth bool `description:"是否有数据权限,默认:false"`
  366. IsSupplierStop int `description:"是否供应商停更:1:停更,0:未停更"`
  367. CollectClassifyIdList []int `description:"所属收藏分类id列表" gorm:"-"`
  368. SharedUserIdList []int `description:"共享用户id列表" gorm:"-"`
  369. PublicStatus int `description:"公开状态;0:未公开;1:审批中;2:已驳回;3:已公开"`
  370. EdbPublicClassifyId int `description:"指标公开分类id"`
  371. PublicTime time.Time `description:"设置公开的时间"`
  372. }
  373. type EdbDataInsertConfigItem struct {
  374. Date string `description:"插入的日期"`
  375. RealDate string `description:"实际最晚的日期"`
  376. Value string `description:"插入的值"`
  377. }
  378. type EdbData struct {
  379. EdbDataId int `orm:"column(edb_data_id);pk" gorm:"primaryKey" `
  380. EdbInfoId int
  381. DataTime string
  382. Value float64
  383. }
  384. func (e *EdbData) AfterFind(db *gorm.DB) (err error) {
  385. tmpDataTime, err := time.Parse(utils.FormatDateWallWithLoc, e.DataTime)
  386. if err != nil {
  387. return nil
  388. }
  389. e.DataTime = utils.TimeTransferString(utils.FormatDate, tmpDataTime)
  390. return nil
  391. }
  392. // ConvertToResp
  393. // @Description: 转成需要输出的格式
  394. // @receiver m
  395. func (e *EdbData) ConvertToResp() {
  396. e.DataTime = utils.GormDateStrToDateStr(e.DataTime)
  397. return
  398. }
  399. type EdbInfoListResp struct {
  400. Paging *paging.PagingItem
  401. Item *EdbInfoList
  402. ClassifyList []*EdbClassifyIdItems
  403. }
  404. type WindEdbInfoList struct {
  405. *EdbInfoList
  406. ClassifyList []*EdbClassifyIdItems
  407. }
  408. func (e *EdbInfoList) AfterFind(db *gorm.DB) (err error) {
  409. tmpLatestDate, err := time.Parse(utils.FormatDateWallWithLoc, e.LatestDate)
  410. if err != nil {
  411. return nil
  412. }
  413. tmpStartDate, err := time.Parse(utils.FormatDateWallWithLoc, e.StartDate)
  414. if err != nil {
  415. return nil
  416. }
  417. tmpEndDate, err := time.Parse(utils.FormatDateWallWithLoc, e.EndDate)
  418. if err != nil {
  419. return nil
  420. }
  421. tmpCreateTime, err := time.Parse(utils.FormatDateWallWithLoc, e.CreateTime)
  422. if err != nil {
  423. return nil
  424. }
  425. tmpModifyTime, err := time.Parse(utils.FormatDateWallWithLoc, e.ModifyTime)
  426. if err != nil {
  427. return nil
  428. }
  429. e.LatestDate = utils.TimeTransferString(utils.FormatDate, tmpLatestDate)
  430. e.StartDate = utils.TimeTransferString(utils.FormatDate, tmpStartDate)
  431. e.EndDate = utils.TimeTransferString(utils.FormatDate, tmpEndDate)
  432. e.CreateTime = utils.TimeTransferString(utils.FormatDateTime, tmpCreateTime)
  433. e.ModifyTime = utils.TimeTransferString(utils.FormatDateTime, tmpModifyTime)
  434. return nil
  435. }
  436. func GetEdbInfoByCondition(condition string, pars []interface{}) (item *EdbInfoList, err error) {
  437. o := global.DmSQL["data"]
  438. sql := ` SELECT * FROM edb_info WHERE 1=1 `
  439. if condition != "" {
  440. sql += condition
  441. }
  442. err = o.Raw(sql, pars...).First(&item).Error
  443. return
  444. }
  445. func GetEdbInfoEsByCondition(condition string, pars []interface{}) (item *EdbInfoEs, err error) {
  446. o := global.DmSQL["data"]
  447. sql := ` SELECT * FROM edb_info WHERE 1=1 `
  448. if condition != "" {
  449. sql += condition
  450. }
  451. err = o.Raw(sql, pars...).First(&item).Error
  452. return
  453. }
  454. func GetEdbDataCountByCondition(condition string, pars []interface{}, source, subSource int) (count int, err error) {
  455. o := global.DmSQL["data"]
  456. tableName := GetEdbDataTableName(source, subSource)
  457. sql := ` SELECT COUNT(1) AS count FROM %s WHERE 1=1 `
  458. sql = fmt.Sprintf(sql, tableName)
  459. if condition != "" {
  460. sql += condition
  461. }
  462. err = o.Raw(sql, pars...).Scan(&count).Error
  463. return
  464. }
  465. func GetEdbDataListByCondition(condition string, pars []interface{}, source, subSource, pageSize, startSize int) (items []*EdbData, err error) {
  466. o := global.DmSQL["data"]
  467. tableName := GetEdbDataTableName(source, subSource)
  468. sql := ` SELECT * FROM %s WHERE 1=1 `
  469. sql = fmt.Sprintf(sql, tableName)
  470. if condition != "" {
  471. sql += condition
  472. }
  473. sql += ` ORDER BY data_time DESC `
  474. sql += ` LIMIT ?,? `
  475. pars = append(pars, startSize)
  476. pars = append(pars, pageSize)
  477. err = o.Raw(sql, pars...).Find(&items).Error
  478. if err != nil {
  479. return
  480. }
  481. // 日期处理
  482. for _, v := range items {
  483. v.ConvertToResp()
  484. }
  485. return
  486. }
  487. // GetAllEdbDataListByCondition 根据条件获取所有的数据
  488. func GetAllEdbDataListByCondition(condition string, pars []interface{}, source, subSource int) (items []*EdbData, err error) {
  489. tableName := GetEdbDataTableName(source, subSource)
  490. sql := ` SELECT * FROM %s WHERE 1=1 `
  491. sql = fmt.Sprintf(sql, tableName)
  492. if condition != "" {
  493. sql += condition
  494. }
  495. sql += ` ORDER BY data_time DESC `
  496. err = global.DmSQL["data"].Raw(sql, pars...).Scan(&items).Error
  497. if err != nil {
  498. return
  499. }
  500. // 日期处理
  501. for _, v := range items {
  502. v.ConvertToResp()
  503. }
  504. return
  505. }
  506. func GetEdbInfoByNewest() (item *EdbInfoList, err error) {
  507. sql := ` SELECT * FROM edb_info WHERE 1=1 ORDER BY modify_time DESC LIMIT 1 `
  508. err = global.DmSQL["data"].Raw(sql).Scan(&item).Error
  509. return
  510. }
  511. func ModifyEdbInfoModifyTime(edbInfoId int64) (err error) {
  512. sql := ` UPDATE edb_info SET modify_time = NOW() WHERE edb_info_id = ? `
  513. err = global.DmSQL["data"].Exec(sql, edbInfoId).Error
  514. return
  515. }
  516. type MoveEdbInfoReq struct {
  517. EdbInfoId int `description:"指标ID"`
  518. PrevEdbInfoId int `description:"上一个指标ID"`
  519. NextEdbInfoId int `description:"下一个指标ID"`
  520. ClassifyId int `description:"分类id"`
  521. }
  522. func MoveEdbInfo(edbInfoId, classifyId int) (err error) {
  523. sql := ` UPDATE edb_info
  524. SET
  525. classify_id = ?
  526. WHERE edb_info_id = ?`
  527. err = global.DmSQL["data"].Exec(sql, classifyId, edbInfoId).Error
  528. return
  529. }
  530. func GetChartEdbMappingCount(edbInfoId int) (count int, err error) {
  531. sql := ` SELECT COUNT(1) AS count FROM chart_edb_mapping WHERE edb_info_id=? `
  532. err = global.DmSQL["data"].Raw(sql, edbInfoId).Scan(&count).Error
  533. return
  534. }
  535. type ChartEdbInfo struct {
  536. EdbInfoId int `description:"指标id"`
  537. EdbName string `description:"指标名称"`
  538. SourceName string `json:"-"`
  539. EdbNameAlias string `json:"-" description:"指标名称,别名"`
  540. }
  541. func EdbInfoSearchByKeyWord(keyword string) (searchList []*ChartEdbInfo, err error) {
  542. pars := make([]interface{}, 0)
  543. sql := ` SELECT edb_info_id,edb_name,source_name FROM edb_info WHERE 1=1 AND edb_info_type = 0 `
  544. if keyword != "" {
  545. sql += ` AND (edb_name LIKE ? OR edb_code LIKE ? ) `
  546. pars = append(pars, utils.GetLikeKeyword(keyword), utils.GetLikeKeyword(keyword))
  547. }
  548. sql += ` ORDER BY create_time DESC `
  549. err = global.DmSQL["data"].Raw(sql, pars...).Scan(&searchList).Error
  550. return
  551. }
  552. type EdbInfoMaxAndMinInfo struct {
  553. MinDate string `description:"最小日期"`
  554. MaxDate string `description:"最大日期"`
  555. MinValue float64 `description:"最小值"`
  556. MaxValue float64 `description:"最大值"`
  557. LatestValue float64 `description:"最新值"`
  558. }
  559. // GetEdbInfoMaxAndMinInfo
  560. // @Description: 获取指标最大最小值
  561. // @author: Roc
  562. // @datetime 2024-05-07 15:34:00
  563. // @param source int
  564. // @param subSource int
  565. // @param edbCode string
  566. // @return item *EdbInfoMaxAndMinInfo
  567. // @return err error
  568. func GetEdbInfoMaxAndMinInfo(source, subSource int, edbCode string) (item *EdbInfoMaxAndMinInfo, err error) {
  569. // 自有数据需要额外处理(从mongo获取)
  570. if source == utils.DATA_SOURCE_BUSINESS && utils.UseMongo {
  571. return GetEdbInfoMaxAndMinInfoByMongo(source, subSource, edbCode)
  572. }
  573. if source == utils.DATA_SOURCE_THS && subSource == utils.DATA_SUB_SOURCE_HIGH_FREQUENCY && utils.UseMongo {
  574. return GetThsHfEdbInfoMaxAndMinInfoByMongo(source, subSource, edbCode)
  575. }
  576. // 默认走mysql
  577. return GetEdbInfoMaxAndMinInfoByMysql(source, subSource, edbCode)
  578. }
  579. // GetEdbInfoMaxAndMinInfoByMysql
  580. // @Description: 从mysql中获取指标最大最小值
  581. // @author: Roc
  582. // @datetime 2024-05-07 15:33:43
  583. // @param source int
  584. // @param subSource int
  585. // @param edbCode string
  586. // @return item *EdbInfoMaxAndMinInfo
  587. // @return err error
  588. func GetEdbInfoMaxAndMinInfoByMysql(source, subSource int, edbCode string) (item *EdbInfoMaxAndMinInfo, err error) {
  589. o := global.DmSQL["data"]
  590. sql := ``
  591. tableName := GetEdbDataTableName(source, subSource)
  592. 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=? `
  593. sql = fmt.Sprintf(sql, tableName)
  594. err = global.DmSQL["data"].Raw(sql, edbCode).Scan(&item).Error
  595. if err != nil {
  596. return
  597. }
  598. var latest_value float64
  599. sql = ` SELECT value AS latest_value FROM %s WHERE edb_code=? ORDER BY data_time DESC LIMIT 1 `
  600. sql = fmt.Sprintf(sql, tableName)
  601. err = o.Raw(sql, edbCode).Scan(&latest_value).Error
  602. item.LatestValue = latest_value
  603. return
  604. }
  605. // GetEdbInfoMaxAndMinInfoByMongo
  606. // @Description: 从mongo中获取指标最大最小值
  607. // @author: Roc
  608. // @datetime 2024-05-07 15:33:53
  609. // @param source int
  610. // @param subSource int
  611. // @param edbCode string
  612. // @return item *EdbInfoMaxAndMinInfo
  613. // @return err error
  614. func GetEdbInfoMaxAndMinInfoByMongo(source, subSource int, edbCode string) (item *EdbInfoMaxAndMinInfo, err error) {
  615. mogDataObj := new(mgo.EdbDataBusiness)
  616. pipeline := []bson.M{
  617. {"$match": bson.M{"edb_code": edbCode}},
  618. {"$group": bson.M{
  619. "_id": nil,
  620. "min_date": bson.M{"$min": "$data_time"},
  621. "max_date": bson.M{"$max": "$data_time"},
  622. "min_value": bson.M{"$min": "$value"},
  623. "max_value": bson.M{"$max": "$value"},
  624. }},
  625. {"$project": bson.M{"_id": 0}}, // 可选,如果不需要_id字段
  626. }
  627. result, err := mogDataObj.GetEdbInfoMaxAndMinInfo(pipeline)
  628. if err != nil {
  629. fmt.Println("EdbDataBusiness getEdbDataBusinessList Err:" + err.Error())
  630. return
  631. }
  632. if !result.MaxDate.IsZero() {
  633. whereQuery := bson.M{"edb_code": edbCode, "data_time": result.MaxDate}
  634. selectParam := bson.D{{"value", 1}, {"_id", 0}}
  635. latestValue, tmpErr := mogDataObj.GetLatestValue(whereQuery, selectParam)
  636. if tmpErr != nil {
  637. err = tmpErr
  638. return
  639. }
  640. result.LatestValue = latestValue.Value
  641. result.EndValue = latestValue.Value
  642. }
  643. item = &EdbInfoMaxAndMinInfo{
  644. MinDate: result.MinDate.Format(utils.FormatDate),
  645. MaxDate: result.MaxDate.Format(utils.FormatDate),
  646. MinValue: result.MinValue,
  647. MaxValue: result.MaxValue,
  648. LatestValue: result.LatestValue,
  649. }
  650. return
  651. }
  652. func ModifyEdbInfoMaxAndMinInfo(edbInfoId int, item *EdbInfoMaxAndMinInfo) (err error) {
  653. 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=? `
  654. err = global.DmSQL["data"].Exec(sql, item.MinDate, item.MaxDate, item.MinValue, item.MaxValue, item.MaxDate, item.LatestValue, edbInfoId).Error
  655. return
  656. }
  657. func GetEdbInfoFilter(condition string, pars []interface{}) (list []*EdbInfoList, err error) {
  658. sql := ` SELECT * FROM edb_info WHERE 1=1 AND edb_info_type = 0 `
  659. if condition != "" {
  660. sql += condition
  661. }
  662. sql += ` ORDER BY create_time DESC `
  663. err = global.DmSQL["data"].Raw(sql, pars...).Scan(&list).Error
  664. return
  665. }
  666. type AddEdbInfoResp struct {
  667. EdbInfoId int `description:"指标ID"`
  668. UniqueCode string `description:"指标唯一编码"`
  669. ClassifyId int `description:"分类id"`
  670. ExistEdbName []string `description:"重复指标名称"`
  671. }
  672. // GetEdbInfoCalculateListByCondition 获取指标关系列表
  673. func GetEdbInfoCalculateListByCondition(condition string, pars []interface{}) (items []*EdbInfoCalculateMapping, err error) {
  674. sql := ` SELECT * FROM edb_info_calculate_mapping WHERE 1=1 `
  675. if condition != "" {
  676. sql += condition
  677. }
  678. err = global.DmSQL["data"].Raw(sql, pars...).Scan(&items).Error
  679. return
  680. }
  681. // GetEdbInfoAllCalculateByEdbInfoIdList 根据指标id集合 获取基础指标对应的所有计算指标
  682. func GetEdbInfoAllCalculateByEdbInfoIdList(fromEdbInfoIdList []int) (list []*EdbInfo, err error) {
  683. num := len(fromEdbInfoIdList)
  684. if num <= 0 {
  685. return
  686. }
  687. edbEdbInfoIdList := make([]int, 0)
  688. sql := ` SELECT DISTINCT b.edb_info_id FROM edb_info_calculate_mapping AS a
  689. INNER JOIN edb_info AS b ON a.edb_info_id=b.edb_info_id
  690. WHERE a.from_edb_info_id in (` + utils.GetOrmInReplace(num) + `)
  691. ORDER BY b.edb_info_id ASC `
  692. err = global.DmSQL["data"].Raw(sql, fromEdbInfoIdList).Scan(&edbEdbInfoIdList).Error
  693. if err != nil {
  694. return
  695. }
  696. // 查询来的实际id集合
  697. num = len(edbEdbInfoIdList)
  698. if num <= 0 {
  699. return
  700. }
  701. sql = ` SELECT * FROM edb_info WHERE edb_info_id IN (` + utils.GetOrmInReplace(num) + `) ORDER BY edb_info_id ASC `
  702. err = global.DmSQL["data"].Raw(sql, edbEdbInfoIdList).Find(&list).Error
  703. return
  704. }
  705. func GetRefreshEdbInfoFromBase(edbInfoId, source int) (baseEdbInfoArr, calculateInfoArr []*EdbInfo, err error) {
  706. calculateList, err := GetEdbInfoCalculateMap(edbInfoId, source)
  707. if err != nil && !utils.IsErrNoRow(err) {
  708. return
  709. }
  710. for _, item := range calculateList {
  711. if item.EdbInfoId == edbInfoId { // 如果查出来关联的指标就是自己的话,那么就过滤
  712. continue
  713. }
  714. if item.EdbType == 1 {
  715. baseEdbInfoArr = append(baseEdbInfoArr, item)
  716. } else {
  717. calculateInfoArr = append(calculateInfoArr, item)
  718. newBaseEdbInfoArr, newCalculateInfoArr, _ := GetRefreshEdbInfoFromBase(item.EdbInfoId, item.Source)
  719. baseEdbInfoArr = append(baseEdbInfoArr, newBaseEdbInfoArr...)
  720. calculateInfoArr = append(calculateInfoArr, newCalculateInfoArr...)
  721. }
  722. }
  723. return
  724. }
  725. func ModifyEdbInfoDataStatus(edbInfoId int64, source, subSource int, edbCode string) (err error) {
  726. sql := ``
  727. tableName := GetEdbDataTableName(source, subSource)
  728. sql = ` UPDATE %s SET edb_info_id=?,modify_time=NOW() WHERE edb_code=? `
  729. sql = fmt.Sprintf(sql, tableName)
  730. err = global.DmSQL["data"].Exec(sql, edbInfoId, edbCode).Error
  731. return
  732. }
  733. // GetFirstEdbInfoByClassifyId 获取当前分类下,且排序数相同 的排序第一条的数据
  734. func GetFirstEdbInfoByClassifyId(classifyId int) (item *EdbInfo, err error) {
  735. sql := ` SELECT * FROM edb_info WHERE classify_id=? order by sort asc,edb_info_id asc limit 1`
  736. err = global.DmSQL["data"].Raw(sql, classifyId).First(&item).Error
  737. return
  738. }
  739. // UpdateEdbInfoSortByClassifyId 根据分类id更新排序
  740. func UpdateEdbInfoSortByClassifyId(classifyId, nowSort int, prevEdbInfoId int, updateSort string) (err error) {
  741. sql := ` update edb_info set sort = ` + updateSort + ` WHERE classify_id=?`
  742. if prevEdbInfoId > 0 {
  743. sql += ` AND ( sort > ? or ( edb_info_id > ` + fmt.Sprint(prevEdbInfoId) + ` and sort=` + fmt.Sprint(nowSort) + ` )) `
  744. } else {
  745. sql += ` AND ( sort > ? )`
  746. }
  747. err = global.DmSQL["data"].Exec(sql, classifyId, nowSort).Error
  748. return
  749. }
  750. // Update 更新指标基础信息
  751. func (edbInfo *EdbInfo) Update(cols []string) (err error) {
  752. err = global.DmSQL["data"].Select(cols).Updates(edbInfo).Error
  753. return
  754. }
  755. // UpdateById 更新指标基础信息
  756. func (m *EdbInfo) UpdateById(edbInfoId int, updateMap map[string]interface{}) (err error) {
  757. err = global.DmSQL["data"].Model(m).Where("edb_info_id = ? ", edbInfoId).Updates(updateMap).Error
  758. return
  759. }
  760. type EdbInfoDataResp struct {
  761. EdbInfo *EdbInfo
  762. DataList []*EdbDataList
  763. }
  764. type EdbInfoDataFullClassifyResp struct {
  765. EdbInfo *EdbInfoFullClassify
  766. DataList []*EdbDataList
  767. }
  768. type EdbInfoReplaceReq struct {
  769. OldEdbInfoId int `description:"原指标ID"`
  770. NewEdbInfoId int `description:"替换为指标ID"`
  771. }
  772. // ReplaceChartEdb 替换图表中的指标
  773. func ReplaceChartEdb(oldEdbInfo, newEdbInfo *EdbInfo) (relationEdbInfoIdList []int, replaceChartTotal, replaceCalculateTotal int, err error) {
  774. var errmsg string
  775. relationEdbInfoIdList = make([]int, 0) // 关联的指标id
  776. logMsg := `` // 记录替换的日志
  777. to := global.DmSQL["data"].Begin()
  778. defer func() {
  779. if err != nil {
  780. _ = to.Rollback()
  781. } else {
  782. _ = to.Commit()
  783. if logMsg != `` {
  784. utils.FileLog.Info(fmt.Sprintf("替换指标记录,旧的指标id:%d,新的指标id:%d;%s", oldEdbInfo.EdbInfoId, newEdbInfo.EdbInfoId, logMsg))
  785. }
  786. }
  787. if errmsg != "" {
  788. fmt.Println("errmsg:" + errmsg)
  789. }
  790. if err != nil && errmsg != "" {
  791. go alarm_msg.SendAlarmMsg("替换图表中的指标失败提醒,errmsg:"+errmsg, 3)
  792. //go utils.SendEmail(utils.APPNAME+"【"+utils.RunMode+"】"+"替换指标失败提醒", "errmsg:"+errmsg, utils.EmailSendToUsers)
  793. }
  794. }()
  795. //替换图表
  796. {
  797. chartEdbMappingList := make([]*ChartEdbInfoMapping, 0)
  798. csql := `SELECT * FROM chart_edb_mapping WHERE edb_info_id=?`
  799. err = to.Raw(csql, oldEdbInfo.EdbInfoId).Scan(&chartEdbMappingList).Error
  800. if err != nil {
  801. errmsg = "获取指标关联图表信息失败:Err:" + err.Error()
  802. return
  803. }
  804. replaceChartTotal = len(chartEdbMappingList)
  805. // 查询所有的相关的图表信息
  806. chartInfoIds := make([]string, 0)
  807. if len(chartEdbMappingList) > 0 {
  808. for _, chartEdbMapping := range chartEdbMappingList {
  809. chartInfoIds = append(chartInfoIds, strconv.Itoa(chartEdbMapping.ChartInfoId))
  810. }
  811. }
  812. if len(chartInfoIds) > 0 {
  813. chartInfoList, e := GetChartInfoListByChartIdList(chartInfoIds)
  814. if e != nil {
  815. err = e
  816. errmsg = "获取图表信息失败:Err:" + e.Error()
  817. return
  818. }
  819. for _, chartInfo := range chartInfoList {
  820. updateStr := make([]string, 0)
  821. if chartInfo.EdbInfoIds != "" && strings.Contains(chartInfo.EdbInfoIds, strconv.Itoa(oldEdbInfo.EdbInfoId)) {
  822. //需要更换
  823. //解析字符串
  824. edbInfoIds := strings.Split(chartInfo.EdbInfoIds, ",")
  825. for i, edbInfoId := range edbInfoIds {
  826. if edbInfoId == strconv.Itoa(oldEdbInfo.EdbInfoId) {
  827. edbInfoIds[i] = strconv.Itoa(newEdbInfo.EdbInfoId)
  828. }
  829. }
  830. chartInfo.EdbInfoIds = strings.Join(edbInfoIds, ",")
  831. updateStr = append(updateStr, "EdbInfoIds")
  832. }
  833. if chartInfo.ExtraConfig != "" || chartInfo.BarConfig != "" {
  834. //判断是否是拟合方程或者散点图截面图
  835. if chartInfo.Source == utils.CHART_SOURCE_FUTURE_GOOD {
  836. // 商品价格曲线图的一些配置
  837. var barConfig FutureGoodBarChartInfoReq
  838. err = json.Unmarshal([]byte(chartInfo.BarConfig), &barConfig)
  839. if err != nil {
  840. errmsg = "商品价格曲线图配置异常 json.Unmarshal:Err:" + err.Error()
  841. return
  842. }
  843. if barConfig.BaseEdbInfoId == oldEdbInfo.EdbInfoId {
  844. barConfig.BaseEdbInfoId = newEdbInfo.EdbInfoId
  845. }
  846. for k, item := range barConfig.EdbInfoIdList {
  847. if item.EdbInfoId == oldEdbInfo.EdbInfoId && item.Source == 1 {
  848. barConfig.EdbInfoIdList[k].EdbInfoId = newEdbInfo.EdbInfoId
  849. }
  850. }
  851. // 更新图表配置信息
  852. // 重新序列化
  853. configJson, e := json.Marshal(barConfig)
  854. if e != nil {
  855. err = e
  856. errmsg = "图表配置信息序列化失败:json.Marshal Err: " + e.Error()
  857. return
  858. }
  859. configStr := string(configJson)
  860. chartInfo.BarConfig = configStr
  861. updateStr = append(updateStr, "BarConfig")
  862. } else if chartInfo.Source == utils.CHART_SOURCE_FUTURE_GOOD_PROFIT {
  863. // 商品利润曲线图的一些配置
  864. var extraConf FutureGoodProfitChartInfoReq
  865. err = json.Unmarshal([]byte(chartInfo.ExtraConfig), &extraConf)
  866. if err != nil {
  867. errmsg = "商品利润曲线图配置异常 json.Unmarshal:Err:" + err.Error()
  868. return
  869. }
  870. if extraConf.BaseEdbInfoId == oldEdbInfo.EdbInfoId {
  871. extraConf.BaseEdbInfoId = newEdbInfo.EdbInfoId
  872. }
  873. for k, v := range extraConf.EdbInfoIdList {
  874. if v == oldEdbInfo.EdbInfoId {
  875. extraConf.EdbInfoIdList[k] = newEdbInfo.EdbInfoId
  876. }
  877. }
  878. // 更新图表配置信息
  879. // 重新序列化
  880. configJson, e := json.Marshal(extraConf)
  881. if e != nil {
  882. err = e
  883. errmsg = "图表配置信息序列化失败:json.Marshal Err: " + e.Error()
  884. return
  885. }
  886. configStr := string(configJson)
  887. chartInfo.ExtraConfig = configStr
  888. updateStr = append(updateStr, "ExtraConfig")
  889. } else if chartInfo.Source == utils.CHART_SOURCE_LINE_EQUATION {
  890. //解析配置内容
  891. var lineChartInfoConfig request.LineChartInfoReq
  892. err = json.Unmarshal([]byte(chartInfo.ExtraConfig), &lineChartInfoConfig)
  893. if err != nil {
  894. errmsg = "获取图表配置信息失败 json.Unmarshal:Err:" + err.Error()
  895. return
  896. }
  897. xEdbInfoIdList := lineChartInfoConfig.XEdbInfoIdList
  898. yEdbInfoIdList := lineChartInfoConfig.YEdbInfoIdList
  899. if len(xEdbInfoIdList) > 0 {
  900. // 循环判断是否存在
  901. for k, xEdbInfoId := range xEdbInfoIdList {
  902. if xEdbInfoId == oldEdbInfo.EdbInfoId {
  903. xEdbInfoIdList[k] = newEdbInfo.EdbInfoId
  904. }
  905. }
  906. }
  907. if len(yEdbInfoIdList) > 0 {
  908. // 循环判断是否存在
  909. for k, yEdbInfoId := range yEdbInfoIdList {
  910. if yEdbInfoId == oldEdbInfo.EdbInfoId {
  911. yEdbInfoIdList[k] = newEdbInfo.EdbInfoId
  912. }
  913. }
  914. }
  915. // 替换新的指标信息
  916. lineChartInfoConfig.XEdbInfoIdList = xEdbInfoIdList
  917. lineChartInfoConfig.YEdbInfoIdList = yEdbInfoIdList
  918. // 重新序列化
  919. lineChartInfoConfigJson, e := json.Marshal(lineChartInfoConfig)
  920. if e != nil {
  921. err = e
  922. errmsg = "图表配置信息序列化失败:json.Marshal Err: " + e.Error()
  923. return
  924. }
  925. lineChartInfoConfigStr := string(lineChartInfoConfigJson)
  926. // 更新图表配置信息
  927. chartInfo.ExtraConfig = lineChartInfoConfigStr
  928. updateStr = append(updateStr, "ExtraConfig")
  929. } else if chartInfo.ChartType == utils.CHART_TYPE_SECTION_SCATTER {
  930. //解析配置内容
  931. var tmpExtraConfig SectionScatterReq
  932. err = json.Unmarshal([]byte(chartInfo.ExtraConfig), &tmpExtraConfig)
  933. if err != nil {
  934. errmsg = "获取截面散点图配置信息失败 json.Unmarshal:Err:" + err.Error()
  935. return
  936. }
  937. //找到指标信息,并替换
  938. if len(tmpExtraConfig.SeriesList) > 0 {
  939. for k1, series := range tmpExtraConfig.SeriesList {
  940. for k2, item := range series.EdbInfoList {
  941. if item.XEdbInfoId == oldEdbInfo.EdbInfoId {
  942. tmpExtraConfig.SeriesList[k1].EdbInfoList[k2].XEdbInfoId = newEdbInfo.EdbInfoId
  943. }
  944. if item.YEdbInfoId == oldEdbInfo.EdbInfoId {
  945. tmpExtraConfig.SeriesList[k1].EdbInfoList[k2].YEdbInfoId = newEdbInfo.EdbInfoId
  946. }
  947. }
  948. }
  949. }
  950. // 重新序列化
  951. sectionScatterConfigJson, e := json.Marshal(tmpExtraConfig)
  952. if e != nil {
  953. err = e
  954. errmsg = "图表配置信息序列化失败:json.Marshal Err: " + e.Error()
  955. return
  956. }
  957. sectionScatterConfigStr := string(sectionScatterConfigJson)
  958. // 更新图表配置信息
  959. chartInfo.ExtraConfig = sectionScatterConfigStr
  960. updateStr = append(updateStr, "ExtraConfig")
  961. } else if chartInfo.ChartType == utils.CHART_TYPE_SECTION_COMBINE {
  962. //解析配置内容
  963. var tmpExtraConfig ChartSectionExtraConf
  964. err = json.Unmarshal([]byte(chartInfo.ExtraConfig), &tmpExtraConfig)
  965. if err != nil {
  966. errmsg = "获取截面散点图配置信息失败 json.Unmarshal:Err:" + err.Error()
  967. return
  968. }
  969. //找到指标信息,并替换
  970. if len(tmpExtraConfig.DateConfList) > 0 {
  971. for k1, item := range tmpExtraConfig.DateConfList {
  972. if item.EdbInfoId > 0 && item.EdbInfoId == oldEdbInfo.EdbInfoId {
  973. tmpExtraConfig.DateConfList[k1].EdbInfoId = newEdbInfo.EdbInfoId
  974. }
  975. }
  976. }
  977. // 重新序列化
  978. configJson, e := json.Marshal(tmpExtraConfig)
  979. if e != nil {
  980. err = e
  981. errmsg = "图表配置信息序列化失败:json.Marshal Err: " + e.Error()
  982. return
  983. }
  984. configStr := string(configJson)
  985. // 更新图表配置信息
  986. chartInfo.ExtraConfig = configStr
  987. updateStr = append(updateStr, "ExtraConfig")
  988. }
  989. }
  990. if len(updateStr) > 0 {
  991. updateStr = append(updateStr, "ModifyTime")
  992. chartInfo.ModifyTime = time.Now()
  993. err = chartInfo.Update(updateStr)
  994. if err != nil {
  995. errmsg = "更新图表信息失败:chartInfo.Update Err: " + err.Error()
  996. return
  997. }
  998. }
  999. }
  1000. }
  1001. // 查询所有的图表信息
  1002. if len(chartEdbMappingList) > 0 {
  1003. chartInfoIdList := make([]string, 0)
  1004. for _, mv := range chartEdbMappingList {
  1005. //获取图表所有指标信息
  1006. chartEdbList := make([]*ChartEdbInfoMapping, 0)
  1007. csql := `SELECT * FROM chart_edb_mapping WHERE chart_info_id=?`
  1008. err = to.Raw(csql, mv.ChartInfoId).Scan(&chartEdbList).Error
  1009. if err != nil {
  1010. errmsg = "获取图表所有指标信息失败:Err:" + err.Error()
  1011. return
  1012. }
  1013. // 查询图表信息
  1014. var minData, maxData float64
  1015. minData = newEdbInfo.MinValue
  1016. maxData = newEdbInfo.MaxValue
  1017. for _, cv := range chartEdbList {
  1018. if mv.IsAxis == cv.IsAxis {
  1019. if minData > cv.MinData {
  1020. minData = cv.MinData
  1021. }
  1022. if maxData < cv.MaxData {
  1023. maxData = cv.MaxData
  1024. }
  1025. }
  1026. }
  1027. //修改图表关联指标
  1028. rsql := ` UPDATE chart_edb_mapping SET edb_info_id=?,max_data=?,min_data=?,modify_time=NOW() WHERE chart_edb_mapping_id=? `
  1029. err = to.Exec(rsql, newEdbInfo.EdbInfoId, maxData, minData, mv.ChartEdbMappingId).Error
  1030. if err != nil {
  1031. errmsg = "更新图库指标信息失败:Err:" + err.Error()
  1032. return
  1033. }
  1034. rsql = ` UPDATE chart_series_edb_mapping SET edb_info_id=? WHERE edb_info_id=? and chart_info_id=?`
  1035. err = to.Exec(rsql, newEdbInfo.EdbInfoId, oldEdbInfo.EdbInfoType, mv.ChartInfoId).Error
  1036. if err != nil {
  1037. errmsg = "更新图库系列指标信息失败:Err:" + err.Error()
  1038. return
  1039. }
  1040. chartInfoIdList = append(chartInfoIdList, fmt.Sprint(mv.ChartInfoId))
  1041. }
  1042. logMsg += `涉及到的图表id:` + strings.Join(chartInfoIdList, ",") + ";"
  1043. }
  1044. }
  1045. //替换计算指标
  1046. {
  1047. //获取所有包含的计算指标
  1048. mappingList := make([]*EdbInfoCalculateMapping, 0)
  1049. queryList := make([]*EdbInfoCalculateMapping, 0)
  1050. msql := ` SELECT * FROM edb_info_calculate_mapping WHERE from_edb_info_id = ?`
  1051. err = to.Raw(msql, oldEdbInfo.EdbInfoId).Find(&queryList).Error
  1052. if err != nil {
  1053. errmsg = "获取计算指标关联基础指标信息失败:Err:" + err.Error()
  1054. return
  1055. }
  1056. exists := make(map[int]bool)
  1057. for _, v := range queryList {
  1058. if exists[v.EdbInfoId] {
  1059. continue
  1060. }
  1061. exists[v.EdbInfoId] = true
  1062. mappingList = append(mappingList, v)
  1063. }
  1064. replaceCalculateTotal = len(mappingList)
  1065. //计算指标
  1066. if len(mappingList) > 0 {
  1067. edbInfoIdList := make([]string, 0)
  1068. for _, mv := range mappingList {
  1069. //如果即将替换的指标与当前指标id一致,那么就退出当前循环,进入下一循环
  1070. if mv.EdbInfoId == newEdbInfo.EdbInfoId {
  1071. continue
  1072. }
  1073. //替换原指标
  1074. 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=? `
  1075. err = to.Exec(msql, newEdbInfo.EdbInfoId, newEdbInfo.EdbCode, newEdbInfo.EdbName, newEdbInfo.Source, newEdbInfo.SourceName, mv.EdbInfoCalculateMappingId).Error
  1076. if err != nil {
  1077. return
  1078. }
  1079. relationEdbInfoIdList = append(relationEdbInfoIdList, mv.EdbInfoId)
  1080. edbInfoIdList = append(edbInfoIdList, fmt.Sprint(mv.EdbInfoId))
  1081. }
  1082. logMsg += `涉及到的指标id:` + strings.Join(edbInfoIdList, ",") + ";"
  1083. }
  1084. }
  1085. // 替换预测指标中的来源指标
  1086. {
  1087. //获取所有包含的计算指标
  1088. predictEdbConfList := make([]*PredictEdbConf, 0)
  1089. queryList := make([]*PredictEdbConf, 0)
  1090. msql := ` SELECT * FROM predict_edb_conf WHERE source_edb_info_id = ?`
  1091. err = to.Raw(msql, oldEdbInfo.EdbInfoId).Scan(&predictEdbConfList).Error
  1092. if err != nil {
  1093. errmsg = "获取关联的预测指标信息失败:Err:" + err.Error()
  1094. return
  1095. }
  1096. exists := make(map[int]bool)
  1097. for _, v := range queryList {
  1098. if exists[v.PredictEdbInfoId] {
  1099. continue
  1100. }
  1101. exists[v.PredictEdbInfoId] = true
  1102. predictEdbConfList = append(predictEdbConfList, v)
  1103. }
  1104. replaceCalculateTotal += len(predictEdbConfList)
  1105. //替换预测指标的来源指标
  1106. msql = `UPDATE predict_edb_conf SET source_edb_info_id=? WHERE source_edb_info_id=? `
  1107. err = to.Exec(msql, newEdbInfo.EdbInfoId, oldEdbInfo.EdbInfoId).Error
  1108. if err != nil {
  1109. return
  1110. }
  1111. if len(predictEdbConfList) > 0 {
  1112. edbInfoIdList := make([]string, 0)
  1113. for _, v := range predictEdbConfList {
  1114. relationEdbInfoIdList = append(relationEdbInfoIdList, v.PredictEdbInfoId)
  1115. edbInfoIdList = append(edbInfoIdList, fmt.Sprint(v.PredictEdbInfoId))
  1116. }
  1117. logMsg += `涉及到的预测指标id:` + strings.Join(edbInfoIdList, ",") + ";"
  1118. }
  1119. }
  1120. return
  1121. }
  1122. type EdbInfoView struct {
  1123. EdbInfoId int `orm:"column(edb_info_id);pk" gorm:"primaryKey" `
  1124. EdbInfoType int `description:"指标类型,0:普通指标,1:预测指标"`
  1125. SourceName string `description:"来源名称"`
  1126. Source int `description:"来源id"`
  1127. EdbCode string `description:"指标编码"`
  1128. EdbName string `description:"指标名称"`
  1129. EdbNameSource string `description:"指标名称来源"`
  1130. Frequency string `description:"频率"`
  1131. Unit string `description:"单位"`
  1132. StartDate string `description:"起始日期"`
  1133. EndDate string `description:"终止日期"`
  1134. ClassifyId int `description:"分类id"`
  1135. SysUserId int
  1136. SysUserRealName string
  1137. UniqueCode string `description:"指标唯一编码"`
  1138. CreateTime string
  1139. ModifyTime string
  1140. MinValue float64 `description:"指标最小值"`
  1141. MaxValue float64 `description:"指标最大值"`
  1142. CalculateFormula string `description:"计算公式"`
  1143. EdbType int `description:"指标类型:1:基础指标,2:计算指标"`
  1144. Sort int `description:"排序字段"`
  1145. IsUpdate int `description:"当天是否已更新,1:未更新,2:已更新"`
  1146. LatestDate string `description:"数据最新日期(实际日期)"`
  1147. LatestValue float64 `description:"数据最新值(实际值)"`
  1148. SubSource int `description:"子数据来源:0:经济数据库,1:日期序列"`
  1149. SubSourceName string `description:"子数据来源名称"`
  1150. IndicatorCode string `description:"指标代码"`
  1151. StockCode string `description:"证券代码"`
  1152. EndValue float64 `description:"数据的最新值(预测日期的最新值)"`
  1153. }
  1154. // EdbInfoFilterDataResp 搜索指标列表数据返回
  1155. type EdbInfoFilterDataResp struct {
  1156. Paging *paging.PagingItem
  1157. List []*EdbInfoList
  1158. }
  1159. // GetEdbInfoFilterList 获取指指标列表数据接口
  1160. func GetEdbInfoFilterList(condition string, pars []interface{}, startSize, pageSize int) (total int64, list []*EdbInfoList, err error) {
  1161. o := global.DmSQL["data"]
  1162. sql := ` SELECT count(1) total FROM edb_info where 1=1 ` + condition + ` ORDER BY edb_info_id DESC `
  1163. err = o.Raw(sql, pars...).Scan(&total).Error
  1164. if err != nil {
  1165. return
  1166. }
  1167. sql = ` SELECT * FROM edb_info where 1=1 ` + condition + ` ORDER BY edb_info_id DESC LIMIT ?,? `
  1168. pars = append(pars, startSize, pageSize)
  1169. err = o.Raw(sql, pars...).Scan(&list).Error
  1170. return
  1171. }
  1172. // EdbInfoEs 写入es的指标数据结构
  1173. type EdbInfoEs struct {
  1174. EdbInfoId int `orm:"column(edb_info_id);pk" gorm:"primaryKey" `
  1175. EdbInfoType int `description:"指标类型,0:普通指标,1:预测指标"`
  1176. SourceName string `description:"来源名称"`
  1177. Source int `description:"来源id"`
  1178. EdbCode string `description:"指标编码"`
  1179. EdbNameEn string `description:"英文指标名称"`
  1180. EdbName string `description:"指标名称"`
  1181. Frequency string `description:"频率"`
  1182. FrequencyEn string `description:"英文频率"`
  1183. Unit string `description:"单位"`
  1184. UnitEn string `description:"英文单位"`
  1185. StartDate string `description:"起始日期"`
  1186. EndDate string `description:"终止日期"`
  1187. LatestDate string `description:"数据最新日期(实际日期)"`
  1188. LatestValue float64 `description:"数据最新值(实际值)"`
  1189. EndValue float64 `description:"数据的最新值(预测日期的最新值)"`
  1190. ClassifyId int `description:"分类id"`
  1191. UniqueCode string `description:"指标唯一编码"`
  1192. SysUserId int `description:"创建人id"`
  1193. SysUserRealName string `description:"创建人姓名"`
  1194. ModifyTime string `description:"最新修改时间"`
  1195. CreateTime string `description:"创建时间"`
  1196. EdbNameAlias string `json:"-" description:"指标名称,别名"`
  1197. EdbType int `description:"指标类型:1:基础指标,2:计算指标"`
  1198. ChartImage string `description:"图表图片"`
  1199. RuleType int `description:"预测规则,1:最新,2:固定值"`
  1200. FixedValue float64 `description:"固定值"`
  1201. IsEnEdb bool `description:"是否展示英文标识"`
  1202. DataDateType string `description:"数据日期类型,枚举值:交易日、自然日"`
  1203. SubSource int `description:"子数据来源:0:经济数据库,1:日期序列"`
  1204. SubSourceName string `description:"子数据来源名称"`
  1205. IndicatorCode string `description:"指标代码"`
  1206. StockCode string `description:"证券代码"`
  1207. NoUpdate int8 `description:"是否停止更新,0:继续更新;1:停止更新"`
  1208. IsJoinPermission int `description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
  1209. HaveOperaAuth bool `description:"是否有数据权限,默认:false"`
  1210. IsSupplierStop int `description:"是否供应商停更:1:停更,0:未停更"`
  1211. CollectClassifyIdList []int `description:"所属收藏分类id列表" gorm:"-"`
  1212. SharedUserIdList []int `description:"共享用户id列表" gorm:"-"`
  1213. PublicStatus int `description:"公开状态;0:未公开;1:审批中;2:已驳回;3:已公开"`
  1214. EdbPublicClassifyId int `description:"指标公开分类id"`
  1215. PublicTime *time.Time `description:"设置公开的时间"`
  1216. }
  1217. // GetEsEdbInfo 获取指指标列表数据接口
  1218. func GetEsEdbInfo(condition string, pars []interface{}, startSize, pageSize int) (total int64, list []*EdbInfoEs, err error) {
  1219. o := global.DmSQL["data"]
  1220. sql := ` SELECT count(1) total FROM edb_info where 1=1 ` + condition + ` ORDER BY edb_info_id DESC `
  1221. err = o.Raw(sql, pars...).Scan(&total).Error
  1222. if err != nil {
  1223. return
  1224. }
  1225. sql = ` SELECT * FROM edb_info where 1=1 ` + condition + ` ORDER BY edb_info_id DESC LIMIT ?,? `
  1226. pars = append(pars, startSize, pageSize)
  1227. err = o.Raw(sql, pars...).Scan(&list).Error
  1228. return
  1229. }
  1230. // SetEdbInfoImageReq 设置指标图片
  1231. type SetEdbInfoImageReq struct {
  1232. EdbInfoId int `description:"指标ID"`
  1233. ImageUrl string `description:"指标图片地址"`
  1234. }
  1235. // GetNextEdbInfoByCondition 根据条件获取下一个指标
  1236. func GetNextEdbInfoByCondition(condition string, pars []interface{}) (item *EdbInfo, err error) {
  1237. o := global.DmSQL["data"]
  1238. sql := ` SELECT * FROM edb_info WHERE 1=1 `
  1239. if condition != "" {
  1240. sql += condition
  1241. }
  1242. sql += " ORDER BY sort asc , edb_info_id asc LIMIT 1 "
  1243. err = o.Raw(sql, pars...).First(&item).Error
  1244. return
  1245. }
  1246. // GetNextEdbInfo 根据分类id获取下一个 指标
  1247. func GetNextEdbInfo(classifyId, classifySort, classifyType, edbInfoType int) (item *EdbInfo, err error) {
  1248. o := global.DmSQL["data"]
  1249. sql := ` SELECT b.* FROM edb_classify AS a
  1250. INNER JOIN edb_info AS b ON a.classify_id=b.classify_id
  1251. WHERE (a.sort>? OR (a.sort=? and a.classify_id>?) )
  1252. AND a.classify_type=? AND b.edb_info_type=?
  1253. ORDER BY a.sort ASC,b.sort asc,b.edb_info_id asc
  1254. LIMIT 1 `
  1255. err = o.Raw(sql, classifySort, classifySort, classifyId, classifyType, edbInfoType).Scan(&item).Error
  1256. return
  1257. }
  1258. // GetEdbInfoByEdbCodeList 根据指标code集合获取指标列表
  1259. func GetEdbInfoByEdbCodeList(source int, edbCodeList []string) (items []*EdbInfo, err error) {
  1260. num := len(edbCodeList)
  1261. if num <= 0 {
  1262. return
  1263. }
  1264. o := global.DmSQL["data"]
  1265. sql := ` SELECT * FROM edb_info WHERE source=? AND edb_code in (` + utils.GetOrmInReplace(num) + `) `
  1266. err = o.Raw(sql, source, edbCodeList).Scan(&items).Error
  1267. return
  1268. }
  1269. // GetEdbInfoByConditionCount 根据条件获取指标列表数据总数
  1270. func GetEdbInfoByConditionCount(condition string, pars []interface{}) (count int, err error) {
  1271. o := global.DmSQL["data"]
  1272. sql := ` SELECT COUNT(1) AS count FROM edb_info WHERE 1=1 `
  1273. if condition != "" {
  1274. sql += condition
  1275. }
  1276. err = o.Raw(sql, pars...).Scan(&count).Error
  1277. return
  1278. }
  1279. // GetEdbInfoListByCondition 根据条件获取指标列表数据
  1280. func GetEdbInfoListByCondition(condition string, pars []interface{}, startSize, pageSize int, orderDesc string) (items []*EdbInfoList, err error) {
  1281. o := global.DmSQL["data"]
  1282. sql := ` SELECT * FROM edb_info WHERE 1=1 `
  1283. if condition != "" {
  1284. sql += condition
  1285. }
  1286. if orderDesc == `` {
  1287. orderDesc = ` ASC `
  1288. }
  1289. sql += ` ORDER BY edb_info_id `
  1290. sql += orderDesc
  1291. sql += ` LIMIT ?,? `
  1292. pars = append(pars, startSize)
  1293. pars = append(pars, pageSize)
  1294. err = o.Raw(sql, pars...).Scan(&items).Error
  1295. return
  1296. }
  1297. // GetEdbInfoListByEdbInfoId
  1298. // @Description: 根据指标id列表获取列表信息
  1299. // @param edbIdList
  1300. // @return items
  1301. // @return err
  1302. func GetEdbInfoListByEdbInfoId(edbIdList []string) (items []*EdbInfo, err error) {
  1303. num := len(edbIdList)
  1304. if num <= 0 {
  1305. return
  1306. }
  1307. o := global.DmSQL["data"]
  1308. sql := ` SELECT * FROM edb_info WHERE edb_info_id in (` + utils.GetOrmInReplace(num) + `) `
  1309. err = o.Raw(sql, edbIdList).Scan(&items).Error
  1310. return
  1311. }
  1312. // GetEdbInfoListByUserId
  1313. // @Description: 根据指标id列表获取列表信息
  1314. // @param userIdList []int
  1315. // @param edbInfoType int
  1316. // @return items
  1317. // @return err
  1318. func GetEdbInfoListByUserId(userIdList []int, edbInfoType int) (items []*EdbInfo, err error) {
  1319. num := len(userIdList)
  1320. if num <= 0 {
  1321. return
  1322. }
  1323. o := global.DmSQL["data"]
  1324. sql := ` SELECT * FROM edb_info WHERE edb_info_type = ? AND sys_user_id in (` + utils.GetOrmInReplace(num) + `) `
  1325. err = o.Raw(sql, edbInfoType, userIdList).Scan(&items).Error
  1326. return
  1327. }
  1328. // ModifyEdbInfoUserIdByCodeList 根据指标code列表修改创建人
  1329. func ModifyEdbInfoUserIdByCodeList(edbIdList []string, userId int, userName string) (err error) {
  1330. num := len(edbIdList)
  1331. if num <= 0 {
  1332. return
  1333. }
  1334. o := global.DmSQL["data"]
  1335. sql := `UPDATE edb_info SET sys_user_id=?,sys_user_real_name=? WHERE edb_info_id in (` + utils.GetOrmInReplace(num) + `) `
  1336. err = o.Exec(sql, userId, userName, edbIdList).Error
  1337. return
  1338. }
  1339. // ModifyEdbInfoUserIdByOldUserId
  1340. // @Description: 根据旧用户id修改新用户id
  1341. // @author: Roc
  1342. // @datetime 2024-03-25 19:17:09
  1343. // @param edbIdList []string
  1344. // @param userId int
  1345. // @param userName string
  1346. // @return err error
  1347. func ModifyEdbInfoUserIdByOldUserId(oldUserIdList []int, edbInfoType, userId int, userName string) (err error) {
  1348. num := len(oldUserIdList)
  1349. if num <= 0 {
  1350. return
  1351. }
  1352. o := global.DmSQL["data"]
  1353. sql := `UPDATE edb_info SET sys_user_id=?,sys_user_real_name=? WHERE sys_user_id in (` + utils.GetOrmInReplace(num) + `) and edb_info_type = ?`
  1354. err = o.Exec(sql, userId, userName, oldUserIdList, edbInfoType).Error
  1355. return
  1356. }
  1357. // MoveEdbChartList 图表/指标信息
  1358. type MoveEdbChartList struct {
  1359. DataId string `description:"指标/图表唯一id"`
  1360. Code string `description:"指标code"`
  1361. Name string `description:"指标/图表名称"`
  1362. NameEn string `description:"指标/图表名称"`
  1363. ClassifyName string `description:"分类名称"`
  1364. ClassifyNameEn string `description:"分类名称"`
  1365. CreateUserId int `description:"创建人id"`
  1366. CreateUserName string `description:"创建人名称"`
  1367. }
  1368. // MoveEdbChartListResp 更改创建人返回数据
  1369. type MoveEdbChartListResp struct {
  1370. Paging *paging.PagingItem
  1371. List []MoveEdbChartList
  1372. }
  1373. type EdbChartClassifyResp struct {
  1374. List []*EdbChartClassify
  1375. }
  1376. type EdbChartClassify struct {
  1377. ClassifyId int
  1378. ClassifyName string
  1379. ParentId int
  1380. IsJoinPermission int `description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
  1381. Child []*EdbChartClassify
  1382. }
  1383. // EdbInfoDataSeasonalResp 指标季节性数据返回
  1384. type EdbInfoDataSeasonalResp struct {
  1385. EdbInfo *EdbInfo
  1386. DataList interface{}
  1387. }
  1388. // SetEdbDataInsertConfigReq 设置插入规则的请求
  1389. type SetEdbDataInsertConfigReq struct {
  1390. EdbInfoId int `description:"指标ID"`
  1391. Date string `description:"日期"`
  1392. Value string `description:"值"`
  1393. }
  1394. // GetEdbInfoByClassifyId 用于分类展示
  1395. func GetEdbInfoByClassifyId(classifyId, edbInfoType, edbType, adminId int, noPermissionEdbInfoIdList, noPermissionEdbClassifyIdList []int) (items []*EdbClassifyItems, err error) {
  1396. o := global.DmSQL["data"]
  1397. 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 = ?`
  1398. pars := []interface{}{classifyId, edbInfoType}
  1399. // 如果筛选了指标类型,那么就根据条件来
  1400. if edbType > 0 {
  1401. sql += ` AND edb_type = ? `
  1402. pars = append(pars, edbType)
  1403. }
  1404. // 如果筛选了用户id
  1405. if adminId > 0 {
  1406. sql += ` AND sys_user_id = ? `
  1407. pars = append(pars, adminId)
  1408. }
  1409. noPermissionEdbInfoIdNum := len(noPermissionEdbInfoIdList)
  1410. if noPermissionEdbInfoIdNum > 0 {
  1411. sql += ` AND edb_info_id NOT IN (` + utils.GetOrmInReplace(noPermissionEdbInfoIdNum) + `) `
  1412. pars = append(pars, noPermissionEdbInfoIdList)
  1413. }
  1414. noPermissionClassifyInfoIdNum := len(noPermissionEdbClassifyIdList)
  1415. if noPermissionClassifyInfoIdNum > 0 {
  1416. sql += ` AND classify_id NOT IN (` + utils.GetOrmInReplace(noPermissionClassifyInfoIdNum) + `) `
  1417. pars = append(pars, noPermissionEdbClassifyIdList)
  1418. }
  1419. sql += ` order by sort asc,edb_info_id asc `
  1420. err = o.Raw(sql, pars...).Scan(&items).Error
  1421. return
  1422. }
  1423. type EdbAndClassify struct {
  1424. EdbInfoId int `description:"指标id"`
  1425. EdbCode string `description:"指标code"`
  1426. UniqueCode string `description:"唯一code"`
  1427. EdbName string `description:"指标名称"`
  1428. ClassifyId int `description:"所属分类id"`
  1429. FirstClassifyId int `description:"第1级的分类id"`
  1430. FirstClassifyName string `description:"第1级的分类名称"`
  1431. SecondClassifyId int `description:"第2级的分类id"`
  1432. SecondClassifyName string `description:"第2级的分类名称"`
  1433. }
  1434. // GetEdbInfoAndClassifyListByEdbIdList 根据指标id列表获取 指标及分类信息
  1435. func GetEdbInfoAndClassifyListByEdbIdList(edbIdList []int) (items []*EdbAndClassify, err error) {
  1436. num := len(edbIdList)
  1437. if num <= 0 {
  1438. return
  1439. }
  1440. o := global.DmSQL["data"]
  1441. sql := ` SELECT a.edb_info_id,a.edb_code,a.unique_code,a.edb_name,a.classify_id FROM edb_info AS a
  1442. WHERE a.edb_info_id in (` + utils.GetOrmInReplace(num) + `) `
  1443. err = o.Raw(sql, edbIdList).Scan(&items).Error
  1444. return
  1445. }
  1446. // TraceEdbInfoResp 指标追溯数据返回
  1447. type TraceEdbInfoResp struct {
  1448. EdbInfoId int `description:"指标id"`
  1449. EdbInfoType int `description:"指标类型: 0-普通指标; 1-预测指标"`
  1450. EdbName string `description:"指标名称"`
  1451. EdbNameEn string `description:"指标英文名称"`
  1452. EdbType int `description:"指标类型: 1-基础指标; 2-计算指标"`
  1453. RuleTitle string `description:"指标规则"`
  1454. RuleTitleEn string `description:"指标规则(英文)"`
  1455. UniqueCode string `description:"唯一编码"`
  1456. ClassifyId int `description:"分类ID"`
  1457. Child []TraceEdbInfoResp `description:"下级来源"`
  1458. IsStop int8 `description:"是否终止"`
  1459. EdbInfo *EdbInfo `description:"指标信息" json:"-"`
  1460. HaveOperaAuth bool `description:"是否有数据权限,默认:false"`
  1461. }
  1462. // BeforeAndAfterDateDataResp 前后几期数据
  1463. type BeforeAndAfterDateDataResp struct {
  1464. List []*EdbDataList `description:"list"`
  1465. Date string `description:"实际日期"`
  1466. ShowValue string `description:"展示值"`
  1467. }
  1468. // GetEdbInfoAdminList
  1469. func GetEdbInfoAdminList(edbType int) (list []int, err error) {
  1470. o := global.DmSQL["data"]
  1471. sql := ` SELECT sys_user_id FROM edb_info WHERE edb_info_type = ? GROUP BY sys_user_id `
  1472. err = o.Raw(sql, edbType).Scan(&list).Error
  1473. return
  1474. }
  1475. type EdbInfoExistCheckResp struct {
  1476. IndexExist bool `description:"指标是否存在:true,存在,false:不存在"`
  1477. ExistStockCodeArr []string `description:"存在的证券代码"`
  1478. ExistEdbCodeArr []string `description:"存在的指标代码"`
  1479. ExistClassifyId []int `description:"存在的分类id"`
  1480. ExistIndexId []int `description:"存在的指标id"`
  1481. ExistEdbInfo []*EdbInfo `description:"存在的指标"`
  1482. }
  1483. type BatchAddEdbInfoReq struct {
  1484. BatchList []*BatchAddEdbInfo
  1485. }
  1486. type BatchAddEdbInfo struct {
  1487. Source int `description:"来源id"`
  1488. EdbName string `description:"指标名称"`
  1489. Frequency string `description:"频率"`
  1490. Unit string `description:"单位"`
  1491. ClassifyId int `description:"分类id"`
  1492. StockCode string `description:"证券代码"`
  1493. EdbCode string `description:"指标编码"`
  1494. ApiExtraPars string `description:"API额外参数"`
  1495. }
  1496. func GetEdbInfoWsdMaxAndMinInfo(source, subSource int, edbCode string) (item *EdbInfoMaxAndMinInfo, err error) {
  1497. o := global.DmSQL["data"]
  1498. sql := ``
  1499. tableName := GetEdbDataTableNameAndSubSource(source, subSource)
  1500. 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=? `
  1501. sql = fmt.Sprintf(sql, tableName)
  1502. err = o.Raw(sql, edbCode).Scan(&item).Error
  1503. if err != nil {
  1504. return
  1505. }
  1506. var latest_value float64
  1507. sql = ` SELECT value AS latest_value FROM %s WHERE edb_code=? ORDER BY data_time DESC LIMIT 1 `
  1508. sql = fmt.Sprintf(sql, tableName)
  1509. err = o.Raw(sql, edbCode).Scan(&latest_value).Error
  1510. item.LatestValue = latest_value
  1511. return
  1512. }
  1513. // GetEdbInfoByNames 根据名称获取普通的指标
  1514. func GetEdbInfoByNames(edbNames string) (items []*EdbInfoList, err error) {
  1515. o := global.DmSQL["data"]
  1516. sql := ` SELECT * FROM edb_info WHERE edb_name IN (` + edbNames + `) AND edb_info_type = 0 `
  1517. err = o.Raw(sql).Scan(&items).Error
  1518. return
  1519. }
  1520. // BaseRefreshEdbInfo
  1521. // @Description: 刷新配置的基础指标信息结构体
  1522. type BaseRefreshEdbInfo struct {
  1523. EdbInfoId int
  1524. ClassifyId int `description:"钢联化工指标分类id"`
  1525. IndexCode string `description:"指标编码"`
  1526. IndexName string `description:"指标名称"`
  1527. EndDate string `description:"最新日期"`
  1528. EndValue string `description:"最新值"`
  1529. SysUserId int `description:"创建人id"`
  1530. SysUserRealName string `description:"创建人姓名"`
  1531. Frequency string `description:"频度"`
  1532. IsStop int `description:"是否停更:1:停更,0:未停更"`
  1533. TerminalCode string `description:"终端编码"`
  1534. RefreshTime string `description:"刷新时间"`
  1535. }
  1536. // RefreshBaseEdbInfoResp
  1537. // @Description: 刷新数据源的数据返回
  1538. type RefreshBaseEdbInfoResp struct {
  1539. Paging *paging.PagingItem
  1540. List []*BaseRefreshEdbInfo
  1541. }
  1542. // GetEdbBaseInfoList
  1543. // @Description: 获取指标库数据列表
  1544. // @author: Roc
  1545. // @datetime 2024-01-10 14:28:22
  1546. // @param condition string
  1547. // @param pars []interface{}
  1548. // @param orderBy string
  1549. // @param startSize int
  1550. // @param pageSize int
  1551. // @return total int
  1552. // @return items []*BaseRefreshEdbInfo
  1553. // @return err error
  1554. func GetEdbBaseInfoList(condition string, pars []interface{}, orderBy string, startSize, pageSize int) (total int, items []*BaseRefreshEdbInfo, err error) {
  1555. o := global.DmSQL["data"]
  1556. // 数量汇总
  1557. totalSql := ` SELECT count(1) FROM edb_info WHERE 1=1 `
  1558. if condition != "" {
  1559. totalSql += condition
  1560. }
  1561. err = o.Raw(totalSql, pars...).Scan(&total).Error
  1562. if err != nil {
  1563. return
  1564. }
  1565. // 列表数据
  1566. 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 `
  1567. if condition != "" {
  1568. sql += condition
  1569. }
  1570. if orderBy != "" {
  1571. sql += ` ORDER BY ` + orderBy
  1572. } else {
  1573. sql += ` ORDER BY edb_info_id ASC `
  1574. }
  1575. sql += ` LIMIT ?,? `
  1576. pars = append(pars, startSize, pageSize)
  1577. err = o.Raw(sql, pars...).Scan(&items).Error
  1578. return
  1579. }
  1580. // ModifyEdbInfoUpdateStatus
  1581. // @Description: 修改指标库停更状态
  1582. // @author: Roc
  1583. // @datetime 2024-01-08 16:23:31
  1584. // @param edbIdList []int
  1585. // @param indexCodeList []string
  1586. // @param isStop int
  1587. // @return err error
  1588. func ModifyEdbInfoUpdateStatus(edbIdList []int, isStop int, calculateEdbInfoIds []int) (err error) {
  1589. idNum := len(edbIdList)
  1590. if idNum <= 0 {
  1591. return
  1592. }
  1593. o := global.DmSQL["data"].Begin()
  1594. defer func() {
  1595. if err != nil {
  1596. _ = o.Rollback()
  1597. return
  1598. }
  1599. _ = o.Commit()
  1600. }()
  1601. // 更改指标的更新状态
  1602. sql := ` UPDATE edb_info SET no_update = ? WHERE edb_info_id IN (` + utils.GetOrmInReplace(idNum) + `) `
  1603. err = o.Exec(sql, isStop, edbIdList).Error
  1604. if err != nil {
  1605. return
  1606. }
  1607. if len(calculateEdbInfoIds) > 0 {
  1608. // 批量更新相关联的指标ID
  1609. sql = ` UPDATE edb_info SET no_update = ? WHERE edb_info_id IN (` + utils.GetOrmInReplace(len(calculateEdbInfoIds)) + `) `
  1610. err = o.Exec(sql, isStop, calculateEdbInfoIds).Error
  1611. if err != nil {
  1612. return
  1613. }
  1614. }
  1615. return
  1616. }
  1617. func GetEdbInfoCount(source int, edbCode string) (count int, err error) {
  1618. o := global.DmSQL["data"]
  1619. sql := ` SELECT COUNT(1) AS count FROM edb_info
  1620. WHERE source=? AND edb_code = ?`
  1621. err = o.Raw(sql, source, edbCode).Scan(&count).Error
  1622. return
  1623. }
  1624. // GetEdbInfoByNameArr 根据名称获取指标
  1625. func GetEdbInfoByNameArr(names []string, edbInfoType int) (items []*EdbInfo, err error) {
  1626. if len(names) == 0 {
  1627. return
  1628. }
  1629. o := global.DmSQL["data"]
  1630. 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)))
  1631. err = o.Raw(sql, names, edbInfoType).Scan(&items).Error
  1632. return
  1633. }
  1634. // GetEdbCodesBySource 根据来源获取指标编码
  1635. func GetEdbCodesBySource(source int) (items []*EdbInfo, err error) {
  1636. o := global.DmSQL["data"]
  1637. sql := ` SELECT edb_info_id, edb_code, unique_code, classify_id FROM edb_info WHERE source = ? `
  1638. err = o.Raw(sql, source).Scan(&items).Error
  1639. return
  1640. }
  1641. // GetAllEdbDataListData
  1642. // @Description: 获取指标的所有数据
  1643. // @author: Roc
  1644. // @datetime 2024-05-07 15:18:27
  1645. // @param edbInfoId int
  1646. // @param source int
  1647. // @param subSource int
  1648. // @param startDataTime string
  1649. // @return dataList []*EdbData
  1650. // @return err error
  1651. func GetAllEdbDataListData(edbInfoId, source, subSource int, startDataTime string) (dataList []*EdbData, err error) {
  1652. // 自有数据需要额外处理(从mongo获取)
  1653. if source == utils.DATA_SOURCE_BUSINESS && utils.UseMongo {
  1654. return getAllDataByMongo(edbInfoId, source, subSource, startDataTime)
  1655. }
  1656. if source == utils.DATA_SOURCE_THS && subSource == utils.DATA_SUB_SOURCE_HIGH_FREQUENCY && utils.UseMongo {
  1657. return getThsHfAllDataByMongo(edbInfoId, source, subSource, startDataTime)
  1658. }
  1659. // 默认走mysql
  1660. return getAllDataByMysql(edbInfoId, source, subSource, startDataTime)
  1661. }
  1662. // getAllDataByMysql
  1663. // @Description: 从mysql获取指标的所有数据
  1664. // @author: Roc
  1665. // @datetime 2024-05-07 15:18:41
  1666. // @param edbInfoId int
  1667. // @param source int
  1668. // @param subSource int
  1669. // @param startDataTime string
  1670. // @return dataList []*data_manage.EdbData
  1671. // @return err error
  1672. func getAllDataByMysql(edbInfoId, source, subSource int, startDataTime string) (dataList []*EdbData, err error) {
  1673. dataList = make([]*EdbData, 0)
  1674. var dataCondition string
  1675. var dataPars []interface{}
  1676. dataCondition += ` AND edb_info_id=? `
  1677. dataPars = append(dataPars, edbInfoId)
  1678. // 结束日期
  1679. if startDataTime != "" {
  1680. dataCondition += ` AND data_time > ? `
  1681. dataPars = append(dataPars, startDataTime)
  1682. }
  1683. // 获取列表数据
  1684. dataList, err = GetAllEdbDataListByCondition(dataCondition, dataPars, source, subSource)
  1685. if err != nil {
  1686. return
  1687. }
  1688. return
  1689. }
  1690. // getAllDataByMongo
  1691. // @Description: 从mongo获取指标的所有数据
  1692. // @author: Roc
  1693. // @datetime 2024-05-07 15:18:53
  1694. // @param edbInfoId int
  1695. // @param source int
  1696. // @param subSource int
  1697. // @param startDataTime string
  1698. // @return dataList []*data_manage.EdbData
  1699. // @return err error
  1700. func getAllDataByMongo(edbInfoId, source, subSource int, startDataTime string) (dataList []*EdbData, err error) {
  1701. dataList = make([]*EdbData, 0)
  1702. mogDataObj := mgo.EdbDataBusiness{}
  1703. // 构建查询条件
  1704. queryConditions := bson.M{
  1705. "edb_info_id": edbInfoId,
  1706. }
  1707. // 开始日期
  1708. dateCondition, err := mgo.BuildDateCondition(startDataTime, "")
  1709. if err != nil {
  1710. return
  1711. }
  1712. if len(dateCondition) > 0 {
  1713. queryConditions["data_time"] = dateCondition
  1714. }
  1715. // 获取列表数据
  1716. tmpDataList, tmpErr := mogDataObj.GetAllDataList(queryConditions, []string{"-data_time"})
  1717. if tmpErr != nil {
  1718. err = tmpErr
  1719. return
  1720. }
  1721. for k, v := range tmpDataList {
  1722. dataList = append(dataList, &EdbData{
  1723. EdbDataId: k + 1,
  1724. EdbInfoId: v.EdbInfoId,
  1725. DataTime: v.DataTime.Format(utils.FormatDate),
  1726. Value: v.Value,
  1727. })
  1728. }
  1729. return
  1730. }
  1731. // GetEdbClassifyIdListBySource 获取普通指标的分类列表
  1732. func GetEdbClassifyIdListBySource(source int) (items []int, err error) {
  1733. o := global.DmSQL["data"]
  1734. sql := `SELECT distinct classify_id FROM edb_info WHERE source = ? and edb_info_type=0`
  1735. err = o.Raw(sql, source).Scan(&items).Error
  1736. return
  1737. }
  1738. // GetEdbInfoByClassifyIdAndSource 用于分类展示
  1739. func GetEdbInfoByClassifyIdAndSource(classifyId, edbInfoType, source int) (items []*EdbClassifyItems, err error) {
  1740. o := global.DmSQL["data"]
  1741. 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 = ? AND source =?`
  1742. pars := []interface{}{classifyId, edbInfoType, source}
  1743. sql += ` order by sort asc,edb_info_id asc `
  1744. err = o.Raw(sql, pars...).Scan(&items).Error
  1745. return
  1746. }
  1747. type ReplaceEdbInfoItem struct {
  1748. OldEdbInfo *EdbInfo
  1749. NewEdbInfo *EdbInfo
  1750. }
  1751. type EdbInfoEditRecord struct {
  1752. EdbInfoId int `description:"指标ID"`
  1753. EdbName string `description:"指标名称"`
  1754. Frequency string `description:"频率"`
  1755. Unit string `description:"单位"`
  1756. ClassifyId int `description:"分类id"`
  1757. CalculateFormula string `description:"计算公式"`
  1758. OperateUserId int `description:"操作人id"`
  1759. OperateUserRealName string `description:"操作人姓名"`
  1760. }
  1761. func ModifyEdbInfoBaseTimeById(edbInfoId int, cTime time.Time) (err error) {
  1762. o := global.DmSQL["data"]
  1763. // 更新修改时间
  1764. sql := ` UPDATE edb_info SET base_modify_time = ? WHERE edb_info_id = ? `
  1765. err = o.Exec(sql, cTime, edbInfoId).Error
  1766. return
  1767. }
  1768. func GetEdbInfoFieldList(cond string, pars []interface{}, fields []string) (items []*EdbInfo, err error) {
  1769. field := " * "
  1770. if len(fields) > 0 {
  1771. field = strings.Join(fields, ",")
  1772. }
  1773. o := global.DmSQL["data"]
  1774. sql := fmt.Sprintf(`SELECT %s FROM edb_info WHERE 1=1 %s `, field, cond)
  1775. err = o.Raw(sql, pars...).Scan(&items).Error
  1776. return
  1777. }
  1778. // EdbInfoExtra 指标额外数据-extra字段
  1779. type EdbInfoExtra struct {
  1780. ApiExtraPars string `description:"API-额外参数(如同花顺日期序列)"`
  1781. }
  1782. func GetEdbInfoListByCond(condition string, pars []interface{}) (list []*EdbInfoList, err error) {
  1783. sql := ` SELECT * FROM edb_info WHERE 1=1 `
  1784. if condition != "" {
  1785. sql += condition
  1786. }
  1787. sql += ` ORDER BY create_time DESC `
  1788. err = global.DmSQL["data"].Raw(sql, pars...).Scan(&list).Error
  1789. return
  1790. }
  1791. func GetThsHfEdbInfoMaxAndMinInfoByMongo(source, subSource int, edbCode string) (item *EdbInfoMaxAndMinInfo, err error) {
  1792. mogDataObj := new(mgo.EdbDataThsHf)
  1793. pipeline := []bson.M{
  1794. {"$match": bson.M{"edb_code": edbCode}},
  1795. {"$group": bson.M{
  1796. "_id": nil,
  1797. "min_date": bson.M{"$min": "$data_time"},
  1798. "max_date": bson.M{"$max": "$data_time"},
  1799. "min_value": bson.M{"$min": "$value"},
  1800. "max_value": bson.M{"$max": "$value"},
  1801. }},
  1802. {"$project": bson.M{"_id": 0}}, // 可选,如果不需要_id字段
  1803. }
  1804. result, err := mogDataObj.GetEdbInfoMaxAndMinInfo(pipeline)
  1805. if err != nil {
  1806. fmt.Println("EdbDataThsHf getEdbDataThsHfList Err:" + err.Error())
  1807. return
  1808. }
  1809. if !result.MaxDate.IsZero() {
  1810. whereQuery := bson.M{"edb_code": edbCode, "data_time": result.MaxDate}
  1811. selectParam := bson.D{{"value", 1}, {"_id", 0}}
  1812. latestValue, tmpErr := mogDataObj.GetLatestValue(whereQuery, selectParam)
  1813. if tmpErr != nil {
  1814. err = tmpErr
  1815. return
  1816. }
  1817. result.LatestValue = latestValue.Value
  1818. result.EndValue = latestValue.Value
  1819. }
  1820. item = &EdbInfoMaxAndMinInfo{
  1821. MinDate: result.MinDate.Format(utils.FormatDate),
  1822. MaxDate: result.MaxDate.Format(utils.FormatDate),
  1823. MinValue: result.MinValue,
  1824. MaxValue: result.MaxValue,
  1825. LatestValue: result.LatestValue,
  1826. }
  1827. return
  1828. }
  1829. func getThsHfAllDataByMongo(edbInfoId, source, subSource int, startDataTime string) (dataList []*EdbData, err error) {
  1830. dataList = make([]*EdbData, 0)
  1831. mogDataObj := mgo.EdbDataThsHf{}
  1832. // 构建查询条件
  1833. queryConditions := bson.M{
  1834. "edb_info_id": edbInfoId,
  1835. }
  1836. // 开始日期
  1837. dateCondition, err := mgo.BuildDateCondition(startDataTime, "")
  1838. if err != nil {
  1839. return
  1840. }
  1841. if len(dateCondition) > 0 {
  1842. queryConditions["data_time"] = dateCondition
  1843. }
  1844. // 获取列表数据
  1845. tmpDataList, tmpErr := mogDataObj.GetAllDataList(queryConditions, []string{"-data_time"})
  1846. if tmpErr != nil {
  1847. err = tmpErr
  1848. return
  1849. }
  1850. for k, v := range tmpDataList {
  1851. dataList = append(dataList, &EdbData{
  1852. EdbDataId: k + 1,
  1853. EdbInfoId: v.EdbInfoId,
  1854. DataTime: v.DataTime.Format(utils.FormatDate),
  1855. Value: v.Value,
  1856. })
  1857. }
  1858. return
  1859. }
  1860. // GetEdbInfoByTypes 根据类型获取所有指标
  1861. func GetEdbInfoByTypes(edbInfoType, edbType int) (items []*EdbClassifyItems, err error) {
  1862. o := global.DmSQL["data"]
  1863. 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 = ? AND edb_type = ? order by sort asc,edb_info_id asc`
  1864. err = o.Raw(sql, edbInfoType, edbType).Scan(&items).Error
  1865. return
  1866. }
  1867. // GetIsJoinPermissionEdbInfoIdList
  1868. // @Description: 获取已经加入指标管控的指标id列表
  1869. // @param edbInfoType
  1870. // @param edbType
  1871. // @return list
  1872. // @return err
  1873. func GetIsJoinPermissionEdbInfoIdList(edbInfoType, edbType int) (list []int, err error) {
  1874. pars := make([]interface{}, 0)
  1875. sql := ` SELECT edb_info_id FROM edb_info WHERE 1=1 AND is_join_permission = 1 `
  1876. if edbInfoType >= 0 {
  1877. sql += ` AND edb_info_type = ? `
  1878. pars = append(pars, edbInfoType)
  1879. }
  1880. if edbInfoType > 0 {
  1881. sql += ` AND edb_type = ? `
  1882. pars = append(pars, edbType)
  1883. }
  1884. sql += ` ORDER BY create_time DESC `
  1885. err = global.DmSQL["data"].Raw(sql, pars...).Scan(&list).Error
  1886. return
  1887. }
  1888. // UpdateClassifyIdByEdbInfoId
  1889. // @Description: 根据指标id更新所属分类id
  1890. // @author: Roc
  1891. // @datetime 2024-11-29 17:54:44
  1892. // @param edbInfoId int
  1893. // @param edbClassifyId int
  1894. // @return err error
  1895. func UpdateClassifyIdByEdbInfoId(edbInfoId, edbClassifyId int) (err error) {
  1896. sql := ` UPDATE edb_info SET classify_id = ? WHERE edb_info_id=? `
  1897. err = global.DmSQL["data"].Exec(sql, edbClassifyId, edbInfoId).Error
  1898. return
  1899. }
  1900. // SetEdbInfoImageReq 设置指标图片
  1901. type EsEdbReq struct {
  1902. KeyWord string `description:"关键字" form:"KeyWord"`
  1903. ImageUrl string `description:"指标图片地址" form:"ImageUrl"`
  1904. }