edb_info.go 86 KB

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