edb_info.go 64 KB

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