edb_info.go 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932
  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. DataDateType string `orm:"column(data_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. // GetChartPredictEdbInfoDataListByConfList 获取图表的预测指标的未来数据
  373. func GetChartPredictEdbInfoDataListByConfList(predictEdbConfList []*PredictEdbConfAndData, filtrateStartDateStr, latestDateStr, endDateStr, frequency, dataDateType string, realPredictEdbInfoData []*EdbInfoSearchData) (predictEdbInfoData []*EdbInfoSearchData, minValue, maxValue float64, 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. // 如果有筛选时间的话
  385. if filtrateStartDateStr != `` {
  386. filtrateStartDate, tmpErr := time.ParseInLocation(utils.FormatDate, filtrateStartDateStr, time.Local)
  387. if tmpErr != nil {
  388. err = tmpErr
  389. return
  390. }
  391. //如果筛选时间晚于实际数据时间,那么就以筛选时间作为获取预测数据的时间
  392. if filtrateStartDate.After(latestDate) {
  393. startDate = filtrateStartDate.AddDate(0, 0, -1)
  394. }
  395. }
  396. //var dateArr []string
  397. // 对应日期的值
  398. existMap := make(map[string]float64)
  399. for _, v := range realPredictEdbInfoData {
  400. //dateArr = append(dateArr, v.DataTime)
  401. existMap[v.DataTime] = v.Value
  402. }
  403. predictEdbInfoData = make([]*EdbInfoSearchData, 0)
  404. //dataValue := lastDataValue
  405. //预测规则,1:最新,2:固定值,3:同比,4:同差,5:环比,6:环差,7:N期移动均值,8:N期段线性外推值
  406. for _, predictEdbConf := range predictEdbConfList {
  407. dataEndTime := endDate
  408. if predictEdbConf.EndDate.Before(dataEndTime) {
  409. dataEndTime = predictEdbConf.EndDate
  410. }
  411. var tmpMinValue, tmpMaxValue float64 // 当前预测结果中的最大/最小值
  412. dayList := getPredictEdbDayList(startDate, dataEndTime, frequency, dataDateType)
  413. if len(dayList) <= 0 { // 如果未来没有日期的话,那么就退出当前循环,进入下一个循环
  414. continue
  415. }
  416. switch predictEdbConf.RuleType {
  417. case 1: //1:最新
  418. var lastDataValue float64 //最新值
  419. tmpAllData := make([]*EdbInfoSearchData, 0)
  420. tmpAllData = append(tmpAllData, realPredictEdbInfoData...)
  421. tmpAllData = append(tmpAllData, predictEdbInfoData...)
  422. lenTmpAllData := len(tmpAllData)
  423. if lenTmpAllData > 0 {
  424. lastDataValue = tmpAllData[lenTmpAllData-1].Value
  425. }
  426. predictEdbInfoData = GetChartPredictEdbInfoDataListByRule1(predictEdbConf.PredictEdbInfoId, lastDataValue, dayList, predictEdbInfoData, existMap)
  427. tmpMaxValue = lastDataValue
  428. tmpMinValue = lastDataValue
  429. case 2: //2:固定值
  430. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  431. if tmpErr != nil {
  432. err = tmpErr
  433. return
  434. }
  435. dataValue, _ := tmpValDecimal.Float64()
  436. predictEdbInfoData = GetChartPredictEdbInfoDataListByRule1(predictEdbConf.PredictEdbInfoId, dataValue, dayList, predictEdbInfoData, existMap)
  437. tmpMaxValue = dataValue
  438. tmpMinValue = dataValue
  439. case 3: //3:同比
  440. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  441. if tmpErr != nil {
  442. err = tmpErr
  443. return
  444. }
  445. tbValue, _ := tmpValDecimal.Float64()
  446. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleTb(predictEdbConf.PredictEdbInfoId, tbValue, dayList, frequency, realPredictEdbInfoData, predictEdbInfoData, existMap)
  447. case 4: //4:同差
  448. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  449. if tmpErr != nil {
  450. err = tmpErr
  451. return
  452. }
  453. tcValue, _ := tmpValDecimal.Float64()
  454. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleTc(predictEdbConf.PredictEdbInfoId, tcValue, dayList, frequency, realPredictEdbInfoData, predictEdbInfoData, existMap)
  455. case 5: //5:环比
  456. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  457. if tmpErr != nil {
  458. err = tmpErr
  459. return
  460. }
  461. hbValue, _ := tmpValDecimal.Float64()
  462. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleHb(predictEdbConf.PredictEdbInfoId, hbValue, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  463. case 6: //6:环差
  464. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  465. if tmpErr != nil {
  466. err = tmpErr
  467. return
  468. }
  469. hcValue, _ := tmpValDecimal.Float64()
  470. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleHc(predictEdbConf.PredictEdbInfoId, hcValue, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  471. case 7: //7:N期移动均值
  472. nValue, tmpErr := strconv.Atoi(predictEdbConf.Value)
  473. if tmpErr != nil {
  474. err = tmpErr
  475. return
  476. }
  477. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleNMoveMeanValue(predictEdbConf.PredictEdbInfoId, nValue, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  478. case 8: //8:N期段线性外推值
  479. nValue, tmpErr := strconv.Atoi(predictEdbConf.Value)
  480. if tmpErr != nil {
  481. err = tmpErr
  482. return
  483. }
  484. predictEdbInfoData, tmpMinValue, tmpMaxValue, err = GetChartPredictEdbInfoDataListByRuleNLinearRegression(predictEdbConf.PredictEdbInfoId, nValue, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  485. if err != nil {
  486. return
  487. }
  488. case 9: //9:动态环差”预测规则;
  489. hcDataMap := make(map[string]float64) //规则计算的环差值map
  490. if predictEdbConf.PredictEdbInfoId > 0 {
  491. tmpPredictEdbRuleDataList, tmpErr := GetPredictEdbRuleDataItemList(predictEdbConf.PredictEdbInfoId, predictEdbConf.ConfigId, startDate.Format(utils.FormatDate), endDate.Format(utils.FormatDate))
  492. if tmpErr != nil {
  493. err = tmpErr
  494. return
  495. }
  496. for _, v := range tmpPredictEdbRuleDataList {
  497. hcDataMap[v.DataTime] = v.Value
  498. }
  499. } else {
  500. if len(predictEdbConf.DataList) <= 0 {
  501. return
  502. }
  503. for _, v := range predictEdbConf.DataList {
  504. currentDate, tmpErr := time.ParseInLocation(utils.FormatDate, v.DataTime, time.Local)
  505. if tmpErr != nil {
  506. continue
  507. }
  508. // 只处理时间段内的数据
  509. if currentDate.Before(startDate) || currentDate.After(endDate) {
  510. continue
  511. }
  512. hcDataMap[v.DataTime] = v.Value
  513. }
  514. }
  515. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleTrendsHC(predictEdbConf.PredictEdbInfoId, dayList, realPredictEdbInfoData, predictEdbInfoData, hcDataMap, existMap)
  516. case 10: //10:根据 给定终值后插值 规则获取预测数据
  517. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  518. if tmpErr != nil {
  519. err = tmpErr
  520. return
  521. }
  522. finalValue, _ := tmpValDecimal.Float64()
  523. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleFinalValueHc(predictEdbConf.PredictEdbInfoId, finalValue, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  524. case 11: //11:根据 季节性 规则获取预测数据
  525. var seasonConf SeasonConf
  526. tmpErr := json.Unmarshal([]byte(predictEdbConf.Value), &seasonConf)
  527. if tmpErr != nil {
  528. err = errors.New("季节性配置信息异常:" + tmpErr.Error())
  529. return
  530. }
  531. calendar := "公历"
  532. if seasonConf.Calendar == "农历" {
  533. calendar = "农历"
  534. }
  535. yearList := make([]int, 0)
  536. //选择方式,1:连续N年;2:指定年份
  537. if seasonConf.YearType == 1 {
  538. if seasonConf.NValue < 1 {
  539. err = errors.New("连续N年不允许小于1")
  540. return
  541. }
  542. currYear := time.Now().Year()
  543. for i := 0; i < seasonConf.NValue; i++ {
  544. yearList = append(yearList, currYear-i-1)
  545. }
  546. } else {
  547. yearList = seasonConf.YearList
  548. }
  549. predictEdbInfoData, tmpMinValue, tmpMaxValue, err = GetChartPredictEdbInfoDataListByRuleSeason(predictEdbConf.PredictEdbInfoId, yearList, calendar, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  550. if err != nil {
  551. return
  552. }
  553. case 12: //12:根据 移动平均同比 规则获取预测数据
  554. var moveAverageConf MoveAverageConf
  555. tmpErr := json.Unmarshal([]byte(predictEdbConf.Value), &moveAverageConf)
  556. if tmpErr != nil {
  557. err = errors.New("季节性配置信息异常:" + tmpErr.Error())
  558. return
  559. }
  560. predictEdbInfoData, tmpMinValue, tmpMaxValue, err = GetChartPredictEdbInfoDataListByRuleMoveAverageTb(predictEdbConf.PredictEdbInfoId, moveAverageConf.NValue, moveAverageConf.Year, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  561. if err != nil {
  562. return
  563. }
  564. case 13: //13:根据 同比增速差值 规则获取预测数据
  565. tmpValDecimal, tmpErr := decimal.NewFromString(predictEdbConf.Value)
  566. if tmpErr != nil {
  567. err = tmpErr
  568. return
  569. }
  570. tbEndValue, _ := tmpValDecimal.Float64()
  571. predictEdbInfoData, tmpMinValue, tmpMaxValue = GetChartPredictEdbInfoDataListByRuleTbzscz(predictEdbConf.PredictEdbInfoId, tbEndValue, dayList, frequency, realPredictEdbInfoData, predictEdbInfoData, existMap)
  572. case 14: //14:根据 一元线性拟合 规则获取预测数据
  573. var ruleConf RuleLineNhConf
  574. err = json.Unmarshal([]byte(predictEdbConf.Value), &ruleConf)
  575. if err != nil {
  576. err = errors.New("一元线性拟合规则配置信息异常:" + err.Error())
  577. return
  578. }
  579. // 规则计算的拟合残差值map
  580. newNhccDataMap := make(map[string]float64)
  581. if predictEdbConf.PredictEdbInfoId > 0 { //已经生成的动态数据
  582. tmpPredictEdbRuleDataList, tmpErr := GetPredictEdbRuleDataItemList(predictEdbConf.PredictEdbInfoId, predictEdbConf.ConfigId, startDate.Format(utils.FormatDate), endDate.Format(utils.FormatDate))
  583. if tmpErr != nil {
  584. err = tmpErr
  585. return
  586. }
  587. for _, v := range tmpPredictEdbRuleDataList {
  588. newNhccDataMap[v.DataTime] = v.Value
  589. }
  590. } else { //未生成的动态数据,需要使用外部传入的数据进行计算
  591. newNhccDataMap, err, _ = getCalculateNhccData(append(realPredictEdbInfoData, predictEdbInfoData...), ruleConf)
  592. }
  593. predictEdbInfoData, tmpMinValue, tmpMaxValue, err = GetChartPredictEdbInfoDataListByRuleLineNh(predictEdbConf.PredictEdbInfoId, dayList, realPredictEdbInfoData, predictEdbInfoData, newNhccDataMap, existMap)
  594. if err != nil {
  595. return
  596. }
  597. case 15: //15:N年均值:过去N年同期均值。过去N年可以连续或者不连续,指标数据均用线性插值补全为日度数据后计算;
  598. predictEdbInfoData, tmpMinValue, tmpMaxValue, err = GetChartPredictEdbInfoDataListByRuleNAnnualAverage(predictEdbConf.PredictEdbInfoId, predictEdbConf.Value, dayList, realPredictEdbInfoData, predictEdbInfoData, existMap)
  599. if err != nil {
  600. return
  601. }
  602. case 16: //16:年度值倒推
  603. predictEdbInfoData, tmpMinValue, tmpMaxValue, err = GetChartPredictEdbInfoDataListByRuleAnnualValueInversion(predictEdbConf.PredictEdbInfoId, predictEdbConf.Value, dayList, frequency, realPredictEdbInfoData, predictEdbInfoData, existMap)
  604. if err != nil {
  605. return
  606. }
  607. }
  608. // 下一个规则的开始日期
  609. {
  610. lenPredictEdbInfoData := len(predictEdbInfoData)
  611. if lenPredictEdbInfoData > 0 {
  612. tmpDataEndTime, _ := time.ParseInLocation(utils.FormatDate, predictEdbInfoData[lenPredictEdbInfoData-1].DataTime, time.Local)
  613. if startDate.Before(tmpDataEndTime) {
  614. startDate = tmpDataEndTime
  615. }
  616. }
  617. }
  618. if tmpMinValue < minValue {
  619. minValue = tmpMinValue
  620. }
  621. if tmpMaxValue < maxValue {
  622. maxValue = tmpMaxValue
  623. }
  624. }
  625. return
  626. }
  627. // GetPredictEdbDayList 获取预测指标日期列表
  628. // GetPredictEdbDayList 获取预测指标日期列表
  629. func getPredictEdbDayList(startDate, endDate time.Time, frequency, dataDateType string) (dayList []time.Time) {
  630. if dataDateType == `` {
  631. dataDateType = `交易日`
  632. }
  633. switch frequency {
  634. case "日度":
  635. for currDate := startDate.AddDate(0, 0, 1); currDate.Before(endDate) || currDate.Equal(endDate); currDate = currDate.AddDate(0, 0, 1) {
  636. // 如果日期类型是交易日的时候,那么需要将周六、日排除
  637. if dataDateType == `交易日` && (currDate.Weekday() == time.Sunday || currDate.Weekday() == time.Saturday) {
  638. continue
  639. }
  640. dayList = append(dayList, currDate)
  641. }
  642. case "周度":
  643. //nextDate := startDate.AddDate(0, 0, 7)
  644. for currDate := startDate.AddDate(0, 0, 7); currDate.Before(endDate) || currDate.Equal(endDate); currDate = currDate.AddDate(0, 0, 7) {
  645. dayList = append(dayList, currDate)
  646. }
  647. case "旬度":
  648. for currDate := startDate.AddDate(0, 0, 1); currDate.Before(endDate) || currDate.Equal(endDate); {
  649. nextDate := currDate.AddDate(0, 0, 1)
  650. //每个月的10号、20号、最后一天,那么就写入
  651. if nextDate.Day() == 11 || nextDate.Day() == 21 || nextDate.Day() == 1 {
  652. dayList = append(dayList, currDate)
  653. }
  654. currDate = nextDate
  655. }
  656. case "月度":
  657. for currDate := startDate; currDate.Before(endDate) || currDate.Equal(endDate); {
  658. currDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, time.Now().Location()).AddDate(0, 1, -1)
  659. if !currDate.After(endDate) && !currDate.Equal(startDate) {
  660. dayList = append(dayList, currDate)
  661. }
  662. currDate = currDate.AddDate(0, 0, 1)
  663. }
  664. case "季度":
  665. for currDate := startDate; currDate.Before(endDate) || currDate.Equal(endDate); {
  666. // 每月的最后一天
  667. currDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, time.Now().Location()).AddDate(0, 1, -1)
  668. if !currDate.After(endDate) && !currDate.Equal(startDate) {
  669. // 季度日期就写入,否则不写入
  670. if currDate.Month() == 3 || currDate.Month() == 6 || currDate.Month() == 9 || currDate.Month() == 12 {
  671. dayList = append(dayList, currDate)
  672. }
  673. }
  674. currDate = currDate.AddDate(0, 0, 1)
  675. }
  676. case "半年度":
  677. for currDate := startDate; currDate.Before(endDate) || currDate.Equal(endDate); {
  678. // 每月的最后一天
  679. currDate = time.Date(currDate.Year(), currDate.Month(), 1, 0, 0, 0, 0, time.Now().Location()).AddDate(0, 1, -1)
  680. if !currDate.After(endDate) && !currDate.Equal(startDate) {
  681. // 半年度日期就写入,否则不写入
  682. if currDate.Month() == 6 || currDate.Month() == 12 {
  683. dayList = append(dayList, currDate)
  684. }
  685. }
  686. currDate = currDate.AddDate(0, 0, 1)
  687. }
  688. case "年度":
  689. for currDate := startDate; currDate.Before(endDate) || currDate.Equal(endDate); {
  690. currDate = time.Date(currDate.Year()+1, 12, 31, 0, 0, 0, 0, time.Now().Location())
  691. if !currDate.After(endDate) && !currDate.Equal(startDate) {
  692. dayList = append(dayList, currDate)
  693. }
  694. }
  695. }
  696. return
  697. }
  698. // GetPredictDataListByPredictEdbInfo 根据预测指标信息获取预测指标的数据,order:1升序,其余值为降序
  699. func GetPredictDataListByPredictEdbInfo(edbInfo *EdbInfo, order int, startDate string) (dataList []*EdbInfoSearchData, sourceEdbInfoItem *EdbInfo, err error, errMsg string) {
  700. // 查找该预测指标配置
  701. predictEdbConfList, err := GetPredictEdbConfAndDataListById(edbInfo.EdbInfoId)
  702. if err != nil && err.Error() != utils.ErrNoRow() {
  703. errMsg = "获取预测指标配置信息失败"
  704. return
  705. }
  706. if len(predictEdbConfList) == 0 {
  707. errMsg = "获取预测指标配置信息失败"
  708. err = errors.New(errMsg)
  709. return
  710. }
  711. predictEdbConf := predictEdbConfList[0]
  712. // 来源指标
  713. sourceEdbInfoItem, err = GetEdbInfoById(predictEdbConf.SourceEdbInfoId)
  714. if err != nil {
  715. if err.Error() == utils.ErrNoRow() {
  716. errMsg = "找不到来源指标信息"
  717. err = errors.New(errMsg)
  718. }
  719. return
  720. }
  721. dataList, err, errMsg = GetPredictDataListByPredictEdbConfList(edbInfo, sourceEdbInfoItem, predictEdbConfList, order, startDate)
  722. return
  723. }
  724. // GetPredictDataListByPredictEdbConfList 根据预测指标信息获取预测指标的数据,order:1升序,其余值为降序
  725. func GetPredictDataListByPredictEdbConfList(edbInfo, sourceEdbInfoItem *EdbInfo, predictEdbConfList []*PredictEdbConfAndData, order int, startDate string) (dataList []*EdbInfoSearchData, err error, errMsg string) {
  726. allDataList := make([]*EdbInfoSearchData, 0)
  727. //获取指标数据(实际已生成)
  728. var condition string
  729. var pars []interface{}
  730. condition += " AND edb_info_id=? "
  731. pars = append(pars, sourceEdbInfoItem.EdbInfoId)
  732. if startDate != "" {
  733. condition += " AND data_time>=? "
  734. pars = append(pars, startDate)
  735. }
  736. tmpDataList, err := GetEdbDataListAll(condition, pars, sourceEdbInfoItem.Source, 1)
  737. if err != nil {
  738. return
  739. }
  740. // 如果选择了日期,那么需要筛选所有的数据,用于未来指标的生成
  741. if startDate != `` {
  742. allDataList, err = GetEdbDataListAll(" AND edb_info_id=? ", []interface{}{sourceEdbInfoItem.EdbInfoId}, sourceEdbInfoItem.Source, 1)
  743. if err != nil {
  744. return
  745. }
  746. } else {
  747. allDataList = tmpDataList
  748. }
  749. // 获取预测指标未来的数据
  750. predictDataList := make([]*EdbInfoSearchData, 0)
  751. endDateStr := edbInfo.EndDate //预测指标的结束日期
  752. var predictMinValue, predictMaxValue float64
  753. // 如果有配置的预测规则,那么就进行预测
  754. if len(predictEdbConfList) > 0 {
  755. predictDataList, predictMinValue, predictMaxValue, err = GetChartPredictEdbInfoDataListByConfList(predictEdbConfList, startDate, sourceEdbInfoItem.LatestDate, endDateStr, edbInfo.Frequency, edbInfo.DataDateType, allDataList)
  756. if err != nil {
  757. return
  758. }
  759. }
  760. //order:1升序,其余值为降序
  761. if order == 1 {
  762. dataList = append(tmpDataList, predictDataList...)
  763. } else {
  764. // 先倒序预测数据
  765. lenPredictDataList := len(predictDataList)
  766. if lenPredictDataList > 0 {
  767. for k := range predictDataList {
  768. dataList = append(dataList, predictDataList[lenPredictDataList-k-1])
  769. }
  770. }
  771. // 接着倒序实际指标
  772. lenDataList := len(tmpDataList)
  773. for k := range tmpDataList {
  774. dataList = append(dataList, tmpDataList[lenDataList-k-1])
  775. }
  776. }
  777. if len(predictDataList) > 0 {
  778. // 如果最小值 大于 预测值,那么将预测值作为最小值数据返回
  779. if edbInfo.MinValue > predictMinValue {
  780. edbInfo.MinValue = predictMinValue
  781. }
  782. // 如果最大值 小于 预测值,那么将预测值作为最大值数据返回
  783. if edbInfo.MaxValue < predictMaxValue {
  784. edbInfo.MaxValue = predictMaxValue
  785. }
  786. }
  787. return
  788. }
  789. // GetPredictEdbDataListAll 获取该预测指标所有的数据 ,order:1升序,其余值为降序
  790. func GetPredictEdbDataListAll(edbInfo *EdbInfo, order int) (items []*EdbInfoSearchData, err error) {
  791. if edbInfo.Source == utils.DATA_SOURCE_PREDICT { //普通的预测指标是没有入库数据的,直接往配置里面获取
  792. items, _, err, _ = GetPredictDataListByPredictEdbInfo(edbInfo, 1, "")
  793. } else {
  794. var condition string
  795. var pars []interface{}
  796. condition += " AND edb_info_id=? "
  797. pars = append(pars, edbInfo.EdbInfoId)
  798. items, err = GetEdbDataListAll(condition, pars, edbInfo.Source, order)
  799. }
  800. return
  801. }
  802. // GetPredictEdbDataListAllByStartDate 根据开始日期获取该预测指标所有的数据 ,order:1升序,其余值为降序
  803. func GetPredictEdbDataListAllByStartDate(edbInfo *EdbInfo, order int, startDate string) (items []*EdbInfoSearchData, err error) {
  804. if edbInfo.Source == utils.DATA_SOURCE_PREDICT { //普通的预测指标是没有入库数据的,直接往配置里面获取
  805. items, _, err, _ = GetPredictDataListByPredictEdbInfo(edbInfo, order, startDate)
  806. } else {
  807. var condition string
  808. var pars []interface{}
  809. condition += " AND edb_info_id=? "
  810. pars = append(pars, edbInfo.EdbInfoId)
  811. if startDate != "" {
  812. condition += " AND data_time>=? "
  813. pars = append(pars, startDate)
  814. }
  815. items, err = GetEdbDataListAll(condition, pars, edbInfo.Source, order)
  816. }
  817. return
  818. }
  819. // ModifyPredictEdbInfoMaxAndMinInfo 修改预测指标的最新数据信息
  820. func ModifyPredictEdbInfoMaxAndMinInfo(edbInfoId int, item *EdbInfoMaxAndMinInfo) (err error) {
  821. o := orm.NewOrm()
  822. 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=? `
  823. _, err = o.Raw(sql, item.MinDate, item.MaxDate, item.MinValue, item.MaxValue, item.LatestDate, item.LatestValue, edbInfoId).Exec()
  824. return
  825. }
  826. // ModifyCalculateEdbInfo 修改计算指标信息
  827. func ModifyCalculateEdbInfo(edbName, frequency, unit, calculateFormula string, classifyId, edbInfoId int) (err error) {
  828. o := orm.NewOrm()
  829. sql := ` UPDATE edb_info
  830. SET
  831. edb_name =?,
  832. edb_name_source =?,
  833. frequency = ?,
  834. unit = ?,
  835. classify_id = ?,
  836. calculate_formula=?,
  837. modify_time = NOW()
  838. WHERE edb_info_id = ?`
  839. _, err = o.Raw(sql, edbName, edbName, frequency, unit, classifyId, calculateFormula, edbInfoId).Exec()
  840. return
  841. }
  842. func GetEdbInfoItemByCondition(condition string, pars []interface{}) (item *EdbInfoList, err error) {
  843. o := orm.NewOrm()
  844. sql := ` SELECT * FROM edb_info WHERE 1=1 `
  845. if condition != "" {
  846. sql += condition
  847. }
  848. err = o.Raw(sql, pars).QueryRow(&item)
  849. return
  850. }