edb_info.go 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979
  1. package models
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "fmt"
  6. "github.com/beego/beego/v2/client/orm"
  7. "github.com/shopspring/decimal"
  8. "hongze/hongze_edb_lib/utils"
  9. "strconv"
  10. "time"
  11. )
  12. type EdbInfo struct {
  13. EdbInfoId int `orm:"column(edb_info_id);pk"`
  14. SourceName string `description:"来源名称"`
  15. Source int `description:"来源id"`
  16. EdbCode string `description:"指标编码"`
  17. EdbName string `description:"指标名称"`
  18. EdbNameSource string `description:"指标名称来源"`
  19. Frequency string `description:"频率"`
  20. Unit string `description:"单位"`
  21. StartDate string `description:"起始日期"`
  22. EndDate string `description:"终止日期"`
  23. ClassifyId int `description:"分类id"`
  24. SysUserId int
  25. SysUserRealName string
  26. UniqueCode string `description:"指标唯一编码"`
  27. CreateTime time.Time
  28. ModifyTime time.Time
  29. MinValue float64 `description:"指标最小值"`
  30. MaxValue float64 `description:"指标最大值"`
  31. CalculateFormula string `description:"计算公式"`
  32. EdbType int `description:"指标类型:1:基础指标,2:计算指标"`
  33. Sort int `description:"排序字段"`
  34. MoveType int `description:"移动方式:1:领先(默认),2:滞后"`
  35. MoveFrequency string `description:"移动频度"`
  36. NoUpdate int8 `description:"是否停止更新,0:继续更新;1:停止更新"`
  37. ServerUrl string `description:"服务器地址"`
  38. EdbInfoType int `description:"指标类型,0:普通指标,1:预测指标"`
  39. EdbNameEn string `description:"英文指标名称"`
  40. UnitEn string `description:"英文单位"`
  41. LatestDate string `description:"数据最新日期"`
  42. LatestValue float64 `description:"数据最新值"`
  43. ChartImage string `description:"图表图片"`
  44. Calendar string `description:"公历/农历"`
  45. DateType string `orm:"column(date_type);size(255);null;default(交易日)"`
  46. }
  47. // AddEdbInfo 添加指标
  48. func AddEdbInfo(item *EdbInfo) (lastId int64, err error) {
  49. o := orm.NewOrm()
  50. lastId, err = o.Insert(item)
  51. return
  52. }
  53. // EdbInfoList 指标数据列表
  54. type EdbInfoList struct {
  55. EdbInfoId int `orm:"column(edb_info_id);pk"`
  56. EdbInfoType int `description:"指标类型,0:普通指标,1:预测指标"`
  57. SourceName string `description:"来源名称"`
  58. Source int `description:"来源id"`
  59. EdbCode string `description:"指标编码"`
  60. EdbNameEn string `description:"英文指标名称"`
  61. EdbName string `description:"指标名称"`
  62. Frequency string `description:"频率"`
  63. FrequencyEn string `description:"英文频率"`
  64. Unit string `description:"单位"`
  65. UnitEn string `description:"英文单位"`
  66. StartDate string `description:"起始日期"`
  67. EndDate string `description:"终止日期"`
  68. LatestDate string `description:"数据最新日期"`
  69. LatestValue float64 `description:"数据最新值"`
  70. ClassifyId int `description:"分类id"`
  71. UniqueCode string `description:"指标唯一编码"`
  72. SysUserId int `description:"创建人id"`
  73. SysUserRealName string `description:"创建人姓名"`
  74. ModifyTime string `description:"最新修改时间"`
  75. CreateTime string `description:"创建时间"`
  76. EdbNameAlias string `json:"-" description:"指标名称,别名"`
  77. EdbType int `description:"指标类型:1:基础指标,2:计算指标"`
  78. ChartImage string `description:"图表图片"`
  79. RuleType int `description:"预测规则,1:最新,2:固定值"`
  80. FixedValue float64 `description:"固定值"`
  81. DataList []*EdbData `description:"实际指标数据"`
  82. PredictDataList []*EdbData `description:"预测指标数据"`
  83. Button EdbClassifyItemsButton `description:"操作权限"`
  84. IsEnEdb bool `description:"是否展示英文标识"`
  85. }
  86. // EdbClassifyItemsButton 操作按钮
  87. type EdbClassifyItemsButton struct {
  88. AddButton bool `description:"是否可添加"`
  89. OpButton bool `description:"是否可编辑"`
  90. DeleteButton bool `description:"是否可删除"`
  91. MoveButton bool `description:"是否可移动"`
  92. ShowEdbRelation bool `description:"是否展示关联指标"`
  93. ShowChartRelation bool `description:"是否展示关联图表"`
  94. }
  95. // GetEdbInfoByName 根据指标名称获取所有的指标数据列表
  96. func GetEdbInfoByName(edbName string) (items []*EdbInfoList, err error) {
  97. o := orm.NewOrm()
  98. sql := ` SELECT * FROM edb_info WHERE edb_name=? `
  99. _, err = o.Raw(sql, edbName).QueryRows(&items)
  100. return
  101. }
  102. // ModifyEdbInfoNameSource 根据来源修改指标名称
  103. func ModifyEdbInfoNameSource(edbNameSource string, edbInfoId int) (err error) {
  104. o := orm.NewOrm()
  105. sql := ` UPDATE edb_info SET edb_name_source=? WHERE edb_info_id = ? `
  106. _, err = o.Raw(sql, edbNameSource, edbInfoId).Exec()
  107. return
  108. }
  109. // GetEdbInfoById 根据指标id获取指标信息
  110. func GetEdbInfoById(edbInfoId int) (item *EdbInfo, err error) {
  111. o := orm.NewOrm()
  112. sql := ` SELECT * FROM edb_info WHERE edb_info_id=? `
  113. err = o.Raw(sql, edbInfoId).QueryRow(&item)
  114. return
  115. }
  116. // GetEdbInfoByIdList 根据指标id列表获取指标信息
  117. func GetEdbInfoByIdList(edbInfoIdList []int) (items []*EdbInfo, err error) {
  118. num := len(edbInfoIdList)
  119. if num <= 0 {
  120. return
  121. }
  122. o := orm.NewOrm()
  123. sql := ` SELECT * FROM edb_info WHERE edb_info_id in (` + utils.GetOrmInReplace(num) + `) `
  124. _, err = o.Raw(sql, edbInfoIdList).QueryRows(&items)
  125. return
  126. }
  127. // Update 更新EdbInfo信息
  128. func (edbInfo *EdbInfo) Update(cols []string) (err error) {
  129. o := orm.NewOrm()
  130. _, err = o.Update(edbInfo, cols...)
  131. return
  132. }
  133. // EdbInfoSearchData
  134. type EdbInfoSearchData struct {
  135. EdbDataId int `description:"数据ID"`
  136. DataTime string `description:"数据日期"`
  137. Value float64 `description:"数据"`
  138. }
  139. // GetEdbDataListAll 获取指标数据列表 order:1升序,其余值为降序
  140. func GetEdbDataListAll(condition string, pars []interface{}, source, order int) (item []*EdbInfoSearchData, err error) {
  141. o := orm.NewOrm()
  142. sql := ``
  143. tableName := GetEdbDataTableName(source)
  144. sql = ` SELECT * FROM %s WHERE 1=1 `
  145. sql = fmt.Sprintf(sql, tableName)
  146. if condition != "" {
  147. sql += condition
  148. }
  149. if order == 1 {
  150. sql += ` ORDER BY data_time ASC `
  151. } else {
  152. sql += ` ORDER BY data_time DESC `
  153. }
  154. _, err = o.Raw(sql, pars).QueryRows(&item)
  155. return
  156. }
  157. // GetEdbDataListAllByTo 根据事务链接获取指标数据列表 order:1升序,其余值为降序
  158. func GetEdbDataListAllByTo(to orm.TxOrmer, condition string, pars []interface{}, source, order int) (item []*EdbInfoSearchData, err error) {
  159. sql := ``
  160. tableName := GetEdbDataTableName(source)
  161. sql = ` SELECT * FROM %s WHERE 1=1 `
  162. sql = fmt.Sprintf(sql, tableName)
  163. if condition != "" {
  164. sql += condition
  165. }
  166. if order == 1 {
  167. sql += ` ORDER BY data_time ASC `
  168. } else {
  169. sql += ` ORDER BY data_time DESC `
  170. }
  171. _, err = to.Raw(sql, pars).QueryRows(&item)
  172. return
  173. }
  174. // EdbInfoMaxAndMinInfo 指标最新数据记录结构体
  175. type EdbInfoMaxAndMinInfo struct {
  176. MinDate string `description:"最小日期"`
  177. MaxDate string `description:"最大日期"`
  178. MinValue float64 `description:"最小值"`
  179. MaxValue float64 `description:"最大值"`
  180. LatestValue float64 `description:"最新值"`
  181. LatestDate string `description:"实际数据最新日期"`
  182. }
  183. // GetEdbInfoMaxAndMinInfo 获取指标的最新数据记录信息
  184. func GetEdbInfoMaxAndMinInfo(source int, edbCode string) (item *EdbInfoMaxAndMinInfo, err error) {
  185. o := orm.NewOrm()
  186. sql := ``
  187. tableName := GetEdbDataTableName(source)
  188. 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=? `
  189. sql = fmt.Sprintf(sql, tableName)
  190. err = o.Raw(sql, edbCode).QueryRow(&item)
  191. var latest_value float64
  192. sql = ` SELECT value AS latest_value FROM %s WHERE edb_code=? ORDER BY data_time DESC LIMIT 1 `
  193. sql = fmt.Sprintf(sql, tableName)
  194. err = o.Raw(sql, edbCode).QueryRow(&latest_value)
  195. item.LatestValue = latest_value
  196. return
  197. }
  198. // ModifyEdbInfoMaxAndMinInfo 修改指标的最新数据信息
  199. func ModifyEdbInfoMaxAndMinInfo(edbInfoId int, item *EdbInfoMaxAndMinInfo) (err error) {
  200. o := orm.NewOrm()
  201. 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=? `
  202. _, err = o.Raw(sql, item.MinDate, item.MaxDate, item.MinValue, item.MaxValue, item.MaxDate, item.LatestValue, edbInfoId).Exec()
  203. return
  204. }
  205. // GetEdbDataCount 获取edb指标数据的数量; order:1升序,其余值为降序
  206. func GetEdbDataCount(condition string, pars []interface{}, source int) (count int, err error) {
  207. o := orm.NewOrm()
  208. sql := ``
  209. tableName := GetEdbDataTableName(source)
  210. sql = ` SELECT COUNT(1) AS count FROM %s WHERE 1=1 `
  211. sql = fmt.Sprintf(sql, tableName)
  212. if condition != "" {
  213. sql += condition
  214. }
  215. err = o.Raw(sql, pars).QueryRow(&count)
  216. return
  217. }
  218. // GetLastEdbData 获取最近的一条指标数据
  219. func GetLastEdbData(condition string, pars []interface{}, source int) (item *EdbInfoSearchData, err error) {
  220. o := orm.NewOrm()
  221. sql := ``
  222. tableName := GetEdbDataTableName(source)
  223. sql = ` SELECT * FROM %s WHERE 1=1 `
  224. sql = fmt.Sprintf(sql, tableName)
  225. if condition != "" {
  226. sql += condition
  227. }
  228. sql += ` ORDER BY data_time DESC `
  229. err = o.Raw(sql, pars).QueryRow(&item)
  230. return
  231. }
  232. // GetEdbInfoByEdbCode 根据指标code获取指标信息
  233. func GetEdbInfoByEdbCode(source int, edbCode string) (item *EdbInfo, err error) {
  234. o := orm.NewOrm()
  235. sql := ` SELECT * FROM edb_info WHERE source=? AND edb_code=? `
  236. err = o.Raw(sql, source, edbCode).QueryRow(&item)
  237. return
  238. }
  239. // GetEdbInfoOnlyByEdbCode 仅根据指标code获取指标信息
  240. func GetEdbInfoOnlyByEdbCode(edbCode string) (item *EdbInfo, err error) {
  241. o := orm.NewOrm()
  242. sql := ` SELECT * FROM edb_info WHERE edb_code=? `
  243. err = o.Raw(sql, edbCode).QueryRow(&item)
  244. return
  245. }
  246. // GetEdbInfoCalculateListByCondition 获取指标关系列表
  247. func GetEdbInfoCalculateListByCondition(condition string, pars []interface{}) (items []*EdbInfoCalculateMapping, err error) {
  248. o := orm.NewOrm()
  249. sql := ` SELECT * FROM edb_info_calculate_mapping WHERE 1=1 `
  250. if condition != "" {
  251. sql += condition
  252. }
  253. _, err = o.Raw(sql, pars).QueryRows(&items)
  254. return
  255. }
  256. // GetEdbInfoCalculateCountByCondition 获取关联指标数量
  257. func GetEdbInfoCalculateCountByCondition(condition string, pars []interface{}) (count int, err error) {
  258. o := orm.NewOrm()
  259. sql := ` SELECT COUNT(1) AS count FROM edb_info_calculate_mapping WHERE 1=1 `
  260. if condition != "" {
  261. sql += condition
  262. }
  263. err = o.Raw(sql, pars).QueryRow(&count)
  264. return
  265. }
  266. // 优化版本-处理数据精度问题
  267. type EdbInfoSearchDataV1 struct {
  268. EdbDataId int `description:"数据ID"`
  269. DataTime string `description:"数据日期"`
  270. Value string `description:"数据"`
  271. }
  272. // 优化版本-处理数据精度问题
  273. func GetEdbDataListAllV1(condition string, pars []interface{}, source, order int) (item []*EdbInfoSearchDataV1, err error) {
  274. o := orm.NewOrm()
  275. sql := ``
  276. tableName := GetEdbDataTableName(source)
  277. sql = ` SELECT * FROM %s WHERE 1=1 `
  278. sql = fmt.Sprintf(sql, tableName)
  279. if condition != "" {
  280. sql += condition
  281. }
  282. if order == 1 {
  283. sql += ` ORDER BY data_time ASC `
  284. } else {
  285. sql += ` ORDER BY data_time DESC `
  286. }
  287. _, err = o.Raw(sql, pars).QueryRows(&item)
  288. return
  289. }
  290. // GetEdbDataListAllV1ByTo 通过事务链接获取数据列表
  291. func GetEdbDataListAllV1ByTo(to orm.TxOrmer, condition string, pars []interface{}, source, order int) (item []*EdbInfoSearchDataV1, err error) {
  292. sql := ``
  293. tableName := GetEdbDataTableName(source)
  294. sql = ` SELECT * FROM %s WHERE 1=1 `
  295. sql = fmt.Sprintf(sql, tableName)
  296. if condition != "" {
  297. sql += condition
  298. }
  299. if order == 1 {
  300. sql += ` ORDER BY data_time ASC `
  301. } else {
  302. sql += ` ORDER BY data_time DESC `
  303. }
  304. _, err = to.Raw(sql, pars).QueryRows(&item)
  305. return
  306. }
  307. // GetEdbInfoByCondition 获取指标列表
  308. func GetEdbInfoByCondition(condition string, pars []interface{}, order int) (item []*EdbInfo, err error) {
  309. o := orm.NewOrm()
  310. sql := ` SELECT * FROM edb_info WHERE 1=1 `
  311. if condition != "" {
  312. sql += condition
  313. }
  314. if order == 1 {
  315. sql += ` ORDER BY end_date ASC `
  316. } else {
  317. sql += ` ORDER BY edb_info_id ASC `
  318. }
  319. _, err = o.Raw(sql, pars).QueryRows(&item)
  320. return
  321. }
  322. // UnifiedModifyEdbInfoMaxAndMinInfo 统一修改指标的最大最小值
  323. func UnifiedModifyEdbInfoMaxAndMinInfo(edbInfo *EdbInfo) (err error, errMsg string) {
  324. // 修改最大最小值
  325. maxAndMinItem, err := GetEdbInfoMaxAndMinInfo(edbInfo.Source, edbInfo.EdbCode)
  326. if err != nil {
  327. if err.Error() == utils.ErrNoRow() {
  328. err = nil
  329. return
  330. }
  331. errMsg = "刷新指标失败!"
  332. err = errors.New("获取指标最大最小值失败,err:" + err.Error())
  333. return
  334. }
  335. if maxAndMinItem != nil {
  336. err = ModifyEdbInfoMaxAndMinInfo(edbInfo.EdbInfoId, maxAndMinItem)
  337. if err != nil {
  338. errMsg = "刷新指标失败!"
  339. err = errors.New("修改指标最大最小值失败,err:" + err.Error())
  340. return
  341. }
  342. }
  343. // 修改关联的预测指标
  344. go ModifyPredictEdbInfoMaxAndMinInfoBySourceEdbInfoId(edbInfo.EdbInfoId, maxAndMinItem)
  345. return
  346. }
  347. // UnifiedModifyPredictEdbInfoMaxAndMinInfo 统一修改预测运算指标的最大最小值
  348. func UnifiedModifyPredictEdbInfoMaxAndMinInfo(edbInfo *EdbInfo, latestDateStr string, latestValue float64) (err error, errMsg string) {
  349. // 修改最大最小值
  350. maxAndMinItem, err := GetEdbInfoMaxAndMinInfo(edbInfo.Source, edbInfo.EdbCode)
  351. if err != nil {
  352. if err.Error() == utils.ErrNoRow() {
  353. err = nil
  354. return
  355. }
  356. errMsg = "刷新指标失败!"
  357. err = errors.New("获取指标最大最小值失败,err:" + err.Error())
  358. return
  359. }
  360. if maxAndMinItem != nil {
  361. maxAndMinItem.LatestDate = latestDateStr
  362. maxAndMinItem.LatestValue = latestValue
  363. err = ModifyPredictEdbInfoMaxAndMinInfo(edbInfo.EdbInfoId, maxAndMinItem)
  364. if err != nil {
  365. errMsg = "刷新指标失败!"
  366. err = errors.New("修改指标最大最小值失败,err:" + err.Error())
  367. return
  368. }
  369. }
  370. return
  371. }
  372. // GetChartPredictEdbInfoDataList 获取图表的预测指标的未来数据
  373. func GetChartPredictEdbInfoDataList(predictEdbConf PredictEdbConf, latestDateStr string, lastDataValue float64, endDateStr, frequency string, order int) (predictEdbInfoData []*EdbInfoSearchData, err error) {
  374. endDate, err := time.ParseInLocation(utils.FormatDate, endDateStr, time.Local)
  375. if err != nil {
  376. return
  377. }
  378. latestDate, err := time.ParseInLocation(utils.FormatDate, latestDateStr, time.Local)
  379. if err != nil {
  380. return
  381. }
  382. // 开始预测数据的时间
  383. startDate := latestDate
  384. dataValue := lastDataValue
  385. if predictEdbConf.RuleType == 2 {
  386. dataValue = predictEdbConf.FixedValue
  387. }
  388. //获取后面的预测数据
  389. dayList := getPredictEdbDayList(startDate, endDate, frequency)
  390. predictEdbInfoData = make([]*EdbInfoSearchData, 0)
  391. // order:1升序,其余值为降序
  392. if order == 1 {
  393. for k, v := range dayList {
  394. predictEdbInfoData = append(predictEdbInfoData, &EdbInfoSearchData{
  395. EdbDataId: predictEdbConf.PredictEdbInfoId + 10000000000 + k,
  396. DataTime: v.Format(utils.FormatDate),
  397. Value: dataValue,
  398. })
  399. }
  400. } else {
  401. lenDayList := len(dayList)
  402. if lenDayList > 0 {
  403. for i := lenDayList - 1; i >= 0; i-- {
  404. v := dayList[i]
  405. predictEdbInfoData = append(predictEdbInfoData, &EdbInfoSearchData{
  406. EdbDataId: predictEdbConf.PredictEdbInfoId + 10000000000 + i,
  407. DataTime: v.Format(utils.FormatDate),
  408. Value: dataValue,
  409. })
  410. }
  411. }
  412. }
  413. return
  414. }
  415. // GetChartPredictEdbInfoDataListByConfList 获取图表的预测指标的未来数据
  416. func GetChartPredictEdbInfoDataListByConfList(predictEdbConfList []*PredictEdbConfAndData, filtrateStartDateStr, latestDateStr, endDateStr, frequency string, realPredictEdbInfoData []*EdbInfoSearchData) (predictEdbInfoData []*EdbInfoSearchData, minValue, maxValue float64, err error) {
  417. endDate, err := time.ParseInLocation(utils.FormatDate, endDateStr, time.Local)
  418. if err != nil {
  419. return
  420. }
  421. latestDate, err := time.ParseInLocation(utils.FormatDate, latestDateStr, time.Local)
  422. if err != nil {
  423. return
  424. }
  425. // 开始预测数据的时间
  426. startDate := latestDate
  427. // 如果有筛选时间的话
  428. if filtrateStartDateStr != `` {
  429. filtrateStartDate, tmpErr := time.ParseInLocation(utils.FormatDate, filtrateStartDateStr, time.Local)
  430. if tmpErr != nil {
  431. err = tmpErr
  432. return
  433. }
  434. //如果筛选时间晚于实际数据时间,那么就以筛选时间作为获取预测数据的时间
  435. if filtrateStartDate.After(latestDate) {
  436. startDate = filtrateStartDate.AddDate(0, 0, -1)
  437. }
  438. }
  439. //var dateArr []string
  440. // 对应日期的值
  441. existMap := make(map[string]float64)
  442. for _, v := range realPredictEdbInfoData {
  443. //dateArr = append(dateArr, v.DataTime)
  444. existMap[v.DataTime] = v.Value
  445. }
  446. predictEdbInfoData = make([]*EdbInfoSearchData, 0)
  447. //dataValue := lastDataValue
  448. //预测规则,1:最新,2:固定值,3:同比,4:同差,5:环比,6:环差,7:N期移动均值,8:N期段线性外推值
  449. for _, predictEdbConf := range predictEdbConfList {
  450. dataEndTime := endDate
  451. if predictEdbConf.EndDate.Before(dataEndTime) {
  452. dataEndTime = predictEdbConf.EndDate
  453. }
  454. var tmpMinValue, tmpMaxValue float64 // 当前预测结果中的最大/最小值
  455. dayList := getPredictEdbDayList(startDate, dataEndTime, frequency)
  456. if len(dayList) <= 0 { // 如果未来没有日期的话,那么就退出当前循环,进入下一个循环
  457. continue
  458. }
  459. switch predictEdbConf.RuleType {
  460. case 1: //1:最新
  461. var lastDataValue float64 //最新值
  462. tmpAllData := make([]*EdbInfoSearchData, 0)
  463. tmpAllData = append(tmpAllData, realPredictEdbInfoData...)
  464. tmpAllData = append(tmpAllData, predictEdbInfoData...)
  465. lenTmpAllData := len(tmpAllData)
  466. if lenTmpAllData > 0 {
  467. lastDataValue = tmpAllData[lenTmpAllData-1].Value
  468. }
  469. predictEdbInfoData = GetChartPredictEdbInfoDataListByRule1(predictEdbConf.PredictEdbInfoId, lastDataValue, dayList, predictEdbInfoData, existMap)
  470. tmpMaxValue = lastDataValue
  471. tmpMinValue = lastDataValue
  472. case 2: //2:固定值
  473. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  474. if tmpErr != nil {
  475. err = tmpErr
  476. return
  477. }
  478. dataValue, _ := tmpValDecimal.Float64()
  479. predictEdbInfoData = GetChartPredictEdbInfoDataListByRule1(predictEdbConf.PredictEdbInfoId, dataValue, dayList, predictEdbInfoData, existMap)
  480. tmpMaxValue = dataValue
  481. tmpMinValue = dataValue
  482. case 3: //3:同比
  483. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  484. if tmpErr != nil {
  485. err = tmpErr
  486. return
  487. }
  488. tbValue, _ := tmpValDecimal.Float64()
  489. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleTb(predictEdbConf.PredictEdbInfoId, tbValue, dayList, frequency, realPredictEdbInfoData, predictEdbInfoData, existMap)
  490. case 4: //4:同差
  491. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  492. if tmpErr != nil {
  493. err = tmpErr
  494. return
  495. }
  496. tcValue, _ := tmpValDecimal.Float64()
  497. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleTc(predictEdbConf.PredictEdbInfoId, tcValue, dayList, frequency, realPredictEdbInfoData, predictEdbInfoData, existMap)
  498. case 5: //5:环比
  499. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  500. if tmpErr != nil {
  501. err = tmpErr
  502. return
  503. }
  504. hbValue, _ := tmpValDecimal.Float64()
  505. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleHb(predictEdbConf.PredictEdbInfoId, hbValue, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  506. case 6: //6:环差
  507. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  508. if tmpErr != nil {
  509. err = tmpErr
  510. return
  511. }
  512. hcValue, _ := tmpValDecimal.Float64()
  513. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleHc(predictEdbConf.PredictEdbInfoId, hcValue, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  514. case 7: //7:N期移动均值
  515. nValue, tmpErr := strconv.Atoi(predictEdbConf.Value)
  516. if tmpErr != nil {
  517. err = tmpErr
  518. return
  519. }
  520. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleNMoveMeanValue(predictEdbConf.PredictEdbInfoId, nValue, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  521. case 8: //8:N期段线性外推值
  522. nValue, tmpErr := strconv.Atoi(predictEdbConf.Value)
  523. if tmpErr != nil {
  524. err = tmpErr
  525. return
  526. }
  527. predictEdbInfoData, tmpMinValue, tmpMaxValue, err = GetChartPredictEdbInfoDataListByRuleNLinearRegression(predictEdbConf.PredictEdbInfoId, nValue, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  528. if err != nil {
  529. return
  530. }
  531. case 9: //9:动态环差”预测规则;
  532. hcDataMap := make(map[string]float64) //规则计算的环差值map
  533. if predictEdbConf.PredictEdbInfoId > 0 {
  534. tmpPredictEdbRuleDataList, tmpErr := GetPredictEdbRuleDataItemList(predictEdbConf.PredictEdbInfoId, predictEdbConf.ConfigId, startDate.Format(utils.FormatDate), endDate.Format(utils.FormatDate))
  535. if tmpErr != nil {
  536. err = tmpErr
  537. return
  538. }
  539. for _, v := range tmpPredictEdbRuleDataList {
  540. hcDataMap[v.DataTime] = v.Value
  541. }
  542. } else {
  543. if len(predictEdbConf.DataList) <= 0 {
  544. return
  545. }
  546. for _, v := range predictEdbConf.DataList {
  547. currentDate, tmpErr := time.ParseInLocation(utils.FormatDate, v.DataTime, time.Local)
  548. if tmpErr != nil {
  549. continue
  550. }
  551. // 只处理时间段内的数据
  552. if currentDate.Before(startDate) || currentDate.After(endDate) {
  553. continue
  554. }
  555. hcDataMap[v.DataTime] = v.Value
  556. }
  557. }
  558. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleTrendsHC(predictEdbConf.PredictEdbInfoId, dayList, realPredictEdbInfoData, predictEdbInfoData, hcDataMap, existMap)
  559. case 10: //10:根据 给定终值后插值 规则获取预测数据
  560. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  561. if tmpErr != nil {
  562. err = tmpErr
  563. return
  564. }
  565. finalValue, _ := tmpValDecimal.Float64()
  566. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleFinalValueHc(predictEdbConf.PredictEdbInfoId, finalValue, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  567. case 11: //11:根据 季节性 规则获取预测数据
  568. var seasonConf SeasonConf
  569. tmpErr := json.Unmarshal([]byte(predictEdbConf.Value), &seasonConf)
  570. if tmpErr != nil {
  571. err = errors.New("季节性配置信息异常:" + tmpErr.Error())
  572. return
  573. }
  574. calendar := "公历"
  575. if seasonConf.Calendar == "农历" {
  576. calendar = "农历"
  577. }
  578. yearList := make([]int, 0)
  579. //选择方式,1:连续N年;2:指定年份
  580. if seasonConf.YearType == 1 {
  581. if seasonConf.NValue < 1 {
  582. err = errors.New("连续N年不允许小于1")
  583. return
  584. }
  585. currYear := time.Now().Year()
  586. for i := 0; i < seasonConf.NValue; i++ {
  587. yearList = append(yearList, currYear-i-1)
  588. }
  589. } else {
  590. yearList = seasonConf.YearList
  591. }
  592. predictEdbInfoData, tmpMinValue, tmpMaxValue, err = GetChartPredictEdbInfoDataListByRuleSeason(predictEdbConf.PredictEdbInfoId, yearList, calendar, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  593. if err != nil {
  594. return
  595. }
  596. case 12: //12:根据 移动平均同比 规则获取预测数据
  597. var moveAverageConf MoveAverageConf
  598. tmpErr := json.Unmarshal([]byte(predictEdbConf.Value), &moveAverageConf)
  599. if tmpErr != nil {
  600. err = errors.New("季节性配置信息异常:" + tmpErr.Error())
  601. return
  602. }
  603. predictEdbInfoData, tmpMinValue, tmpMaxValue, err = GetChartPredictEdbInfoDataListByRuleMoveAverageTb(predictEdbConf.PredictEdbInfoId, moveAverageConf.NValue, moveAverageConf.Year, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  604. if err != nil {
  605. return
  606. }
  607. case 13: //13:根据 同比增速差值 规则获取预测数据
  608. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  609. if tmpErr != nil {
  610. err = tmpErr
  611. return
  612. }
  613. tbEndValue, _ := tmpValDecimal.Float64()
  614. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleTbzscz(predictEdbConf.PredictEdbInfoId, tbEndValue, dayList, frequency, realPredictEdbInfoData, predictEdbInfoData, existMap)
  615. case 14: //14:根据 一元线性拟合 规则获取预测数据
  616. var ruleConf RuleLineNhConf
  617. err = json.Unmarshal([]byte(predictEdbConf.Value), &ruleConf)
  618. if err != nil {
  619. err = errors.New("一元线性拟合规则配置信息异常:" + err.Error())
  620. return
  621. }
  622. // 规则计算的拟合残差值map
  623. newNhccDataMap := make(map[string]float64)
  624. if predictEdbConf.PredictEdbInfoId > 0 { //已经生成的动态数据
  625. tmpPredictEdbRuleDataList, tmpErr := GetPredictEdbRuleDataItemList(predictEdbConf.PredictEdbInfoId, predictEdbConf.ConfigId, startDate.Format(utils.FormatDate), endDate.Format(utils.FormatDate))
  626. if tmpErr != nil {
  627. err = tmpErr
  628. return
  629. }
  630. for _, v := range tmpPredictEdbRuleDataList {
  631. newNhccDataMap[v.DataTime] = v.Value
  632. }
  633. } else { //未生成的动态数据,需要使用外部传入的数据进行计算
  634. newNhccDataMap, err, _ = getCalculateNhccData(append(realPredictEdbInfoData, predictEdbInfoData...), ruleConf)
  635. }
  636. predictEdbInfoData, tmpMinValue, tmpMaxValue, err = GetChartPredictEdbInfoDataListByRuleLineNh(predictEdbConf.PredictEdbInfoId, dayList, realPredictEdbInfoData, predictEdbInfoData, newNhccDataMap, existMap)
  637. if err != nil {
  638. return
  639. }
  640. case 15: //15:N年均值:过去N年同期均值。过去N年可以连续或者不连续,指标数据均用线性插值补全为日度数据后计算;
  641. predictEdbInfoData, tmpMinValue, tmpMaxValue, err = GetChartPredictEdbInfoDataListByRuleNAnnualAverage(predictEdbConf.PredictEdbInfoId, predictEdbConf.Value, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  642. if err != nil {
  643. return
  644. }
  645. case 16: //16:年度值倒推
  646. predictEdbInfoData, tmpMinValue, tmpMaxValue, err = GetChartPredictEdbInfoDataListByRuleAnnualValueInversion(predictEdbConf.PredictEdbInfoId, predictEdbConf.Value, dayList, frequency, realPredictEdbInfoData, predictEdbInfoData, existMap)
  647. if err != nil {
  648. return
  649. }
  650. }
  651. // 下一个规则的开始日期
  652. {
  653. lenPredictEdbInfoData := len(predictEdbInfoData)
  654. if lenPredictEdbInfoData > 0 {
  655. tmpDataEndTime, _ := time.ParseInLocation(utils.FormatDate, predictEdbInfoData[lenPredictEdbInfoData-1].DataTime, time.Local)
  656. if startDate.Before(tmpDataEndTime) {
  657. startDate = tmpDataEndTime
  658. }
  659. }
  660. }
  661. if tmpMinValue < minValue {
  662. minValue = tmpMinValue
  663. }
  664. if tmpMaxValue < maxValue {
  665. maxValue = tmpMaxValue
  666. }
  667. }
  668. return
  669. }
  670. // GetPredictEdbDayList 获取预测指标日期列表
  671. // GetPredictEdbDayList 获取预测指标日期列表
  672. func getPredictEdbDayList(startDate, endDate time.Time, frequency string) (dayList []time.Time) {
  673. //if !utils.InArrayByStr([]string{"日度", "周度", "月度"}, frequency)
  674. switch frequency {
  675. case "日度":
  676. for currDate := startDate.AddDate(0, 0, 1); currDate.Before(endDate) || currDate.Equal(endDate); currDate = currDate.AddDate(0, 0, 1) {
  677. //周六、日排除
  678. if currDate.Weekday() == time.Sunday || currDate.Weekday() == time.Saturday {
  679. continue
  680. }
  681. dayList = append(dayList, currDate)
  682. }
  683. case "周度":
  684. //nextDate := startDate.AddDate(0, 0, 7)
  685. for currDate := startDate.AddDate(0, 0, 7); currDate.Before(endDate) || currDate.Equal(endDate); currDate = currDate.AddDate(0, 0, 7) {
  686. dayList = append(dayList, currDate)
  687. }
  688. case "旬度":
  689. for currDate := startDate.AddDate(0, 0, 1); currDate.Before(endDate) || currDate.Equal(endDate); {
  690. nextDate := currDate.AddDate(0, 0, 1)
  691. //每个月的10号、20号、最后一天,那么就写入
  692. if nextDate.Day() == 11 || nextDate.Day() == 21 || nextDate.Day() == 1 {
  693. dayList = append(dayList, currDate)
  694. }
  695. currDate = nextDate
  696. }
  697. case "月度":
  698. for currDate := startDate; currDate.Before(endDate) || currDate.Equal(endDate); {
  699. currDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, time.Now().Location()).AddDate(0, 1, -1)
  700. if !currDate.After(endDate) && !currDate.Equal(startDate) {
  701. dayList = append(dayList, currDate)
  702. }
  703. currDate = currDate.AddDate(0, 0, 1)
  704. }
  705. case "季度":
  706. for currDate := startDate; currDate.Before(endDate) || currDate.Equal(endDate); {
  707. // 每月的最后一天
  708. currDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, time.Now().Location()).AddDate(0, 1, -1)
  709. if !currDate.After(endDate) && !currDate.Equal(startDate) {
  710. // 季度日期就写入,否则不写入
  711. if currDate.Month() == 3 || currDate.Month() == 6 || currDate.Month() == 9 || currDate.Month() == 12 {
  712. dayList = append(dayList, currDate)
  713. }
  714. }
  715. currDate = currDate.AddDate(0, 0, 1)
  716. }
  717. case "半年度":
  718. for currDate := startDate; currDate.Before(endDate) || currDate.Equal(endDate); {
  719. // 每月的最后一天
  720. currDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, time.Now().Location()).AddDate(0, 1, -1)
  721. if !currDate.After(endDate) && !currDate.Equal(startDate) {
  722. // 半年度日期就写入,否则不写入
  723. if currDate.Month() == 6 || currDate.Month() == 12 {
  724. dayList = append(dayList, currDate)
  725. }
  726. }
  727. currDate = currDate.AddDate(0, 0, 1)
  728. }
  729. case "年度":
  730. for currDate := startDate; currDate.Before(endDate) || currDate.Equal(endDate); {
  731. currDate = time.Date(currDate.Year()+1, 12, 31, 0, 0, 0, 0, time.Now().Location())
  732. if !currDate.After(endDate) && !currDate.Equal(startDate) {
  733. dayList = append(dayList, currDate)
  734. }
  735. }
  736. }
  737. return
  738. }
  739. // GetPredictDataListByPredictEdbInfo 根据预测指标信息获取预测指标的数据,order:1升序,其余值为降序
  740. func GetPredictDataListByPredictEdbInfo(edbInfo *EdbInfo, order int, startDate string) (dataList []*EdbInfoSearchData, sourceEdbInfoItem *EdbInfo, err error, errMsg string) {
  741. // 查找该预测指标配置
  742. predictEdbConfList, err := GetPredictEdbConfAndDataListById(edbInfo.EdbInfoId)
  743. if err != nil && err.Error() != utils.ErrNoRow() {
  744. errMsg = "获取预测指标配置信息失败"
  745. return
  746. }
  747. if len(predictEdbConfList) == 0 {
  748. errMsg = "获取预测指标配置信息失败"
  749. err = errors.New(errMsg)
  750. return
  751. }
  752. predictEdbConf := predictEdbConfList[0]
  753. // 来源指标
  754. sourceEdbInfoItem, err = GetEdbInfoById(predictEdbConf.SourceEdbInfoId)
  755. if err != nil {
  756. if err.Error() == utils.ErrNoRow() {
  757. errMsg = "找不到来源指标信息"
  758. err = errors.New(errMsg)
  759. }
  760. return
  761. }
  762. dataList, err, errMsg = GetPredictDataListByPredictEdbConfList(edbInfo, sourceEdbInfoItem, predictEdbConfList, order, startDate)
  763. return
  764. }
  765. // GetPredictDataListByPredictEdbConfList 根据预测指标信息获取预测指标的数据,order:1升序,其余值为降序
  766. func GetPredictDataListByPredictEdbConfList(edbInfo, sourceEdbInfoItem *EdbInfo, predictEdbConfList []*PredictEdbConfAndData, order int, startDate string) (dataList []*EdbInfoSearchData, err error, errMsg string) {
  767. allDataList := make([]*EdbInfoSearchData, 0)
  768. //获取指标数据(实际已生成)
  769. var condition string
  770. var pars []interface{}
  771. condition += " AND edb_info_id=? "
  772. pars = append(pars, sourceEdbInfoItem.EdbInfoId)
  773. if startDate != "" {
  774. condition += " AND data_time>=? "
  775. pars = append(pars, startDate)
  776. }
  777. tmpDataList, err := GetEdbDataListAll(condition, pars, sourceEdbInfoItem.Source, 1)
  778. if err != nil {
  779. return
  780. }
  781. // 如果选择了日期,那么需要筛选所有的数据,用于未来指标的生成
  782. if startDate != `` {
  783. allDataList, err = GetEdbDataListAll(" AND edb_info_id=? ", []interface{}{sourceEdbInfoItem.EdbInfoId}, sourceEdbInfoItem.Source, 1)
  784. if err != nil {
  785. return
  786. }
  787. } else {
  788. allDataList = tmpDataList
  789. }
  790. // 获取预测指标未来的数据
  791. predictDataList := make([]*EdbInfoSearchData, 0)
  792. endDateStr := edbInfo.EndDate //预测指标的结束日期
  793. var predictMinValue, predictMaxValue float64
  794. // 如果有配置的预测规则,那么就进行预测
  795. if len(predictEdbConfList) > 0 {
  796. predictDataList, predictMinValue, predictMaxValue, err = GetChartPredictEdbInfoDataListByConfList(predictEdbConfList, startDate, sourceEdbInfoItem.LatestDate, endDateStr, edbInfo.Frequency, allDataList)
  797. if err != nil {
  798. return
  799. }
  800. }
  801. //order:1升序,其余值为降序
  802. if order == 1 {
  803. dataList = append(tmpDataList, predictDataList...)
  804. } else {
  805. // 先倒序预测数据
  806. lenPredictDataList := len(predictDataList)
  807. if lenPredictDataList > 0 {
  808. for k := range predictDataList {
  809. dataList = append(dataList, predictDataList[lenPredictDataList-k-1])
  810. }
  811. }
  812. // 接着倒序实际指标
  813. lenDataList := len(tmpDataList)
  814. for k := range tmpDataList {
  815. dataList = append(dataList, tmpDataList[lenDataList-k-1])
  816. }
  817. }
  818. if len(predictDataList) > 0 {
  819. // 如果最小值 大于 预测值,那么将预测值作为最小值数据返回
  820. if edbInfo.MinValue > predictMinValue {
  821. edbInfo.MinValue = predictMinValue
  822. }
  823. // 如果最大值 小于 预测值,那么将预测值作为最大值数据返回
  824. if edbInfo.MaxValue < predictMaxValue {
  825. edbInfo.MaxValue = predictMaxValue
  826. }
  827. }
  828. return
  829. }
  830. // GetPredictEdbDataListAll 获取该预测指标所有的数据 ,order:1升序,其余值为降序
  831. func GetPredictEdbDataListAll(edbInfo *EdbInfo, order int) (items []*EdbInfoSearchData, err error) {
  832. if edbInfo.Source == utils.DATA_SOURCE_PREDICT { //普通的预测指标是没有入库数据的,直接往配置里面获取
  833. items, _, err, _ = GetPredictDataListByPredictEdbInfo(edbInfo, 1, "")
  834. } else {
  835. var condition string
  836. var pars []interface{}
  837. condition += " AND edb_info_id=? "
  838. pars = append(pars, edbInfo.EdbInfoId)
  839. items, err = GetEdbDataListAll(condition, pars, edbInfo.Source, order)
  840. }
  841. return
  842. }
  843. // GetPredictEdbDataListAllByStartDate 根据开始日期获取该预测指标所有的数据 ,order:1升序,其余值为降序
  844. func GetPredictEdbDataListAllByStartDate(edbInfo *EdbInfo, order int, startDate string) (items []*EdbInfoSearchData, err error) {
  845. if edbInfo.Source == utils.DATA_SOURCE_PREDICT { //普通的预测指标是没有入库数据的,直接往配置里面获取
  846. items, _, err, _ = GetPredictDataListByPredictEdbInfo(edbInfo, order, startDate)
  847. } else {
  848. var condition string
  849. var pars []interface{}
  850. condition += " AND edb_info_id=? "
  851. pars = append(pars, edbInfo.EdbInfoId)
  852. if startDate != "" {
  853. condition += " AND data_time>=? "
  854. pars = append(pars, startDate)
  855. }
  856. items, err = GetEdbDataListAll(condition, pars, edbInfo.Source, order)
  857. }
  858. return
  859. }
  860. // ModifyPredictEdbInfoMaxAndMinInfo 修改预测指标的最新数据信息
  861. func ModifyPredictEdbInfoMaxAndMinInfo(edbInfoId int, item *EdbInfoMaxAndMinInfo) (err error) {
  862. o := orm.NewOrm()
  863. 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=? `
  864. _, err = o.Raw(sql, item.MinDate, item.MaxDate, item.MinValue, item.MaxValue, item.LatestDate, item.LatestValue, edbInfoId).Exec()
  865. return
  866. }
  867. // ModifyCalculateEdbInfo 修改计算指标信息
  868. func ModifyCalculateEdbInfo(edbName, frequency, unit, calculateFormula string, classifyId, edbInfoId int) (err error) {
  869. o := orm.NewOrm()
  870. sql := ` UPDATE edb_info
  871. SET
  872. edb_name =?,
  873. edb_name_source =?,
  874. frequency = ?,
  875. unit = ?,
  876. classify_id = ?,
  877. calculate_formula=?,
  878. modify_time = NOW()
  879. WHERE edb_info_id = ?`
  880. _, err = o.Raw(sql, edbName, edbName, frequency, unit, classifyId, calculateFormula, edbInfoId).Exec()
  881. return
  882. }
  883. func GetEdbInfoItemByCondition(condition string, pars []interface{}) (item *EdbInfoList, err error) {
  884. o := orm.NewOrm()
  885. sql := ` SELECT * FROM edb_info WHERE 1=1 `
  886. if condition != "" {
  887. sql += condition
  888. }
  889. err = o.Raw(sql, pars).QueryRow(&item)
  890. return
  891. }