edb_info.go 58 KB

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