edb_info.go 59 KB

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