edb_info.go 75 KB

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