edb_info.go 59 KB

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