edb_info_calculate_ljzzy.go 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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 EdbInfoCalculateLjzzy struct {
  12. EdbInfoCalculateLjzzyId int `orm:"column(edb_info_calculate_ljzzy_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 RefreshCalculateLjzzy(edbInfoId int, fromEdbInfo *EdbInfo, edbCode, startDate, endDate 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. if endDate != "" {
  51. condition += " AND data_time<=? "
  52. pars = append(pars, endDate)
  53. }
  54. dataList, err := GetEdbDataListAll(condition, pars, fromEdbInfo.Source, 1)
  55. if err != nil {
  56. return err
  57. }
  58. yearMap := make(map[int]map[int]*EdbInfoSearchData)
  59. dataLen := len(dataList)
  60. for i := 0; i < dataLen; i++ {
  61. item := dataList[i]
  62. //日其中获取年
  63. itemDate, err := time.Parse(utils.FormatDate, item.DataTime)
  64. if err != nil {
  65. return err
  66. }
  67. year := itemDate.Year()
  68. month := int(itemDate.Month())
  69. if monthMap, yok := yearMap[year]; yok {
  70. monthMap[month] = item
  71. yearMap[year] = monthMap
  72. } else {
  73. monthMap = make(map[int]*EdbInfoSearchData)
  74. monthMap[month] = item
  75. yearMap[year] = monthMap
  76. }
  77. }
  78. addSql := ` INSERT INTO edb_data_calculate_ljzzy(edb_info_id,edb_code,data_time,value,create_time,modify_time,status,data_timestamp) values `
  79. nowStr := time.Now().Format(utils.FormatDateTime)
  80. var isAdd bool
  81. for yk, yv := range yearMap {
  82. if _, mok := yv[2]; !mok {
  83. //fmt.Println(yk, yv, "continue")
  84. continue
  85. }
  86. for i := 1; i <= 12; i++ {
  87. fmt.Println(yk, i, yv[i])
  88. dataCurrentItem := yv[i]
  89. var date string
  90. var val float64
  91. if i == 1 || i == 2 {
  92. dataTwoItem := yv[2]
  93. if dataCurrentItem != nil && dataTwoItem != nil {
  94. date = dataCurrentItem.DataTime
  95. //val = dataTwoItem.Value
  96. a := decimal.NewFromFloat(dataTwoItem.Value)
  97. b := decimal.NewFromFloat(2.0)
  98. val, _ = a.Div(b).Float64()
  99. }
  100. } else {
  101. dataPreItem := yv[i-1]
  102. if dataCurrentItem != nil && dataPreItem != nil {
  103. date = dataCurrentItem.DataTime
  104. //val, _ = decimal.NewFromFloat(dataCurrentItem.Value).Sub(decimal.NewFromFloat(dataPreItem.Value)).Float64()
  105. a := decimal.NewFromFloat(dataCurrentItem.Value)
  106. b := decimal.NewFromFloat(dataPreItem.Value)
  107. val, _ = a.Sub(b).Float64()
  108. }
  109. }
  110. if date != "" {
  111. //判断数据是否存在
  112. count, err := GetEdbDataCalculateLjzzyByCodeAndDate(edbCode, date)
  113. if err != nil && err.Error() != utils.ErrNoRow() {
  114. return err
  115. }
  116. if count <= 0 {
  117. dataTime, _ := time.Parse(utils.FormatDate, date)
  118. timestamp := dataTime.UnixNano() / 1e6
  119. timeStr := fmt.Sprintf("%d", timestamp)
  120. addSql += "("
  121. addSql += edbInfoIdStr + "," + "'" + edbCode + "'" + "," + "'" + date + "'" + "," + utils.SubFloatToString(val, 4) + "," + "'" + nowStr + "'" +
  122. "," + "'" + nowStr + "'" + "," + "1"
  123. addSql += "," + "'" + timeStr + "'"
  124. addSql += "),"
  125. isAdd = true
  126. } else {
  127. val = utils.FixFloat(val, 4)
  128. err = ModifyEdbDataCalculateLjzzy(int64(edbInfoId), date, val)
  129. if err != nil {
  130. return err
  131. }
  132. }
  133. }
  134. }
  135. }
  136. if isAdd {
  137. addSql = strings.TrimRight(addSql, ",")
  138. _, err = o.Raw(addSql).Exec()
  139. if err != nil {
  140. return err
  141. }
  142. }
  143. return
  144. }
  145. type EdbInfoCalculateLjzzyDetail struct {
  146. EdbInfoCalculateLjzzyId int `orm:"column(edb_info_calculate_ljzzy_id);pk"`
  147. EdbInfoId int `description:"指标id"`
  148. EdbCode string `description:"指标编码"`
  149. FromEdbInfoId int `description:"计算指标id"`
  150. FromEdbCode string `description:"计算指标编码"`
  151. FromEdbName string `description:"计算指标名称"`
  152. FromSource int `description:"计算指标来源"`
  153. FromSourceName string `description:"计算指标来源名称"`
  154. FromTag string `description:"来源指标标签"`
  155. Sort int `description:"计算指标名称排序"`
  156. CreateTime time.Time `description:"创建时间"`
  157. ModifyTime time.Time `description:"修改时间"`
  158. StartDate string `description:"开始日期"`
  159. EndDate string `description:"结束日期"`
  160. }
  161. func GetEdbInfoCalculateLjzzyDetail(edbInfoId int) (item *EdbInfoCalculateLjzzyDetail, err error) {
  162. o := orm.NewOrm()
  163. o.Using("data")
  164. sql := ` SELECT a.*,b.start_date,b.end_date FROM edb_info_calculate_ljzzy AS a
  165. INNER JOIN edb_info AS b ON a.from_edb_info_id=b.edb_info_id
  166. WHERE a.edb_info_id=? `
  167. err = o.Raw(sql, edbInfoId).QueryRow(&item)
  168. return
  169. }
  170. func GetEdbDataCalculateLjzzyByCodeAndDate(edbCode string, startDate string) (count int, err error) {
  171. o := orm.NewOrm()
  172. o.Using("data")
  173. sql := ` SELECT COUNT(1) AS count FROM edb_data_calculate_ljzzy WHERE edb_code=? AND data_time=? `
  174. err = o.Raw(sql, edbCode, startDate).QueryRow(&count)
  175. return
  176. }
  177. func ModifyEdbDataCalculateLjzzy(edbInfoId int64, dataTime string, value float64) (err error) {
  178. o := orm.NewOrm()
  179. o.Using("data")
  180. sql := ` UPDATE edb_data_calculate_ljzzy SET value=?,modify_time=NOW() WHERE edb_info_id=? AND data_time=? `
  181. _, err = o.Raw(sql, value, edbInfoId, dataTime).Exec()
  182. return
  183. }