edb_info_calculate_bp.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. package data_manage
  2. import (
  3. "fmt"
  4. "github.com/shopspring/decimal"
  5. "hongze/hongze_task/utils"
  6. "rdluck_tools/orm"
  7. "strconv"
  8. "strings"
  9. "time"
  10. )
  11. type EdbInfoCalculateBp struct {
  12. EdbInfoCalculateBpId int `orm:"column(edb_info_calculate_bp_id);pk"`
  13. EdbInfoId int `description:"指标id"`
  14. EdbCode string `description:"指标编码"`
  15. FromEdbInfoId int `description:"计算指标id"`
  16. FromEdbCode string `description:"计算指标编码"`
  17. FromEdbName string `description:"计算指标名称"`
  18. FromSource int `description:"计算指标来源"`
  19. FromSourceName string `description:"计算指标来源名称"`
  20. FromTag string `description:"来源指标标签"`
  21. Sort int `description:"计算指标名称排序"`
  22. CreateTime time.Time `description:"创建时间"`
  23. ModifyTime time.Time `description:"修改时间"`
  24. }
  25. //变频
  26. func RefreshCalculateBp(edbInfoId int, fromEdbInfo *EdbInfo, edbCode string) (err error) {
  27. o := orm.NewOrm()
  28. o.Using("data")
  29. o.Begin()
  30. defer func() {
  31. if err != nil {
  32. o.Rollback()
  33. } else {
  34. o.Commit()
  35. }
  36. }()
  37. if err != nil {
  38. return
  39. }
  40. edbInfoIdStr := strconv.Itoa(edbInfoId)
  41. //计算数据
  42. var condition string
  43. var pars []interface{}
  44. condition += " AND edb_info_id=? "
  45. pars = append(pars, fromEdbInfo.EdbInfoId)
  46. //if startDate != "" {
  47. // condition += " AND data_time>=? "
  48. // pars = append(pars, startDate)
  49. //}
  50. //
  51. //if endDate != "" {
  52. // condition += " AND data_time<=? "
  53. // pars = append(pars, endDate)
  54. //}
  55. dataList, err := GetEdbDataListAll(condition, pars, fromEdbInfo.Source, 0)
  56. if err != nil {
  57. return err
  58. }
  59. var existCondition string
  60. var existPars []interface{}
  61. existCondition += " AND edb_info_id=? "
  62. existPars = append(existPars, edbInfoId)
  63. dataExistList, err := GetEdbDataListAll(existCondition, existPars, utils.DATA_SOURCE_CALCULATE_BP, 0)
  64. if err != nil {
  65. return err
  66. }
  67. existDataMap := make(map[string]*EdbInfoSearchData)
  68. for _, v := range dataExistList {
  69. existDataMap[v.DataTime] = v
  70. }
  71. addExistMap := make(map[string]string)
  72. dataLen := len(dataList)
  73. addSql := ` INSERT INTO edb_data_calculate_bp(edb_info_id,edb_code,data_time,value,create_time,modify_time,status,data_timestamp) values `
  74. var isAdd bool
  75. for i := 0; i < dataLen; i++ {
  76. //当期
  77. currentItem := dataList[i]
  78. currentDate, _ := time.Parse(utils.FormatDate, currentItem.DataTime)
  79. var day int
  80. if i == 0 {
  81. day = int(time.Now().Sub(currentDate).Hours() / float64(24))
  82. } else {
  83. j := i + 1
  84. if j < dataLen {
  85. preItem := dataList[j]
  86. preDate, _ := time.Parse(utils.FormatDate, preItem.DataTime)
  87. day = int(currentDate.Sub(preDate).Hours() / float64(24))
  88. }
  89. }
  90. for k := 1; k <= day; k++ {
  91. needDayForm := currentDate.AddDate(0, 0, k)
  92. if needDayForm.Before(time.Now()) {
  93. needDay := needDayForm.Format(utils.FormatDate)
  94. if _, ok := existDataMap[needDay]; !ok {
  95. existKey := edbCode + needDay
  96. if _, ok := addExistMap[existKey]; !ok {
  97. currentDate, _ := time.Parse(utils.FormatDate, currentItem.DataTime)
  98. timestamp := currentDate.UnixNano() / 1e6
  99. timestampStr := fmt.Sprintf("%d", timestamp)
  100. valStr := decimal.NewFromFloat(currentItem.Value).String()
  101. isAdd = true
  102. addSql += GetAddSql(edbInfoIdStr, edbCode, needDay, timestampStr, valStr)
  103. }
  104. addExistMap[existKey] = needDay
  105. }
  106. }
  107. }
  108. if _, ok := existDataMap[currentItem.DataTime]; !ok {
  109. existKey := edbCode + currentItem.DataTime
  110. if _, ok := addExistMap[existKey]; !ok {
  111. currentDate, _ := time.Parse(utils.FormatDate, currentItem.DataTime)
  112. timestamp := currentDate.UnixNano() / 1e6
  113. timestampStr := fmt.Sprintf("%d", timestamp)
  114. valStr := decimal.NewFromFloat(currentItem.Value).String()
  115. isAdd = true
  116. addSql += GetAddSql(edbInfoIdStr, edbCode, currentItem.DataTime, timestampStr, valStr)
  117. }
  118. addExistMap[existKey] = currentItem.DataTime
  119. }
  120. }
  121. if isAdd {
  122. addSql = strings.TrimRight(addSql, ",")
  123. _, err = o.Raw(addSql).Exec()
  124. if err != nil {
  125. fmt.Println("add err:" + err.Error())
  126. return err
  127. }
  128. }
  129. return
  130. }
  131. type EdbInfoCalculateBpDetail struct {
  132. EdbInfoCalculateBpId int `orm:"column(edb_info_calculate_bp_id);pk"`
  133. EdbInfoId int `description:"指标id"`
  134. EdbCode string `description:"指标编码"`
  135. FromEdbInfoId int `description:"计算指标id"`
  136. FromEdbCode string `description:"计算指标编码"`
  137. FromEdbName string `description:"计算指标名称"`
  138. FromSource int `description:"计算指标来源"`
  139. FromSourceName string `description:"计算指标来源名称"`
  140. FromTag string `description:"来源指标标签"`
  141. Sort int `description:"计算指标名称排序"`
  142. CreateTime time.Time `description:"创建时间"`
  143. ModifyTime time.Time `description:"修改时间"`
  144. StartDate string `description:"开始日期"`
  145. EndDate string `description:"结束日期"`
  146. }
  147. func GetEdbInfoCalculateBpDetail(edbInfoId int) (item *EdbInfoCalculateTbzDetail, err error) {
  148. o := orm.NewOrm()
  149. o.Using("data")
  150. sql := ` SELECT a.*,b.start_date,b.end_date FROM edb_info_calculate_mapping AS a
  151. INNER JOIN edb_info AS b ON a.edb_info_id=b.edb_info_id
  152. WHERE a.edb_info_id=? `
  153. err = o.Raw(sql, edbInfoId).QueryRow(&item)
  154. return
  155. }